|
@@ -57,20 +57,12 @@
|
|
/>
|
|
/>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|
- <el-col
|
|
|
|
- :span="3"
|
|
|
|
- class="fr"
|
|
|
|
- style="width: 66px; padding: 0 0 0 10px"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
|
|
<el-button type="primary" :size="searchSize" @click="searchList">
|
|
<el-button type="primary" :size="searchSize" @click="searchList">
|
|
刷新
|
|
刷新
|
|
</el-button>
|
|
</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
- <el-col
|
|
|
|
- :span="3"
|
|
|
|
- class="fr"
|
|
|
|
- style="width: 66px; padding: 0 0 0 10px"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
|
|
<el-button type="warning" :size="searchSize" @click="restSearch">
|
|
<el-button type="warning" :size="searchSize" @click="restSearch">
|
|
重置
|
|
重置
|
|
</el-button>
|
|
</el-button>
|
|
@@ -161,9 +153,7 @@
|
|
:size="searchSize"
|
|
:size="searchSize"
|
|
type="success"
|
|
type="success"
|
|
style="float: right"
|
|
style="float: right"
|
|
- @click="
|
|
|
|
- routeGoto('goodsCostDetail', { id: 'add', type: 'add' })
|
|
|
|
- "
|
|
|
|
|
|
+ @click="routeGoto('goodsCostDetail', { id: 'add', type: 'add' })"
|
|
>
|
|
>
|
|
添加
|
|
添加
|
|
</el-button>
|
|
</el-button>
|
|
@@ -206,12 +196,10 @@
|
|
<el-tag
|
|
<el-tag
|
|
:size="tablebtnSize"
|
|
:size="tablebtnSize"
|
|
:type="
|
|
:type="
|
|
- (statusList.find((item) => item.code == scope.row.status) || {})
|
|
|
|
- .type || '--'
|
|
|
|
|
|
+ (statusList.find((item) => item.code == scope.row.status) || {}).type || '--'
|
|
"
|
|
"
|
|
v-text="
|
|
v-text="
|
|
- (statusList.find((item) => item.code == scope.row.status) || {})
|
|
|
|
- .name || '--'
|
|
|
|
|
|
+ (statusList.find((item) => item.code == scope.row.status) || {}).name || '--'
|
|
"
|
|
"
|
|
></el-tag>
|
|
></el-tag>
|
|
</template>
|
|
</template>
|
|
@@ -220,19 +208,15 @@
|
|
:size="tablebtnSize"
|
|
:size="tablebtnSize"
|
|
:type="scope.row.is_online == '0' ? 'warning' : ''"
|
|
:type="scope.row.is_online == '0' ? 'warning' : ''"
|
|
v-text="
|
|
v-text="
|
|
- (
|
|
|
|
- isonlineoptions.find((item) => item.id == scope.row.is_online) ||
|
|
|
|
- {}
|
|
|
|
- ).name || '--'
|
|
|
|
|
|
+ (isonlineoptions.find((item) => item.id == scope.row.is_online) || {}).name ||
|
|
|
|
+ '--'
|
|
"
|
|
"
|
|
></el-tag>
|
|
></el-tag>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<template #operation="{ scope }">
|
|
<template #operation="{ scope }">
|
|
<el-tooltip
|
|
<el-tooltip
|
|
- v-if="
|
|
|
|
- powers.some((item) => item == '007') && scope.row.status !== '8'
|
|
|
|
- "
|
|
|
|
|
|
+ v-if="powers.some((item) => item == '007') && scope.row.status !== '8'"
|
|
effect="dark"
|
|
effect="dark"
|
|
content="详情"
|
|
content="详情"
|
|
placement="top"
|
|
placement="top"
|
|
@@ -243,9 +227,7 @@
|
|
></i>
|
|
></i>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<el-tooltip
|
|
<el-tooltip
|
|
- v-if="
|
|
|
|
- powers.some((item) => item == '079') && scope.row.status !== '8'
|
|
|
|
- "
|
|
|
|
|
|
+ v-if="powers.some((item) => item == '079') && scope.row.status !== '8'"
|
|
effect="dark"
|
|
effect="dark"
|
|
content="下线商品"
|
|
content="下线商品"
|
|
placement="top"
|
|
placement="top"
|
|
@@ -257,10 +239,8 @@
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<el-tooltip
|
|
<el-tooltip
|
|
v-if="
|
|
v-if="
|
|
- (powers.some((item) => item == '005') &&
|
|
|
|
- scope.row.status === '7') ||
|
|
|
|
- (powers.some((item) => item == '005') &&
|
|
|
|
- scope.row.status === '6') ||
|
|
|
|
|
|
+ (powers.some((item) => item == '005') && scope.row.status === '7') ||
|
|
|
|
+ (powers.some((item) => item == '005') && scope.row.status === '6') ||
|
|
(powers.some((item) => item == '005') && scope.row.status === '8')
|
|
(powers.some((item) => item == '005') && scope.row.status === '8')
|
|
"
|
|
"
|
|
effect="dark"
|
|
effect="dark"
|
|
@@ -279,8 +259,7 @@
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<el-tooltip
|
|
<el-tooltip
|
|
v-if="
|
|
v-if="
|
|
- (powers.some((item) => item == '054') &&
|
|
|
|
- scope.row.status === '1') ||
|
|
|
|
|
|
+ (powers.some((item) => item == '054') && scope.row.status === '1') ||
|
|
(powers.some((item) => item == '054') && scope.row.status === '4')
|
|
(powers.some((item) => item == '054') && scope.row.status === '4')
|
|
"
|
|
"
|
|
effect="dark"
|
|
effect="dark"
|
|
@@ -289,20 +268,12 @@
|
|
>
|
|
>
|
|
<i
|
|
<i
|
|
class="el-icon-c-scale-to-original tb-icon"
|
|
class="el-icon-c-scale-to-original tb-icon"
|
|
- @click="
|
|
|
|
- wantto(
|
|
|
|
- scope.row.is_online,
|
|
|
|
- scope.row.spuCode,
|
|
|
|
- scope.row.status,
|
|
|
|
- '2'
|
|
|
|
- )
|
|
|
|
- "
|
|
|
|
|
|
+ @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '2')"
|
|
></i>
|
|
></i>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<el-tooltip
|
|
<el-tooltip
|
|
v-if="
|
|
v-if="
|
|
- (powers.some((item) => item == '053') &&
|
|
|
|
- scope.row.status === '1') ||
|
|
|
|
|
|
+ (powers.some((item) => item == '053') && scope.row.status === '1') ||
|
|
(powers.some((item) => item == '053') && scope.row.status === '5')
|
|
(powers.some((item) => item == '053') && scope.row.status === '5')
|
|
"
|
|
"
|
|
effect="dark"
|
|
effect="dark"
|
|
@@ -311,14 +282,7 @@
|
|
>
|
|
>
|
|
<i
|
|
<i
|
|
class="el-icon-coin tb-icon"
|
|
class="el-icon-coin tb-icon"
|
|
- @click="
|
|
|
|
- wantto(
|
|
|
|
- scope.row.is_online,
|
|
|
|
- scope.row.spuCode,
|
|
|
|
- scope.row.status,
|
|
|
|
- '3'
|
|
|
|
- )
|
|
|
|
- "
|
|
|
|
|
|
+ @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '3')"
|
|
></i>
|
|
></i>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
<el-tooltip
|
|
<el-tooltip
|
|
@@ -342,10 +306,7 @@
|
|
content="删除"
|
|
content="删除"
|
|
placement="top"
|
|
placement="top"
|
|
>
|
|
>
|
|
- <i
|
|
|
|
- class="el-icon-delete tb-icon"
|
|
|
|
- @click="deleteItem(scope.row.spuCode)"
|
|
|
|
- ></i>
|
|
|
|
|
|
+ <i class="el-icon-delete tb-icon" @click="deleteItem(scope.row.spuCode)"></i>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
</template>
|
|
</template>
|
|
</ex-table>
|
|
</ex-table>
|
|
@@ -360,7 +321,7 @@
|
|
>
|
|
>
|
|
<el-form-item label="下线原因" prop="offline_reason">
|
|
<el-form-item label="下线原因" prop="offline_reason">
|
|
<el-select
|
|
<el-select
|
|
- style="width:100%"
|
|
|
|
|
|
+ style="width: 100%"
|
|
v-model="donline_form.offline_reason"
|
|
v-model="donline_form.offline_reason"
|
|
placeholder="请选择下线原因"
|
|
placeholder="请选择下线原因"
|
|
>
|
|
>
|
|
@@ -414,9 +375,7 @@ export default {
|
|
...mapGetters(["tablebtnSize", "searchSize", "size"]),
|
|
...mapGetters(["tablebtnSize", "searchSize", "size"]),
|
|
powers() {
|
|
powers() {
|
|
let tran =
|
|
let tran =
|
|
- this.$store.getters.btnList.find(
|
|
|
|
- (item) => item.menu_route == "goodsCost"
|
|
|
|
- ) || {};
|
|
|
|
|
|
+ this.$store.getters.btnList.find((item) => item.menu_route == "goodsCost") || {};
|
|
if (tran && tran.action && tran.action.length > 0) {
|
|
if (tran && tran.action && tran.action.length > 0) {
|
|
return tran.action;
|
|
return tran.action;
|
|
} else {
|
|
} else {
|
|
@@ -441,12 +400,8 @@ export default {
|
|
spuCode: "",
|
|
spuCode: "",
|
|
},
|
|
},
|
|
donline_rules: {
|
|
donline_rules: {
|
|
- offline_reason: [
|
|
|
|
- { validator: validate, required: true, trigger: "blur" },
|
|
|
|
- ],
|
|
|
|
- offline_remark: [
|
|
|
|
- { validator: validate, required: true, trigger: "blur" },
|
|
|
|
- ],
|
|
|
|
|
|
+ offline_reason: [{ validator: validate, required: true, trigger: "blur" }],
|
|
|
|
+ offline_remark: [{ validator: validate, required: true, trigger: "blur" }],
|
|
},
|
|
},
|
|
statusList: [
|
|
statusList: [
|
|
{
|
|
{
|
|
@@ -643,45 +598,27 @@ export default {
|
|
};
|
|
};
|
|
this.searchList();
|
|
this.searchList();
|
|
},
|
|
},
|
|
- wantto(isonline, code, ntype, wtype) {
|
|
|
|
- console.log(isonline);
|
|
|
|
- if (isonline + "" === "1") {
|
|
|
|
- this.$message.warning("已上线的商品需要下线才能修改!");
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- if (ntype === "0") {
|
|
|
|
- this.$message.warning("新建商品成正在审核中,请审核结束后再修改!");
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- if (ntype === "2") {
|
|
|
|
- if (wtype === "2") {
|
|
|
|
- this.$message.warning("商品基础信息已修改,请等待审核结果!");
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- if (wtype === "3") {
|
|
|
|
- this.$message.warning(
|
|
|
|
- "商品基础信息修改流程正在审核中,请审核结束后再修改!"
|
|
|
|
- );
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- if (ntype === "3") {
|
|
|
|
- if (wtype === "3") {
|
|
|
|
- this.$message.warning("商品成本信息已修改,请等待审核结果!");
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- if (wtype === "2") {
|
|
|
|
- this.$message.warning(
|
|
|
|
- "商品成信息修改流程正在审核中,请审核结束后再修改!"
|
|
|
|
- );
|
|
|
|
- return;
|
|
|
|
|
|
+ async wantto(isonline, spuCode, ntype, wtype) {
|
|
|
|
+ const { code, data, message } = await asyncRequest.checkIsUpdate({ spuCode });
|
|
|
|
+ if (code === 0) {
|
|
|
|
+ const { is_allow_update } = data;
|
|
|
|
+ if (is_allow_update + "" === "1") {
|
|
|
|
+ this.routeGoto("goodsCostDetail", {
|
|
|
|
+ id: code,
|
|
|
|
+ type: wtype === "2" ? "editBase" : wtype === "3" ? "editCoin" : "",
|
|
|
|
+ });
|
|
|
|
+ } else {
|
|
|
|
+ if (isonline + "" === "1") {
|
|
|
|
+ this.$message.warning("已上线的商品需要下线才能修改!");
|
|
|
|
+ } else {
|
|
|
|
+ this.$message.warning("当前商品上线流程正在进行中,请下线再操作!");
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+ } else if (code >= 100 && code <= 104) {
|
|
|
|
+ await this.logout();
|
|
|
|
+ } else {
|
|
|
|
+ this.$message.warning(message);
|
|
}
|
|
}
|
|
- console.log(ntype + "----" + wtype);
|
|
|
|
- this.routeGoto("goodsCostDetail", {
|
|
|
|
- id: code,
|
|
|
|
- type: wtype === "2" ? "editBase" : wtype === "3" ? "editCoin" : "",
|
|
|
|
- });
|
|
|
|
},
|
|
},
|
|
selection_change(e) {
|
|
selection_change(e) {
|
|
const { list } = e;
|
|
const { list } = e;
|
|
@@ -826,8 +763,7 @@ export default {
|
|
item.companyNo = this.select === "3" ? this.sinput : "";
|
|
item.companyNo = this.select === "3" ? this.sinput : "";
|
|
item.supplierNo = this.select === "4" ? this.sinput : "";
|
|
item.supplierNo = this.select === "4" ? this.sinput : "";
|
|
item.company_name = this.select === "5" ? this.sinput : ""; // 部门
|
|
item.company_name = this.select === "5" ? this.sinput : ""; // 部门
|
|
- item.cat_id =
|
|
|
|
- item.cat_id.length > 0 ? item.cat_id[item.cat_id.length - 1] : "";
|
|
|
|
|
|
+ item.cat_id = item.cat_id.length > 0 ? item.cat_id[item.cat_id.length - 1] : "";
|
|
const res = await asyncRequest.list(item);
|
|
const res = await asyncRequest.list(item);
|
|
if (res && res.code === 0 && res.data) {
|
|
if (res && res.code === 0 && res.data) {
|
|
this.tableData = res.data.list;
|
|
this.tableData = res.data.list;
|
|
@@ -910,22 +846,21 @@ export default {
|
|
})
|
|
})
|
|
.then(async () => {
|
|
.then(async () => {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
- const model = this.donline_form;
|
|
|
|
- const res = await asyncRequest.goodupoffline(model);
|
|
|
|
- if (res && res.code === 0) {
|
|
|
|
- this.loading = false;
|
|
|
|
- this.$notify.success({
|
|
|
|
- title: res.message,
|
|
|
|
- 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);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ const model = this.donline_form;
|
|
|
|
+ const res = await asyncRequest.goodupoffline(model);
|
|
|
|
+ if (res && res.code === 0) {
|
|
|
|
+ this.loading = false;
|
|
|
|
+ this.$notify.success({
|
|
|
|
+ title: res.message,
|
|
|
|
+ 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(async () => {
|
|
.catch(async () => {
|
|
console.log("取消");
|
|
console.log("取消");
|
|
@@ -935,5 +870,4 @@ export default {
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
|
|
|
|
-<style lang="scss" scoped>
|
|
|
|
-</style>
|
|
|
|
|
|
+<style lang="scss" scoped></style>
|