Commit 97816936 authored by youjie's avatar youjie

no message

parent 5784aba7
......@@ -2543,7 +2543,7 @@
},
(res) => {
if (res.data.resultCode == 1) {
this.minPrice = res.data.data.LowDeposit;
this.minPrice = res.data.data&&res.data.data.LowDeposit;
}
},
(err) => {}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -38,7 +38,7 @@
<!-- 客户类型 -->
<el-form-item :label="$t('fnc.khleixing')" prop="CustomerType">
<el-select v-model="addMsg.CustomerType" filterable :placeholder="$t('pub.pleaseSel')" @change="
resetMsg(addMsg.CustomerType), getTypePrice();
resetMsg(addMsg.CustomerType); getTypePrice();
resetSelect();
getClientSource();
getCustomer();
......@@ -81,8 +81,8 @@
">
<el-select v-model="addMsg.CustomerId" filterable :placeholder="$t('pub.pleaseSel')"
@change="changeCustomer">
<el-option v-for="item in customerList" :label="item.customerName + '-' + item.contact"
:value="item.customerId" :key="item.customerId">
<el-option v-for="(item,index) in customerList" :label="item.customerName + '-' + item.contact"
:value="item.customerId" :key="index">
</el-option>
</el-select>
</el-form-item>
......@@ -1488,8 +1488,14 @@
Number(this.addMsg.AirticketNum);
this.addMsg.IsChildrenTour = this.priceObj.IsSupportChildren;
this.addMsg.IsBirdDiscount = this.priceObj.IsBirdDiscount;
this.apipost(
"sellorder_post_SetTravelTeamOrderForB2B",
let url
if(this.PProductType==1){
url = 'sellorder_post_SetOrderInfo_02'
}
if(this.PProductType==2){
url = 'sellorder_post_SetTravelTeamOrderForB2B'
}
this.apipost(url,
this.addMsg,
(res) => {
if (res.data.resultCode == 1) {
......
......@@ -3221,7 +3221,7 @@ export default {
{ // 销售 产品查询
path: '/productQuery',
name: 'productQuery',
component: resolve => require(['@/components/SalesModule/productQuery'], resolve),
component: resolve => require(['@/components/SalesModule/productQuery2'], resolve),
meta: {
title: '产品查询'
},
......
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