|
|
@@ -136,12 +136,15 @@
|
|
|
:class="{
|
|
|
shelfEdit: scope.row.shelfEdit == 1,
|
|
|
identifyTheNumber: true,
|
|
|
- isEdit: scope.row.identifyTheNumberOfCards > '0',
|
|
|
+ isEdit:
|
|
|
+ scope.row.identifyTheNumberOfCards > '0' && scope.row.skuProductType != '道具',
|
|
|
}"
|
|
|
v-model="scope.row.identifyTheNumberOfCards"
|
|
|
placeholder="请输入排面数"
|
|
|
type="digit"
|
|
|
- :disabled="scope.row.identifyTheNumberOfCards == '0'"
|
|
|
+ :disabled="
|
|
|
+ scope.row.identifyTheNumberOfCards == '0' || scope.row.skuProductType == '道具'
|
|
|
+ "
|
|
|
@input="onPositiveIntegerInput(scope.row, $event)"
|
|
|
@blur="inputbluwl(scope.row)" />
|
|
|
</template>
|