Commit 41534e2d authored by 黄奎's avatar 黄奎

页面修改

parent b9bc2a6d
......@@ -53,6 +53,7 @@
ReturnArriveCityId: 0, //返回抵达城市
CustomerName: "", //客户名称
TeamType: 0, //团队类型
TravelState:1,//团控状态(1-草稿,2-待审核,3-审核通过,4-审核拒绝,5已撤销)
},
dayCostPriceList: [], //报价列表
isSubmit: true,
......@@ -131,7 +132,7 @@
this.$refs["QuotationPrice"].submitForm(type);
},
//保存数据
SaveData() {
SaveData(type) {
var currencyNumList = [];
if (this.CurrencyNumberListExt != null && this.CurrencyNumberListExt.length > 0) {
this.CurrencyNumberListExt.forEach((item, index) => {
......@@ -140,6 +141,8 @@
});
});
}
this.postData.TravelState=type;
console.log("this.postData",this.postData);
var nObj = {
config: this.postData,
dayCostPriceList: this.dayCostPriceList,
......@@ -192,7 +195,6 @@
res => {
if (res.data.resultCode == 1) {
var tempData = res.data.data;
console.log("tempData", tempData);
if (tempData.ID && tempData.ID > 0) {
this.postData.ID = tempData.ID;
}
......
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