Browse Source

修复已知bug

dev-xx
马远东 5 months ago
parent
commit
c3f5fcd269
  1. 15
      src/views/Pricesystem/ListOfPriceSystems.vue
  2. 8
      src/views/distribution/inventory/distributionStockArticleDetails.vue

15
src/views/Pricesystem/ListOfPriceSystems.vue

@ -94,10 +94,10 @@
label-width="100px"
v-model="details.popUpShow.basicVisted"
title="基础配置"
width="40%"
width="60%"
:before-close="handleClose"
>
<el-form inline :model="details.form" ref="basicForm" label-width="120px">
<el-form inline :model="details.form" ref="basicForm" label-width="120px" class="el_from_basicVisted">
<el-form-item label="客户名称" prop="clientName">
<el-input placeholder="客户名称" v-model="details.form.clientName" disabled />
</el-form-item>
@ -774,8 +774,17 @@ const handleSubmitBasic = () => {
}
//
.el-dialog-basicVisted .el-form-item {
.el_from_basicVisted{
.el-form-item{
width: 40%;
:deep( .el-date-editor){
width: 100% !important;
}
:deep(.el-select){
width: 100% !important;
}
}
}
:deep(.el-date-editor) {

8
src/views/distribution/inventory/distributionStockArticleDetails.vue

@ -522,8 +522,12 @@ export default {
this.page.currentPage = 1;
this.pageId = this.$route.query.id;
this.onLoad(this.page);
this.onLoadOwn(this.page);
this.package();
console.log(this.$route.query,'this.$route.query');
if(this.$route.query.isZero ==1){
this.onLoadOwn(this.page);
}else{
this.package();
}
}
},
deep: true,

Loading…
Cancel
Save