Commit a26a36c0 authored by youjie's avatar youjie

no message

parent 3e3c5594
......@@ -170,8 +170,8 @@
</el-table-column>
<template v-if="pagesTitle == '审核'||pagesTitle == '申请'">
<el-table-column
prop="Money"
label="申请金额"
prop="ApplyForMoney"
label="申请改价金额"
min-width="100"
show-overflow-tooltip
>
......@@ -354,7 +354,7 @@
<el-col :span="4">
<el-form-item label="订单应收总金额">
<span rows="6">
{{ changePriceMsg.Money2 }}
{{ changePriceMsg.PreferPrice }}
</span>
</el-form-item></el-col
>
......@@ -444,7 +444,7 @@ export default {
ApplyForState: 1,
setPlatDialog: false, //是否显示弹出框
outerVisible: false,
outerVisible2: false
outerVisible2: false,
},
msg: {
OrderId: "",
......@@ -614,7 +614,17 @@ export default {
this.changePriceMsg.setPlatDialog = false;
if (!type || type == 1) this.changePriceMsg.outerVisible = true;
if (type == 2 || type == 3) this.changePriceMsg.outerVisible2 = true;
this.getGetOrderChangePriceDetai(item);
if(item.OrderChangePriceId){
this.getGetOrderChangePriceDetai(item);
}else{
this.changePriceMsg.Money = item.Money;
this.changePriceMsg.ApplyForState = 1;
this.changePriceMsg.ApplyForReason = '';
this.changePriceMsg.PreferPrice = item.Money;
this.changePriceMsg.RefuseReason = '';
}
},
getGetOrderChangePriceDetai(item) {
this.apipost(
......@@ -625,11 +635,10 @@ export default {
res => {
if (res.data.resultCode == 1) {
let data = res.data.data;
this.changePriceMsg.Money2 = item.Money;
this.changePriceMsg.Money = data.Money;
this.changePriceMsg.ApplyForState = data.ApplyForState;
this.changePriceMsg.ApplyForReason = data.ApplyForReason;
this.changePriceMsg.PreferPrice = data.ApplyForMoney;
this.changePriceMsg.PreferPrice = item.Money;//data.ApplyForMoney
this.changePriceMsg.RefuseReason = data.RefuseReason;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment