Просмотр исходного кода

feat: NG-80: 商品管理——DP价格支持手动填写设置

tyler 1 год назад
Родитель
Сommit
5647d486c1
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      src/views/shop/goods-add.vue
  2. 1 1
      src/views/shop/index.vue

+ 1 - 1
src/views/shop/goods-add.vue

@@ -113,7 +113,7 @@
             <el-table-column :label="$t('shop.salesPrice')" min-width="100px;">
               <template slot-scope="scope">
                 <el-form-item :prop="`availableCountriesList.${scope.$index}.sellPrice`" >
-                  <el-input-number v-model="scope.row.sellPrice" :controls="false" disabled></el-input-number>
+                  <el-input-number v-model="scope.row.sellPrice" :controls="false"></el-input-number>
                 </el-form-item>
               </template>
             </el-table-column>

+ 1 - 1
src/views/shop/index.vue

@@ -189,7 +189,7 @@
             <el-table-column :label="$t('shop.salesPrice')" min-width="100px;">
               <template slot-scope="scope">
                 <el-form-item :prop="`availableCountriesList.${scope.$index}.sellPrice`" >
-                  <el-input-number v-model="scope.row.sellPrice" :controls="false" disabled></el-input-number>
+                  <el-input-number v-model="scope.row.sellPrice" :controls="false"></el-input-number>
                 </el-form-item>
               </template>
             </el-table-column>