|
@@ -17,11 +17,12 @@
|
|
|
<!-- 贵金属重量*供应商采购金价 + 工艺费*贵金属重量+加标费+包装费+证书费+成本裸价+运费+其他费用=成本合计 -->
|
|
|
<!-- 贵金属重量*供应商采购金价 + 工艺费*贵金属重量+加标费+包装费+证书费+成本裸价+运费=成本合计 -->
|
|
|
<!-- ps:没有其他费用-->
|
|
|
- <!-- (ruleForm.noble_weight*askItem.gold_price)+ (ruleForm.cost_fee*ruleForm.noble_weight)
|
|
|
+ <!-- (ruleForm.noble_weight*newGoldPrice)+ (ruleForm.cost_fee*ruleForm.noble_weight)
|
|
|
+ ruleForm.mark_fee + ruleForm.pakge_fee + ruleForm.cert_fee + ruleForm.nake_fee + ruleForm.delivery_fee-->
|
|
|
<!-- 乘法精度函数调用在mounted(初始调用),number_change函数(改变调用),如果放在dom层初始值时undifind会报错 r1,r2-->
|
|
|
<span
|
|
|
- >成本合计:<span>
|
|
|
+ > 成本合计:<span>
|
|
|
+
|
|
|
{{
|
|
|
accAdd(
|
|
|
r1,
|
|
@@ -672,6 +673,9 @@ export default {
|
|
|
activeName: "1",
|
|
|
loading: true,
|
|
|
|
|
|
+ //新实时金价
|
|
|
+ newGoldPrice:0,
|
|
|
+
|
|
|
options1: options1,
|
|
|
options2: options2,
|
|
|
options3: options3,
|
|
@@ -692,11 +696,7 @@ export default {
|
|
|
mounted() {
|
|
|
this.initForm();
|
|
|
|
|
|
- this.$nextTick(()=>{
|
|
|
- this.r1 = this.accMul(this.ruleForm.noble_weight,this.askItem.gold_price)
|
|
|
- this.r2 = this.accMul(this.ruleForm.cost_fee,this.ruleForm.noble_weight)
|
|
|
- console.log(this.r1,this.r2)
|
|
|
- })
|
|
|
+ this.computedCost()
|
|
|
|
|
|
|
|
|
},
|
|
@@ -798,13 +798,20 @@ accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
this.loading = false;
|
|
|
},
|
|
|
|
|
|
+ computedCost(){
|
|
|
+ let goldPrice = this.newGoldPrice || this.askItem.gold_price
|
|
|
+ console.log(goldPrice,"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbb")
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.r1 = this.accMul(this.ruleForm.noble_weight,goldPrice)
|
|
|
+ this.r2 = this.accMul(this.ruleForm.cost_fee,this.ruleForm.noble_weight)
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
number_change(e, key) {
|
|
|
this.ruleForm[key] = e + "" || "0";
|
|
|
this.$refs.ruleForm.validateField(key);
|
|
|
- this.$nextTick(()=>{
|
|
|
- this.r1 = this.accMul(this.ruleForm.noble_weight,this.askItem.gold_price)
|
|
|
- this.r2 = this.accMul(this.ruleForm.cost_fee,this.ruleForm.noble_weight)
|
|
|
- })
|
|
|
+ this.computedCost()
|
|
|
+
|
|
|
},
|
|
|
async initData() {
|
|
|
this.loading = true;
|
|
@@ -1127,8 +1134,15 @@ accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
this.$refs.ruleForm.validateField("unit_id");
|
|
|
},
|
|
|
//金属种类选择
|
|
|
- metal_idsearchChange(e) {
|
|
|
- console.log(e);
|
|
|
+ //需修改,未改完
|
|
|
+ async metal_idsearchChange(e) {
|
|
|
+
|
|
|
+ // console.log()
|
|
|
+ if(!e.id){
|
|
|
+ this.newGoldPrice = 0;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ this.loading = true;
|
|
|
const { id, code, label } = e;
|
|
|
if (id) {
|
|
|
this.ruleForm.metal_id = id;
|
|
@@ -1136,6 +1150,19 @@ accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
this.ruleForm.metal_id = "";
|
|
|
}
|
|
|
this.$refs.ruleForm.validateField("metal_id");
|
|
|
+
|
|
|
+
|
|
|
+ const res = await asyncRequest.golpricelast({type:e.id});
|
|
|
+ if (res && res.code === 0) {
|
|
|
+ this.newGoldPrice = res.data[0].price;
|
|
|
+ this.computedCost()
|
|
|
+ console.log(res.data[0].price)
|
|
|
+ } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
+ await this.logout();
|
|
|
+ } else {
|
|
|
+
|
|
|
+ }
|
|
|
+ this.loading = false;
|
|
|
},
|
|
|
|
|
|
//仓库省市区
|