|
@@ -23,7 +23,11 @@
|
|
>{{ title }}</span
|
|
>{{ title }}</span
|
|
>
|
|
>
|
|
<el-button :size="'mini'" @click="$emit('cancel')">取 消 </el-button>
|
|
<el-button :size="'mini'" @click="$emit('cancel')">取 消 </el-button>
|
|
- <el-button :size="'mini'" type="primary" v-if="type !== 'view'" @click="submitForm"
|
|
|
|
|
|
+ <el-button
|
|
|
|
+ :size="'mini'"
|
|
|
|
+ type="primary"
|
|
|
|
+ v-if="type !== 'view'"
|
|
|
|
+ @click="submitForm"
|
|
>保 存
|
|
>保 存
|
|
</el-button>
|
|
</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -420,7 +424,7 @@
|
|
:values="ruleForm.nake_fee"
|
|
:values="ruleForm.nake_fee"
|
|
:placeholder="'裸价'"
|
|
:placeholder="'裸价'"
|
|
:min="0"
|
|
:min="0"
|
|
- :disabled="type === 'view'"
|
|
|
|
|
|
+ :disabled="type === 'view' || is_noble"
|
|
:max="100000000000"
|
|
:max="100000000000"
|
|
:position="'right'"
|
|
:position="'right'"
|
|
:precision="2"
|
|
:precision="2"
|
|
@@ -796,7 +800,10 @@ export default {
|
|
};
|
|
};
|
|
|
|
|
|
this.status = status;
|
|
this.status = status;
|
|
- console.log(this.ruleForm.origin_place);
|
|
|
|
|
|
+ if (this.is_noble) {
|
|
|
|
+ this.ruleForm.nake_fee = "0";
|
|
|
|
+ }
|
|
|
|
+ // console.log(this.ruleForm.origin_place);
|
|
} else if (code >= 100 && code <= 104) {
|
|
} else if (code >= 100 && code <= 104) {
|
|
await this.logout();
|
|
await this.logout();
|
|
} else {
|
|
} else {
|
|
@@ -872,8 +879,10 @@ export default {
|
|
this.is_noble = this.askItem.is_metal;
|
|
this.is_noble = this.askItem.is_metal;
|
|
this.cat_id_name = this.type === "add" ? this.askItem.can_name : "";
|
|
this.cat_id_name = this.type === "add" ? this.askItem.can_name : "";
|
|
|
|
|
|
- this.brand_name = this.type === "add" ? this.askItem.brand : "";
|
|
|
|
- this.unit_name = this.type === "add" ? this.askItem.unit_name : "";
|
|
|
|
|
|
+ this.brand_name =""
|
|
|
|
+ // this.type === "add" ? this.askItem.brand : "";
|
|
|
|
+ this.unit_name = ""
|
|
|
|
+ //this.type === "add" ? this.askItem.unit_name : "";
|
|
this.ruleForm = {
|
|
this.ruleForm = {
|
|
infoNo: this.id || "",
|
|
infoNo: this.id || "",
|
|
cat_id: this.type === "add" ? [this.askItem.cat_id] : [],
|
|
cat_id: this.type === "add" ? [this.askItem.cat_id] : [],
|
|
@@ -882,11 +891,12 @@ export default {
|
|
expire_day: "0", //有效期
|
|
expire_day: "0", //有效期
|
|
delivery_day: "0", //物流时间
|
|
delivery_day: "0", //物流时间
|
|
work_day: "0", //生产工期
|
|
work_day: "0", //生产工期
|
|
- brandid:
|
|
|
|
- this.type === "add" && this.askItem.brand_id
|
|
|
|
- ? [this.askItem.brand_id]
|
|
|
|
- : [],
|
|
|
|
- unit_id: this.type === "add" ? [this.askItem.unit] : [],
|
|
|
|
|
|
+ brandid:[],
|
|
|
|
+ // this.type === "add" && this.askItem.brand_id
|
|
|
|
+ // ? [this.askItem.brand_id]
|
|
|
|
+ // : [],
|
|
|
|
+ unit_id: [],
|
|
|
|
+ //this.type === "add" ? [this.askItem.unit] : [],
|
|
weight: this.type === "add" ? this.askItem.total_weight : "0.000",
|
|
weight: this.type === "add" ? this.askItem.total_weight : "0.000",
|
|
tax: "",
|
|
tax: "",
|
|
supply_area: "",
|
|
supply_area: "",
|
|
@@ -957,6 +967,7 @@ export default {
|
|
this.is_noble = pid === "6";
|
|
this.is_noble = pid === "6";
|
|
this.$refs.ruleForm.validateField("cat_id");
|
|
this.$refs.ruleForm.validateField("cat_id");
|
|
this.setrules();
|
|
this.setrules();
|
|
|
|
+ this.ruleForm.nake_fee = "0";
|
|
},
|
|
},
|
|
setrules() {
|
|
setrules() {
|
|
let list = [
|
|
let list = [
|