|
|
@@ -83,7 +83,7 @@
|
|
|
</div>
|
|
|
<div
|
|
|
class="skuDeatilHeaderRight"
|
|
|
- v-if="!formData.displayRewardTaskEditable"
|
|
|
+ v-if="formData.displayRewardTaskEditable"
|
|
|
style="margin-right: 72px">
|
|
|
<van-button plain type="primary" @click="editTable" v-if="!editTableFlag"
|
|
|
>编辑</van-button
|
|
|
@@ -112,9 +112,15 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="排面数" prop="identifyTheNumberOfCards" align="center" width="80">
|
|
|
<template slot-scope="scope">
|
|
|
- <span v-if="!editTableFlag">{{ scope.row.identifyTheNumberOfCards }}</span>
|
|
|
+ <span v-if="!editTableFlag" :class="{ shelfEdit: scope.row.shelfEdit == 1 }"
|
|
|
+ >{{ scope.row.identifyTheNumberOfCards }}
|
|
|
+ </span>
|
|
|
+ <span v-else-if="!editTableFlag">
|
|
|
+ {{ scope.row.identifyTheNumberOfCards }}
|
|
|
+ </span>
|
|
|
<van-field
|
|
|
v-else
|
|
|
+ :class="{ shelfEdit: scope.row.shelfEdit == 1 }"
|
|
|
v-model="scope.row.identifyTheNumberOfCards"
|
|
|
placeholder="请输入排面数"
|
|
|
type="digit"
|
|
|
@@ -569,6 +575,12 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .shelfEdit {
|
|
|
+ color: red;
|
|
|
+ input {
|
|
|
+ color: red;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
.identifyResultdialog {
|
|
|
width: vw(690) !important;
|