Merge remote-tracking branch 'origin/dev_drug' into dev_drug

dev_unify
yewj 4 months ago
commit 369e1f561e

@ -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