|
|
@@ -89,11 +89,15 @@
|
|
|
<span class="tipTitle">{{ scope.row.skuProductName }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="排面数"
|
|
|
- prop="identifyTheNumberOfCards"
|
|
|
- align="center"
|
|
|
- width="50"></el-table-column>
|
|
|
+ <el-table-column label="排面数" prop="identifyTheNumberOfCards" align="center" width="50">
|
|
|
+ <template slot-scope="scope"
|
|
|
+ ><van-field
|
|
|
+ v-model="scope.row.identifyTheNumberOfCards"
|
|
|
+ placeholder="请输入排面数"
|
|
|
+ type="digit"
|
|
|
+ @blur="inputbluwl(scope.row)"
|
|
|
+ /></template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="要求" prop="conditionIdentifyNum" align="center" width="60px">
|
|
|
<template slot-scope="scope">
|
|
|
<span
|
|
|
@@ -289,6 +293,17 @@ export default {
|
|
|
startPosition: index,
|
|
|
});
|
|
|
},
|
|
|
+ inputbluwl(row) {
|
|
|
+ console.log(row);
|
|
|
+ // if (row.identifyTheNumberOfCards != null) {
|
|
|
+ // row.meetTheStandard =
|
|
|
+ // Number(row.identifyTheNumberOfCards) >= Number(row.conditionIdentifyNum)
|
|
|
+ // ? 1
|
|
|
+ // : 0;
|
|
|
+ // } else {
|
|
|
+ // row.meetTheStandard = null;
|
|
|
+ // }
|
|
|
+ },
|
|
|
onClickLeft() {
|
|
|
this.$router.go(-1);
|
|
|
},
|