overseamom-485 fix 提交检查修复

(cherry picked from commit 48bbc77166e114631f5bc0efab4348d7644b2621)
master
魏子尧 2 years ago committed by 马宝燕
parent 5ca477e9d7
commit 6346efc20a

@ -84,8 +84,7 @@
<uni-td align="center"> <uni-td align="center">
<view class="td_select"> <view class="td_select">
<!-- 地址可选 --> <!-- 地址可选 -->
<view @click="selectClick(index)" <view @click="selectClick(index)">{{item.wkposCode}}
>{{ item.wkposCode }}
<!-- {{ <!-- {{
loclist.find((item) => {return item.label == loc}) ? loc : '0011' loclist.find((item) => {return item.label == loc}) ? loc : '0011'
}} --> }} -->
@ -349,7 +348,8 @@ export default class pickingDom extends BasePage {
// this.onAggregate(); // this.onAggregate();
}, 2000); }, 2000);
} }
this.$refs.table.clearSelection(); // @ts-ignore
this.$refs.table.clearSelection()
} }
/** /**
@ -369,15 +369,16 @@ export default class pickingDom extends BasePage {
model.sapFactoryCode = this.form.sapFactoryCode as any; model.sapFactoryCode = this.form.sapFactoryCode as any;
model.formParams = this.formParams; model.formParams = this.formParams;
}); });
this.$refs.table.clearSelection(); //@ts-ignore
this.$refs.table.clearSelection()
} }
/** /**
* table多选 * table多选
*/ */
selectionChange(e) { selectionChange(e) {
console.log(e); // console.log(e)
console.log(e.detail.index); // console.log(e.detail.index);
this.selectIndex = e.detail.index; this.selectIndex = e.detail.index;
this.arrList = []; // this.arrList = []; //
//this.selectedIndexs = []; // //this.selectedIndexs = []; //
@ -422,7 +423,7 @@ export default class pickingDom extends BasePage {
*/ */
locConfirm(e) { locConfirm(e) {
this.loc = e[0].label; this.loc = e[0].label;
this.model.proOrderList[this.indexChoose].wkposCode = e[0].label; this.model.proOrderList[this.indexChoose].wkposCode = e[0].label
} }
} }
</script> </script>
@ -491,15 +492,15 @@ export default class pickingDom extends BasePage {
padding: 20rpx; padding: 20rpx;
} }
} }
.tr { .tr{
height: 10px; height: 10px;
} }
.td_input { .td_input{
border: 1px solid rgb(228, 225, 225); border: 1px solid rgb(228, 225, 225);
border-radius: 2px; border-radius: 2px;
padding-left: 2px; padding-left: 2px;
} }
.td_select { .td_select{
border: 1px solid rgb(228, 225, 225); border: 1px solid rgb(228, 225, 225);
height: 30px; height: 30px;
} }

Loading…
Cancel
Save