绑定bug修复
This commit is contained in:
parent
64fa253bcf
commit
31c8917d86
|
|
@ -190,7 +190,11 @@
|
|||
<el-table-column align="center" label="绑定人员" prop="createBy" />
|
||||
<el-table-column align="center" label="绑定时间" prop="createTime" />
|
||||
<el-table-column align="center" label="出厂编号" prop="outFacCode" />
|
||||
<el-table-column align="center" label="出厂时间" prop="productDate" />
|
||||
<el-table-column
|
||||
align="center"
|
||||
label="出厂时间"
|
||||
prop="productionTime"
|
||||
/>
|
||||
</el-table>
|
||||
</el-dialog>
|
||||
|
||||
|
|
@ -262,7 +266,7 @@
|
|||
<el-input
|
||||
clearable
|
||||
v-model="row.outFacCode"
|
||||
placeholder="请填写出厂编码"
|
||||
placeholder="请填写出厂编号"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
|
@ -472,6 +476,7 @@ export default {
|
|||
productDate: "",
|
||||
taskStatus: 3,
|
||||
},
|
||||
taskId: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
rowData: {},
|
||||
|
|
@ -499,6 +504,7 @@ export default {
|
|||
this.handleCodeBinding = this.debounce(this.handleCodeBinding, 1000);
|
||||
},
|
||||
mounted() {
|
||||
this.taskId = this.queryTaskId;
|
||||
this.getCodeList();
|
||||
},
|
||||
methods: {
|
||||
|
|
@ -780,6 +786,8 @@ export default {
|
|||
}
|
||||
this.getCodeList();
|
||||
this.bindCodeVisible = false;
|
||||
this.resetForm("queryFormBindRef");
|
||||
this.codeTableList = [];
|
||||
console.log(res, "编码结果--");
|
||||
},
|
||||
// 移除
|
||||
|
|
|
|||
Loading…
Reference in New Issue