Commit 97816936 authored by youjie's avatar youjie

no message

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