|
@@ -111,7 +111,7 @@
|
|
|
prop="sale_price"
|
|
|
label="售价"
|
|
|
show-overflow-tooltip
|
|
|
- v-if="sitem && sitem.is_gold_price !== '1'"
|
|
|
+ v-if="!(sitem && sitem.is_gold_price === '1'&&is_noble)"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<el-form-item
|
|
@@ -142,7 +142,7 @@
|
|
|
<el-table-column
|
|
|
prop="new_cost_fee"
|
|
|
show-overflow-
|
|
|
- v-if="sitem && sitem.is_gold_price === '1'"
|
|
|
+ v-if="sitem && sitem.is_gold_price === '1'&&is_noble"
|
|
|
label="系统工艺费"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
@@ -169,7 +169,7 @@
|
|
|
prop="cost_fee"
|
|
|
label="工艺费"
|
|
|
show-overflow-tooltip
|
|
|
- v-if="sitem && sitem.is_gold_price === '1'"
|
|
|
+ v-if="sitem && sitem.is_gold_price === '1'&&is_noble"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<el-form-item
|
|
@@ -536,6 +536,7 @@ export default {
|
|
|
return {
|
|
|
loading: false,
|
|
|
showVoucher: false,
|
|
|
+ is_noble: false,
|
|
|
video_url: "",
|
|
|
img_url: "",
|
|
|
other_url: "",
|
|
@@ -796,6 +797,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
async resetForm() {
|
|
|
+ this.is_noble = false;
|
|
|
// 重置
|
|
|
await this.$nextTick(async () => {
|
|
|
if (this.$refs.ruleForm && this.$refs.addrForm) {
|
|
@@ -803,7 +805,14 @@ export default {
|
|
|
this.$refs.ruleForm.clearValidate();
|
|
|
this.$refs.addrForm.resetFields();
|
|
|
this.$refs.addrForm.clearValidate();
|
|
|
- let { proof, ladderlist } = this.sitem;
|
|
|
+ let { proof, ladderlist, cat_info } = this.sitem;
|
|
|
+ if (cat_info && cat_info.length > 0) {
|
|
|
+ cat_info.forEach((e) => {
|
|
|
+ if (e.id === "6") {
|
|
|
+ this.is_noble = true;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
ladderlist.map((a) => {
|
|
|
a.search_loading = false;
|
|
|
a.new_sale_price = "0";
|