|
@@ -3,16 +3,14 @@
|
|
|
<div class="goodsCostDetail-main" v-if="powers.some((i) => i == '007')">
|
|
|
<el-tabs v-model="activeTabs">
|
|
|
<el-tab-pane label="新建商品成本" name="0" v-if="queryType === 'add'">
|
|
|
- <base-form-normal
|
|
|
- v-if="(newTime !== '')"
|
|
|
- :type="queryType"
|
|
|
- :id="queryId"
|
|
|
- :newTime="newTime"
|
|
|
- :sitem="sitem"
|
|
|
- @refresh="refresh"
|
|
|
- />
|
|
|
-
|
|
|
-
|
|
|
+ <base-form-normal
|
|
|
+ v-if="newTime !== ''"
|
|
|
+ :type="queryType"
|
|
|
+ :id="queryId"
|
|
|
+ :newTime="newTime"
|
|
|
+ :sitem="sitem"
|
|
|
+ @refresh="refresh"
|
|
|
+ />
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="商品成本详情" name="1" v-if="queryType !== 'add'">
|
|
|
<el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
|
|
@@ -25,7 +23,7 @@
|
|
|
>
|
|
|
<el-collapse-item title="商品成本详情" name="0">
|
|
|
<base-form
|
|
|
- v-if="(newTime !== '' && createSource === '1')"
|
|
|
+ v-if="newTime !== '' && createSource === '1'"
|
|
|
:type="queryType"
|
|
|
:id="queryId"
|
|
|
:newTime="newTime"
|
|
@@ -33,8 +31,8 @@
|
|
|
@refresh="refresh"
|
|
|
/>
|
|
|
|
|
|
- <base-form-normal
|
|
|
- v-if="(newTime !== '' && createSource === '0')"
|
|
|
+ <base-form-normal
|
|
|
+ v-if="newTime !== '' && createSource === '0'"
|
|
|
:type="queryType"
|
|
|
:id="queryId"
|
|
|
:newTime="newTime"
|
|
@@ -52,9 +50,15 @@
|
|
|
<div style="max-height: 24px; overflow: hidden">
|
|
|
<el-image
|
|
|
style="height: 24px; width: 24px; margin-right: 5px"
|
|
|
- v-for="(img, index) in Array.isArray(sitem.good_img) ? sitem.good_img : sitem.good_img.split(',')"
|
|
|
+ v-for="(img, index) in Array.isArray(sitem.good_img)
|
|
|
+ ? sitem.good_img
|
|
|
+ : sitem.good_img.split(',')"
|
|
|
:src="img"
|
|
|
- :preview-src-list="Array.isArray(sitem.good_img) ? sitem.good_img : sitem.good_img.split(',')"
|
|
|
+ :preview-src-list="
|
|
|
+ Array.isArray(sitem.good_img)
|
|
|
+ ? sitem.good_img
|
|
|
+ : sitem.good_img.split(',')
|
|
|
+ "
|
|
|
:key="index"
|
|
|
/>
|
|
|
</div>
|
|
@@ -62,32 +66,41 @@
|
|
|
</template>
|
|
|
|
|
|
<template slot="create_source">
|
|
|
- <el-tag size="mini" :type="sitem.create_source === '1' ? 'warning' : ''">
|
|
|
- {{ sitem.create_source === "1" ? "咨询成交商品" : "手动创建商品" }}
|
|
|
- </el-tag> <span v-if="Number(sitem.create_source) === 1">,咨询采购价 {{ sitem.cgd_price }}</span>
|
|
|
+ <el-tag
|
|
|
+ size="mini"
|
|
|
+ :type="sitem.create_source === '1' ? 'warning' : ''"
|
|
|
+ >
|
|
|
+ {{ sitem.create_source === "1" ? "咨询成交商品" : "手动创建商品" }}
|
|
|
+ </el-tag>
|
|
|
+ <span v-if="Number(sitem.create_source) === 1"
|
|
|
+ >,咨询采购价 {{ sitem.cgd_price }}</span
|
|
|
+ >
|
|
|
</template>
|
|
|
|
|
|
<template slot="is_combind">
|
|
|
- {{ String(sitem.is_combind) === '1' ? '组合商品' : '非组合商品' }}
|
|
|
+ {{ String(sitem.is_combind) === "1" ? "组合商品" : "非组合商品" }}
|
|
|
</template>
|
|
|
|
|
|
<template slot="packing_spec">
|
|
|
- <el-tag
|
|
|
- size="mini"
|
|
|
- >{{ ( options6.find(({id}) => id === sitem.supply_area) || {}).name || '--' }}</el-tag>
|
|
|
+ <el-tag size="mini">{{
|
|
|
+ (options6.find(({ id }) => id === sitem.supply_area) || {}).name ||
|
|
|
+ "--"
|
|
|
+ }}</el-tag>
|
|
|
</template>
|
|
|
|
|
|
<template slot="is_auth">
|
|
|
- <el-tag
|
|
|
- size="mini"
|
|
|
- >{{ (options3.find(({id}) => id === sitem.is_auth) || {}).name || '--' }}</el-tag>
|
|
|
+ <el-tag size="mini">{{
|
|
|
+ (options3.find(({ id }) => id === sitem.is_auth) || {}).name || "--"
|
|
|
+ }}</el-tag>
|
|
|
</template>
|
|
|
|
|
|
<template slot="good_info_img">
|
|
|
<div style="max-height: 24px; overflow: hidden">
|
|
|
<el-image
|
|
|
- v-for="imgSrc in sitem.good_info_img ? sitem.good_info_img.split(',') : []"
|
|
|
- style="height: 24px; width: 24px;margin-right: 5px"
|
|
|
+ v-for="imgSrc in sitem.good_info_img
|
|
|
+ ? sitem.good_info_img.split(',')
|
|
|
+ : []"
|
|
|
+ style="height: 24px; width: 24px; margin-right: 5px"
|
|
|
:src="imgSrc"
|
|
|
:preview-src-list="[imgSrc]"
|
|
|
/>
|
|
@@ -96,9 +109,9 @@
|
|
|
|
|
|
<template slot="cat_info">
|
|
|
{{
|
|
|
- sitem.cat_info
|
|
|
- ? sitem.cat_info.map(({ name }) => name).join("_")
|
|
|
- : "--"
|
|
|
+ sitem.cat_info
|
|
|
+ ? sitem.cat_info.map(({ name }) => name).join("_")
|
|
|
+ : "--"
|
|
|
}}
|
|
|
</template>
|
|
|
|
|
@@ -131,31 +144,29 @@
|
|
|
<template slot="noble">
|
|
|
<span v-if="sitem.noble_metal">
|
|
|
{{ sitem.noble_weight ? sitem.noble_weight : "0" }}g-{{
|
|
|
- sitem.noble_name
|
|
|
+ sitem.noble_name
|
|
|
}}-{{ sitem.gold_price ? sitem.gold_price : "0" }}元/g-{{
|
|
|
- sitem.is_gold_price + "" === "0" ? "不" : ""
|
|
|
+ sitem.is_gold_price + "" === "0" ? "不" : ""
|
|
|
}}启用实时金价-{{ sitem.is_diff + "" === "1" ? "有" : "无" }}工差-{{
|
|
|
- sitem.config
|
|
|
+ sitem.config
|
|
|
}}-{{ sitem.other_config }}
|
|
|
</span>
|
|
|
</template>
|
|
|
|
|
|
<template slot="weight">{{ sitem.weight }}g</template>
|
|
|
<template slot="tax">{{ sitem.tax }}%</template>
|
|
|
- <template slot="is_stock">{{ String(sitem.is_stock) === "0" ? "非库存品" : "库存品" }}</template>
|
|
|
- <template
|
|
|
- slot="is_exclusive"
|
|
|
- >{{ String(sitem.is_exclusive) === "0" ? "非泰康" : "泰康" }}</template>
|
|
|
+ <template slot="is_stock">{{
|
|
|
+ String(sitem.is_stock) === "0" ? "非库存品" : "库存品"
|
|
|
+ }}</template>
|
|
|
+ <template slot="is_exclusive">{{
|
|
|
+ String(sitem.is_exclusive) === "0" ? "非泰康" : "泰康"
|
|
|
+ }}</template>
|
|
|
<template slot="noble_weight">{{ sitem.noble_weight }}g</template>
|
|
|
<template slot="is_gold_price">
|
|
|
- {{
|
|
|
- String(sitem.is_gold_price) === "1" ? "是" : "否"
|
|
|
- }}
|
|
|
+ {{ String(sitem.is_gold_price) === "1" ? "是" : "否" }}
|
|
|
</template>
|
|
|
<template slot="is_diff">
|
|
|
- {{
|
|
|
- String(sitem.is_diff) === "1" ? "有公差" : "无工差"
|
|
|
- }}
|
|
|
+ {{ String(sitem.is_diff) === "1" ? "有公差" : "无工差" }}
|
|
|
</template>
|
|
|
|
|
|
<template slot="packing_weight">{{ sitem.packing_weight }}g</template>
|
|
@@ -173,8 +184,17 @@
|
|
|
v-if="sitem.combind_list && sitem.combind_list.length > 0"
|
|
|
name="4"
|
|
|
>
|
|
|
- <el-table :data="sitem.combind_list" size="mini" border max-height="350px">
|
|
|
- <el-table-column label="子商品成本编号" prop="childCode" min-width="160px" />
|
|
|
+ <el-table
|
|
|
+ :data="sitem.combind_list"
|
|
|
+ size="mini"
|
|
|
+ border
|
|
|
+ max-height="350px"
|
|
|
+ >
|
|
|
+ <el-table-column
|
|
|
+ label="子商品成本编号"
|
|
|
+ prop="childCode"
|
|
|
+ min-width="160px"
|
|
|
+ />
|
|
|
<el-table-column
|
|
|
label="子商品名称"
|
|
|
prop="child_name"
|
|
@@ -195,7 +215,11 @@
|
|
|
</el-table>
|
|
|
</el-collapse-item>
|
|
|
|
|
|
- <el-collapse-item title="固定与阶梯成本" name="2" v-if="isDisplayPrivateField('1')">
|
|
|
+ <el-collapse-item
|
|
|
+ title="固定与阶梯成本"
|
|
|
+ name="2"
|
|
|
+ v-if="isDisplayPrivateField('1')"
|
|
|
+ >
|
|
|
<show-data-table :columns="ladderColumns" :sitem="sitem">
|
|
|
<template slot="demo_fee">{{ sitem.demo_fee }}元</template>
|
|
|
<template slot="open_fee">{{ sitem.open_fee }}元</template>
|
|
@@ -241,7 +265,12 @@
|
|
|
</el-tab-pane>
|
|
|
|
|
|
<el-tab-pane label="最近修改记录" name="2" v-if="queryType !== 'add'">
|
|
|
- <type-change-item v-if="newTime !== ''" :newTime="newTime" :type="'3'" :code="queryId" />
|
|
|
+ <type-change-item
|
|
|
+ v-if="newTime !== ''"
|
|
|
+ :newTime="newTime"
|
|
|
+ :type="'3'"
|
|
|
+ :code="queryId"
|
|
|
+ />
|
|
|
</el-tab-pane>
|
|
|
|
|
|
<el-tab-pane label="审批记录" name="3" v-if="queryType !== 'add'">
|
|
@@ -257,9 +286,15 @@
|
|
|
<flow-chart process_id="15" type="SPCB" :orderCode="queryId" />
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="商品预览" name="5" v-if="queryType !== 'add'">
|
|
|
- <good-preview v-if="newTime !== ''"
|
|
|
- :newTime="newTime"
|
|
|
- :sitem="sitem"/>
|
|
|
+ <div class="good-preview-box">
|
|
|
+ <good-preview
|
|
|
+ style="margin: 0 auto"
|
|
|
+ v-if="newTime !== ''"
|
|
|
+ :newTime="newTime"
|
|
|
+ :sitem="sitem"
|
|
|
+ :origin_place="origin_place"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
</div>
|
|
@@ -294,7 +329,7 @@ import {
|
|
|
imageColumns,
|
|
|
sendColumns,
|
|
|
options3,
|
|
|
- options6
|
|
|
+ options6,
|
|
|
} from "./columns";
|
|
|
|
|
|
export default {
|
|
@@ -306,33 +341,25 @@ export default {
|
|
|
ProductModal,
|
|
|
baseForm,
|
|
|
costForm,
|
|
|
- goodPreview
|
|
|
+ goodPreview,
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapGetters([
|
|
|
- "tablebtnSize",
|
|
|
- "searchSize",
|
|
|
- "size",
|
|
|
- "private_field",
|
|
|
- "originLevel"
|
|
|
- ]),
|
|
|
- createSource(){
|
|
|
- return this.$route.query.createSource
|
|
|
+ ...mapGetters(["tablebtnSize", "searchSize", "size", "private_field", "originLevel"]),
|
|
|
+ createSource() {
|
|
|
+ return this.$route.query.createSource;
|
|
|
},
|
|
|
powers() {
|
|
|
const { btnList } = this.$store.getters;
|
|
|
- const tran =
|
|
|
- btnList.find(item => item.menu_route == "goodsCostDetail") || {};
|
|
|
+ const tran = btnList.find((item) => item.menu_route == "goodsCostDetail") || {};
|
|
|
const { action } = tran ?? {};
|
|
|
return action ?? [];
|
|
|
},
|
|
|
ppowers() {
|
|
|
const tran =
|
|
|
- this.$store.getters.roleProcess.find(i => i.process_type === "SPCB") ||
|
|
|
- {};
|
|
|
+ this.$store.getters.roleProcess.find((i) => i.process_type === "SPCB") || {};
|
|
|
const { action } = tran ?? {};
|
|
|
return action ?? [];
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
|
|
|
data() {
|
|
@@ -359,7 +386,7 @@ export default {
|
|
|
editItem: null,
|
|
|
editIndex: -1,
|
|
|
visible: false,
|
|
|
- modalType: ""
|
|
|
+ modalType: "",
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -369,8 +396,7 @@ export default {
|
|
|
onChildProdChange(index = null, type = "view") {
|
|
|
this.modalType = type;
|
|
|
|
|
|
- this.editItem =
|
|
|
- index === null ? null : { ...this.sitem.combind_list[index] };
|
|
|
+ this.editItem = index === null ? null : { ...this.sitem.combind_list[index] };
|
|
|
|
|
|
this.editIndex = index === null ? -1 : index;
|
|
|
this.visible = true;
|
|
@@ -413,11 +439,9 @@ export default {
|
|
|
},
|
|
|
async getArea(prop = "delivery_place") {
|
|
|
const chunks = this.sitem[prop].split(",");
|
|
|
- if(chunks.length !== 3) return ""
|
|
|
+ if (chunks.length !== 3) return "";
|
|
|
let { data: province } = await asyncRequest.province();
|
|
|
- province = province.find(
|
|
|
- ({ province_code }) => province_code === chunks[0]
|
|
|
- );
|
|
|
+ province = province.find(({ province_code }) => province_code === chunks[0]);
|
|
|
let { data: city } = await asyncRequest.city({ code: chunks[0] });
|
|
|
city = city.find(({ city_code }) => city_code === chunks[1]);
|
|
|
let { data: area } = await asyncRequest.area({ code: chunks[1] });
|
|
@@ -428,19 +452,19 @@ export default {
|
|
|
await this.$confirm(`确定要${detail}?`, {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
+ type: "warning",
|
|
|
})
|
|
|
.then(async () => {
|
|
|
let _model = {
|
|
|
spuCode: this.queryId,
|
|
|
status: type,
|
|
|
- remark: remark
|
|
|
+ remark: remark,
|
|
|
};
|
|
|
let res = await asyncRequest.status(_model);
|
|
|
if (res && res.code === 0) {
|
|
|
this.$notify.success({
|
|
|
title: "提交成功!",
|
|
|
- message: ""
|
|
|
+ message: "",
|
|
|
});
|
|
|
await this.initForm();
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
@@ -462,7 +486,7 @@ export default {
|
|
|
async initData() {
|
|
|
this.loading = true;
|
|
|
const { code, message, data } = await asyncRequest.detail({
|
|
|
- spuCode: this.queryId
|
|
|
+ spuCode: this.queryId,
|
|
|
});
|
|
|
|
|
|
this.loading = false;
|
|
@@ -479,8 +503,8 @@ export default {
|
|
|
},
|
|
|
getNewTime() {
|
|
|
this.newTime = new Date().valueOf();
|
|
|
- }
|
|
|
- }
|
|
|
+ },
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
@@ -523,4 +547,10 @@ export default {
|
|
|
border-left: 1px solid #dcdfe6;
|
|
|
}
|
|
|
}
|
|
|
+.goodsCostDetail-main {
|
|
|
+ .good-preview-box {
|
|
|
+ text-align: center;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|