Browse Source

Merge branch 'feature_20260514_修改排面数调整'

zhujindu 1 week ago
parent
commit
9bb04506d2
1 changed files with 5 additions and 2 deletions
  1. 5 2
      src/views/historicalVisit/perfectStoreTask.vue

+ 5 - 2
src/views/historicalVisit/perfectStoreTask.vue

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