|
@@ -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
|