Commit 51b1aab7 authored by 黄奎's avatar 黄奎

11

parent 614c2ce3
...@@ -707,7 +707,7 @@ ...@@ -707,7 +707,7 @@
watch: { watch: {
postConfig: { postConfig: {
handler: function (val, oldVal) { handler: function (val, oldVal) {
this.dayCostPriceList = this.postConfig.dayCostPriceList;
this.getOfferItemObj(1); this.getOfferItemObj(1);
}, },
deep: true deep: true
...@@ -723,12 +723,12 @@ ...@@ -723,12 +723,12 @@
}, },
data() { data() {
return { return {
dayCostPriceList: this.postConfig.dayCostPriceList, dayCostPriceList: [],
otherPrice: {}, otherPrice: {},
teamPrice: {}, teamPrice: {},
CostNumberList: [], CostNumberList: [],
CurrencyNumberListExt: this.postConfig.OfferArray[0].CurrencyNumberListExt, CurrencyNumberListExt: [],
CostCurrencyList: this.postConfig.OfferArray[0].CostCurrencyList, CostCurrencyList: [],
offerDataObj: {}, offerDataObj: {},
//下拉框默认值 //下拉框默认值
defaultSelect: 0, defaultSelect: 0,
...@@ -787,6 +787,12 @@ ...@@ -787,6 +787,12 @@
this.CostNumberList = selectOfferObj.CostNumberList; this.CostNumberList = selectOfferObj.CostNumberList;
this.offerDataObj = selectOfferObj; this.offerDataObj = selectOfferObj;
} }
this.dayCostPriceList = this.postConfig.dayCostPriceList;
if (this.postConfig.OfferArray && this.postConfig.OfferArray.length > 0) {
this.CurrencyNumberListExt = this.postConfig.OfferArray[0].CurrencyNumberListExt;
this.CostCurrencyList = this.postConfig.OfferArray[0].CostCurrencyList;
}
console.log("dayCostPriceList", dayCostPriceList)
this.getchange() this.getchange()
this.getSubMoney(); this.getSubMoney();
return selectOfferObj; return selectOfferObj;
......
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