Commit ff8c578c authored by zhengke's avatar zhengke

修改报价

parent 4b95f4ac
......@@ -740,6 +740,16 @@
this.queryMsg.Money = "";
this.shortPeopleNumber();
},
//删除币种
DeleteCurrency(index) {
this.CostCurrencyList.splice(index, 1);
},
//删除人数
DeletePNumber(index) {
this.CostNumberList.splice(index, 1);
},
//人数排序
shortPeopleNumber() {
this.CurrencyNumberListExt.forEach(x => {
......@@ -844,7 +854,6 @@
watch: {
CostNumberList: {
handler: function (val, oldVal) {
console.log("111");
this.getchange()
},
deep: true
......
<template>
<div class="DirectQuotation clearfix">
<div class="DirectQuotation clearfix" v-loading="loading">
<DirectQuotation ref="QuotationPrice" :postConfig="postData" :dayCostPrice="dayCostPriceList"
:otherPrice="otherPrice" :teamPrice="teamPrice" :LineList="LineList" :CostCurrencyList="CostCurrencyList"
:CostNumberList="CostNumberList" :CurrencyNumberListExt="CurrencyNumberListExt"></DirectQuotation>
......@@ -113,6 +113,7 @@
ContractUrl: "", //合同地址
},
LineList: [], //线路列表
loading:false
};
},
methods: {
......@@ -139,10 +140,11 @@
CostNumberList: this.CostNumberList,
CurrencyNumberListExt: currencyNumList
};
this.loading=true;
this.apipost(
"travel_post_SetConfigOffer_V2", nObj,
res => {
this.loading=false;
if (res.data.resultCode == 1) {
this.Success(res.data.message);
this.goUrl('newQuotation');
......
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