1/13 页面优化1.1

20240912_adapter
wangwei 3 months ago
parent 18d29d21fb
commit 2392d56510

@ -219,6 +219,7 @@
</div>
</el-row>
<newCreateCodeDetail
ref="newCreateCodeDetail"
:idQuery="orderFormData"
:curAction="curAction"
:refreshPanel="refreshCodesPanel"
@ -711,6 +712,7 @@ export default {
this.redMesg = this.redMesgOld
this.orderStatus = false
this.scanReCount = 0
this.$refs.newCreateCodeDetail.codeCount = 0
this.refreshCodesPanel()
},
//

@ -18,7 +18,7 @@
</el-col>
<el-col :span="8" style="border: 1px solid #e3dfe1; margin-left: 20px; padding: 15px;height: 700px;">
<h2 style="font-weight: bold;">扫码明细({{codeArray.length}})</h2>
<h2 style="font-weight: bold;">扫码明细({{codeCount}})</h2>
<!--<el-divider></el-divider>-->
<div style=" border-top: 1px solid #ccc;">
<el-table v-loading="loading" :data="codeArray" style="width: 100%;margin-top: 20px" max-height="350"
@ -84,7 +84,8 @@ export default {
dialogTableVisible: false,
editCodeVisible: false,
orderDetail:null,
codeArray:[]
codeArray:[],
codeCount: 0,
}
},
@ -170,6 +171,7 @@ export default {
errorCodeList(this.query) //
.then((response) => {
this.codeArray = response.data.list || [];
this.codeCount = this.codeArray.length
this.loading = false;
})
.catch(() => {

Loading…
Cancel
Save