戴艳蓉 3 years ago
parent
commit
8458be0634
2 changed files with 50 additions and 0 deletions
  1. 1 0
      src/assets/js/btnList.js
  2. 49 0
      src/views/goodStore/goodsOnline/index.vue

+ 1 - 0
src/assets/js/btnList.js

@@ -77,6 +77,7 @@ const btnList = [
   { code: "076", name: "启/禁用支持品牌" },
   { code: "077", name: "删除支持品牌" },
   { code: "078", name: "再次发起审核流程" },
+  { code: "079", name: "下线商品" },
 
 ];
 export default btnList;

+ 49 - 0
src/views/goodStore/goodsOnline/index.vue

@@ -240,6 +240,19 @@
             @click="get_againonline(scope.row.skuCode)"
           ></i>
         </el-tooltip>
+        <el-tooltip
+          v-if="
+            powers.some((item) => item == '079') && scope.row.status !== '8'
+          "
+          effect="dark"
+          content="下线商品"
+          placement="top"
+        >
+          <i
+            class="el-icon-download tb-icon"
+            @click="get_donline(scope.row.skuCode)"
+          ></i>
+        </el-tooltip>
       </template>
     </ex-table>
     <no-auth v-else></no-auth>
@@ -419,6 +432,42 @@ export default {
           console.log("取消");
         });
     },
+    /**
+     * 商品下线
+     * @param {String} id id
+     * @param {String} status 0-禁用 1-启用
+     */
+    async get_donline(skuCode) {
+      await this.$confirm(`确定要下线商品?`, {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(async () => {
+          this.loading = true;
+          const model = {
+            skuCode: skuCode,
+            exam_status: "8",
+          };
+          const res = await asyncRequest.status(model);
+          if (res && res.code === 0) {
+            this.loading = false;
+            this.$notify.success({
+              title: "下线商品成功!",
+              message: "",
+            });
+            await this.searchList();
+          } else if (res && res.code >= 100 && res.code <= 104) {
+            await this.logout();
+          } else {
+            this.loading = false;
+            this.$message.warning(res.message);
+          }
+        })
+        .catch(() => {
+          console.log("取消");
+        });
+    },
     /**
      * 启用/禁用
      * @param {String} id id