feat: 阿里采购送货单的业务对接

dev_unify
chenhc 4 months ago
parent 69694c79b0
commit d812e8e39f

@ -82,7 +82,7 @@
>
<el-table-column label width="45">
<template slot-scope="scope">
<el-radio :label="scope.row.billCode" v-model="radioCheck"><span></span></el-radio>
<el-radio :label="scope.row.billCode" v-model="radioCheck" :disabled="scope.row.checkBillNO" ><span></span></el-radio>
</template>
</el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
@ -273,9 +273,13 @@ export default {
this.codeDetailVisible = true
},
handleChange(currentRow) {
this.getBillDetail(currentRow)
if (currentRow.checkBillNO){
this.$message.error('已被选入')
return
}
this.radioCheck = currentRow.billCode
this.currentRow = currentRow
this.getBillDetail(currentRow)
},
createDateTime() {
const end = new Date(); //

Loading…
Cancel
Save