|
|
|
@ -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(); // 结束日期为当前日期
|
|
|
|
|