|
@@ -233,6 +233,7 @@
|
|
|
<el-form-item label="贵金属种类" prop="noble_metal" label-width="95px">
|
|
|
<search-metal-kind
|
|
|
:value="ruleForm.noble_metal"
|
|
|
+ :names="nobleMetalNames"
|
|
|
:disabled="
|
|
|
type === 'view' || type === 'editBase' || type === 'editCoin'
|
|
|
"
|
|
@@ -2057,7 +2058,8 @@ export default {
|
|
|
is_support_stock,
|
|
|
is_combind,
|
|
|
combind_list,
|
|
|
- create_source
|
|
|
+ create_source,
|
|
|
+ noble_name
|
|
|
} = this.sitem;
|
|
|
|
|
|
this.createSource = create_source
|
|
@@ -2216,6 +2218,10 @@ export default {
|
|
|
stock_moq: stock_moq || "0",
|
|
|
is_combind: is_combind || ""
|
|
|
};
|
|
|
+
|
|
|
+
|
|
|
+ this.nobleMetalNames = noble_name;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
if (this.type === "add") this.ruleForm.company_id = this.currentCompany;
|
|
@@ -2438,9 +2444,10 @@ export default {
|
|
|
},
|
|
|
//贵金属种类选择
|
|
|
async noble_metalsearchChange(e) {
|
|
|
+ console.log(e);
|
|
|
const { id, code, label } = e;
|
|
|
this.ruleForm.noble_metal = id || "";
|
|
|
- tthis.$refs.ruleForm && his.$refs.ruleForm.validateField("noble_metal");
|
|
|
+ this.$refs.ruleForm && this.$refs.ruleForm.validateField("noble_metal");
|
|
|
await this.get_all_fee();
|
|
|
},
|
|
|
async areaChange(e, key) {
|