Bläddra i källkod

管理后台-退款、座位模板

panyong 3 år sedan
förälder
incheckning
672d5c3150

+ 0 - 1
htmldev/manage/README.md

@@ -208,5 +208,4 @@ yarn build
 
 ### todo list
 - [ ] 商品管理 增加选项:是否支持存酒
-- [ ] 商品附加管理:附加名称切换时,值清空(顺便检查下商品添加页)
 - [ ] 存酒管理:商品名称改成支持模糊搜索

+ 15 - 0
htmldev/manage/src/views/business/pms/goods/details.vue

@@ -68,6 +68,17 @@
                     label="0">下架
           </el-radio>
         </el-form-item>
+        <!--todo 缺存酒字段-->
+        <el-form-item prop="product_status"
+                      :rules="formRules.required"
+                      label="是否支持存酒:">
+          <el-radio v-model="form.product_status"
+                    label="1">支持
+          </el-radio>
+          <el-radio v-model="form.product_status"
+                    label="0">不支持
+          </el-radio>
+        </el-form-item>
         <el-form-item prop="product_desc"
                       label="商品描述:">
           <tinymce :height="300" v-model="form.product_desc"/>
@@ -120,6 +131,7 @@
               filterable
               allow-create
               default-first-option
+              @change="handleChange($event, index)"
               placeholder="请选择附加名"
               style="width: 100%;">
               <el-option
@@ -331,6 +343,9 @@ export default {
       }
       return arr[index].attach_content.split(',')
     },
+    handleChange (val, index) {
+      this.$set(this.form.attachs[index], 'attach_content', [])
+    },
     handleSubmit () {
       const url = this.exData.id ? '/v1/bar/product/modify' : '/v1/bar/product/add'
       this.$refs.form.validate(async valid => {

+ 6 - 0
htmldev/manage/src/views/business/pms/goods/index.vue

@@ -128,6 +128,12 @@
           <p>{{ ['', '厨房', '柜台'][scope.row.product_place] }}</p>
         </template>
       </el-table-column>
+      <!--todo 缺存酒字段-->
+      <el-table-column label="存酒">
+        <template slot-scope="scope">
+          <p>{{ ['不支持', '支持'][scope.row.product_place] }}</p>
+        </template>
+      </el-table-column>
       <el-table-column label="是否上架" width="100">
         <template slot-scope="scope">
           <p>{{ ['下架', '上架'][scope.row.product_status] }}</p>