戴艳蓉 пре 3 година
родитељ
комит
847ed69890

+ 81 - 13
src/views/goodStore/goodsCost/components/baseForm.vue

@@ -421,7 +421,7 @@
           <el-table-column prop="spec_value_value" label="规格值" />
           <el-table-column
             fixed="right"
-            v-if="type === 'add' || type === 'editBase'|| type === 'edit'"
+            v-if="type === 'add' || type === 'editBase' || type === 'edit'"
           >
             <template slot="header" slot-scope="scope">
               <span>操作</span>
@@ -439,18 +439,24 @@
               </el-tooltip>
             </template>
             <template slot-scope="scope">
-              <el-button
-                @click="openEdit(scope.$index, scope.row)"
-                type="text"
-                size="small"
-                >修改</el-button
-              >
-              <el-button
-                type="text"
-                size="small"
-                @click="openDelete(scope.$index)"
-                >移除</el-button
+              <el-tooltip effect="dark" content="修改" placement="top">
+                <i
+                  class="el-icon-edit tb-icon"
+                  @click="openEdit(scope.$index, scope.row)"
+                ></i>
+              </el-tooltip>
+
+              <el-tooltip
+                v-if="!scope.row.isMust"
+                effect="dark"
+                content="删除"
+                placement="top"
               >
+                <i
+                  class="el-icon-delete tb-icon"
+                  @click="openDelete(scope.$index)"
+                ></i>
+              </el-tooltip>
             </template>
           </el-table-column>
         </el-table>
@@ -982,7 +988,7 @@
               <el-table-column prop="delivery_fee" label="其中运费" />
               <el-table-column
                 fixed="right"
-                v-if="type === 'add' || type === 'editCoin'|| type === 'edit'"
+                v-if="type === 'add' || type === 'editCoin' || type === 'edit'"
               >
                 <template slot="header" slot-scope="scope">
                   <span>操作</span>
@@ -1367,6 +1373,7 @@ export default {
         index,
         id,
         spec_id,
+        isMust,
         spec_value,
         spec_value_id,
         spec_value_value,
@@ -1377,6 +1384,7 @@ export default {
           ffindex = findex;
           this.spec_tableData[findex].id = id;
           this.spec_tableData[findex].spec_id = spec_id;
+          this.spec_tableData[findex].isMust = isMust;
           this.spec_tableData[findex].spec_value = spec_value;
           this.spec_tableData[findex].spec_value_id = spec_value_id;
           this.spec_tableData[findex].spec_value_value = spec_value_value;
@@ -1749,6 +1757,66 @@ export default {
       this.$refs.ruleForm.validateField("after_sales");
       this.is_noble = pid === "6";
       this.sch_is_noble();
+      let list1 =
+        this.spec_tableData && this.spec_tableData.length > 0
+          ? JSON.parse(JSON.stringify(this.spec_tableData))
+          : [];
+      let list2 = [];
+      if (id) {
+        const { code, message, data } = await asyncRequest.catinfo({ id: id });
+        if (code === 0) {
+          const { spec } = data;
+          if (spec && spec.length > 0) {
+            if (list1 && list1.length > 0) {
+              spec.forEach((a, ai) => {
+                let findex = list1.findIndex((b) => b.spec_id === a.id);
+                if (findex !== -1) {
+                  list1[findex].isMust = true;
+                } else {
+                  list1.push({
+                    id: "",
+                    index: "1",
+                    spec_id: a.id,
+                    spec_value: a.spec_name,
+                    isMust: true,
+                    spec_value_value: "",
+                    spec_value_id: "",
+                  });
+                }
+              });
+            } else {
+              spec.forEach((a, ai) => {
+                let model = {
+                  id: "",
+                  index: "1",
+                  spec_id: a.id,
+                  spec_value: a.spec_name,
+                  isMust: true,
+                  spec_value_value: "",
+                  spec_value_id: "",
+                };
+                list1.push(model);
+              });
+            }
+          }
+          list1.map((e, ei) => {
+            e.index = ei + "";
+            return e;
+          });
+          this.spec_tableData =
+            list1 && list1.length > 0 ? JSON.parse(JSON.stringify(list1)) : [];
+        } else if (code >= 100 && code <= 104) {
+          await this.logout();
+        } else {
+          this.$message.warning(message);
+        }
+      } else {
+        list1.forEach((e) => {
+          if (!e.isMust) {
+            list2.push(e);
+          }
+        });
+      }
     },
 
     //商品品牌选择

+ 1 - 1
src/views/goodStore/goodsCost/index.vue

@@ -284,7 +284,7 @@
         </el-tooltip>
         <el-tooltip
           v-if="
-            powers.some((item) => item == '053') && scope.row.status !== '7'
+            powers.some((item) => item == '010') && scope.row.status !== '7'
           "
           effect="dark"
           content="复制商品"