Selaa lähdekoodia

feat: 商品分类增加是否冷媒和是否保外维修

莫绍宝 1 vuosi sitten
vanhempi
commit
f06293fb3c
1 muutettua tiedostoa jossa 21 lisäystä ja 1 poistoa
  1. 21 1
      src/views/goods/classify_index.vue

+ 21 - 1
src/views/goods/classify_index.vue

@@ -91,7 +91,7 @@
 
     <!-- 新增编辑 二级分类 -->
     <el-dialog :title="addChildFormType == 'add' ? '添加二级分类':'编辑二级分类'" :visible.sync="addChildFormVisible" :show-close="false" width="40%" :close-on-click-modal="false">
-      <el-form ref="addChildForm" :model="addChildForm" :rules="addChildFormRules" label-position="left" label-width="80px">
+      <el-form ref="addChildForm" :model="addChildForm" :rules="addChildFormRules" label-position="left" label-width="110px">
         <el-form-item label="一级分类" prop="oneClassify">
           <el-select v-model="addChildForm.oneClassify" placeholder="请选择一级分类" disabled style="width: 250px;">
             <el-option :label="item.name" :value="item.categoryId" v-for="(item, index) in classifyList" :key="index"></el-option>
@@ -126,6 +126,20 @@
           </el-radio-group>
         </el-form-item>
 
+        <el-form-item label="是否保外维修单" prop="isBw">
+          <el-radio-group v-model="addChildForm.isBw">
+            <el-radio :label="true">是</el-radio>
+            <el-radio :label="false">否</el-radio>
+          </el-radio-group>
+        </el-form-item>
+
+        <el-form-item label="是否冷媒" prop="isLm">
+          <el-radio-group v-model="addChildForm.isLm">
+            <el-radio :label="true">是</el-radio>
+            <el-radio :label="false">否</el-radio>
+          </el-radio-group>
+        </el-form-item>
+
         <el-form-item label="分类图片" prop="imgUrl">
           <el-upload
             class="avatar-uploader"
@@ -211,6 +225,8 @@ export default {
         orderType: '',
         smallType: '',
         workOrderType: 'REPAIR',
+        isBw: true,
+        isLm: true,
         imgUrl: '',
         taxNumber: '',
         taxPercent: '',
@@ -366,6 +382,8 @@ export default {
             orderType: res.data.mainNumber,
             smallType: res.data.smallNumber,
             workOrderType: res.data.workOrderType,
+            isBw: res.data.isBw,
+            isLm: res.data.isLm,
             imgUrl: res.data.imgUrl,
             taxNumber: res.data.taxNumber,
             taxPercent: res.data.taxPercent,
@@ -397,6 +415,8 @@ export default {
                 smallNumber: this.addChildForm.smallType || '',
                 smallName: this.addChildForm.smallType ? this.orderSmallType.find(item => item.dictCode == this.addChildForm.smallType).dictValue : '',
                 workOrderType: this.addChildForm.workOrderType,
+                isBw: this.addChildForm.isBw,
+                isLm: this.addChildForm.isLm,
                 imgUrl: this.addChildForm.imgUrl,
                 taxNumber: this.addChildForm.taxNumber,
                 taxPercent: this.addChildForm.taxPercent,