|
|
|
@ -84,8 +84,7 @@
|
|
|
|
|
<uni-td align="center">
|
|
|
|
|
<view class="td_select">
|
|
|
|
|
<!-- 地址可选 -->
|
|
|
|
|
<view @click="selectClick(index)"
|
|
|
|
|
>{{ item.wkposCode }}
|
|
|
|
|
<view @click="selectClick(index)">{{item.wkposCode}}
|
|
|
|
|
<!-- {{
|
|
|
|
|
loclist.find((item) => {return item.label == loc}) ? loc : '0011'
|
|
|
|
|
}} -->
|
|
|
|
@ -349,7 +348,8 @@ export default class pickingDom extends BasePage {
|
|
|
|
|
// this.onAggregate();
|
|
|
|
|
}, 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.formParams = this.formParams;
|
|
|
|
|
});
|
|
|
|
|
this.$refs.table.clearSelection();
|
|
|
|
|
//@ts-ignore
|
|
|
|
|
this.$refs.table.clearSelection()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* table多选
|
|
|
|
|
*/
|
|
|
|
|
selectionChange(e) {
|
|
|
|
|
console.log(e);
|
|
|
|
|
console.log(e.detail.index);
|
|
|
|
|
// console.log(e)
|
|
|
|
|
// console.log(e.detail.index);
|
|
|
|
|
this.selectIndex = e.detail.index;
|
|
|
|
|
this.arrList = []; // 选择的行数据
|
|
|
|
|
//this.selectedIndexs = []; // 选择的下标数组
|
|
|
|
@ -422,7 +423,7 @@ export default class pickingDom extends BasePage {
|
|
|
|
|
*/
|
|
|
|
|
locConfirm(e) {
|
|
|
|
|
this.loc = e[0].label;
|
|
|
|
|
this.model.proOrderList[this.indexChoose].wkposCode = e[0].label;
|
|
|
|
|
this.model.proOrderList[this.indexChoose].wkposCode = e[0].label
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|