Commit 41149810 authored by huangyuanyuan's avatar huangyuanyuan

机票订单

parent 86abd42d
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
"vuex": "^3.0.1" "vuex": "^3.0.1"
}, },
"devDependencies": { "devDependencies": {
"@vue/cli-plugin-babel": "^3.0.4", "@vue/cli-plugin-babel": "^3.4.1",
"@vue/cli-plugin-pwa": "^3.0.4", "@vue/cli-plugin-pwa": "^3.0.4",
"@vue/cli-service": "^3.0.4", "@vue/cli-service": "^3.0.4",
"stylus": "^0.54.5", "stylus": "^0.54.5",
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<el-col :span="5"> <el-col :span="5">
<div class="city" style="margin-bottom:15px"> <div class="city" style="margin-bottom:15px">
<span>出发地 | </span> <span>出发地 | </span>
<el-select style="width:75%" v-model="choose_info.departure_city" filterable placeholder="请选择"> <el-select style="width:70%" v-model="choose_info.departure_city" filterable placeholder="请选择">
<el-option :value=0 label="不限"></el-option> <el-option :value=0 label="不限"></el-option>
<el-option <el-option
v-for="item in cfd" v-for="item in cfd"
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
</div> </div>
<div class="city"> <div class="city">
<span>目的地 | </span> <span>目的地 | </span>
<el-select style="width:75%" v-model="choose_info.arrival_city" filterable placeholder="请选择"> <el-select style="width:70%" v-model="choose_info.arrival_city" filterable placeholder="请选择">
<el-option :value=0 label="不限"></el-option> <el-option :value=0 label="不限"></el-option>
<el-option <el-option
v-for="item in cfd" v-for="item in cfd"
......
...@@ -139,6 +139,13 @@ ...@@ -139,6 +139,13 @@
<el-button @click="ConfirmedPersonNum" size="mini" style="background:#EE4454;color:#fff">确认</el-button> <el-button @click="ConfirmedPersonNum" size="mini" style="background:#EE4454;color:#fff">确认</el-button>
<el-button size="mini" style="background:#EE4454;color:#fff">取消</el-button> <el-button size="mini" style="background:#EE4454;color:#fff">取消</el-button>
</div> </div>
<div style="position:absolute;right:5px">
<span>专员:</span>
<el-select size="small" v-model="personNum.enterID" filterable placeholder="请选择专员">
<el-option v-for="(item,key) in SellInfoList" :key="key" :label="item.EmName" :value="item.EmployeeId"></el-option>
</el-select>
</div>
</div> </div>
<el-form :model="personNum" ref="personNum" label-width="100px" class="demo-ruleForm"> <el-form :model="personNum" ref="personNum" label-width="100px" class="demo-ruleForm">
...@@ -249,11 +256,13 @@ export default { ...@@ -249,11 +256,13 @@ export default {
userInfo:this.getLocalStorage(), userInfo:this.getLocalStorage(),
customer:{}, customer:{},
countroylist:[], countroylist:[],
SellInfoList:[],
} }
}, },
mounted () { mounted () {
this.GetDes(); this.GetDes();
this.GetCountroy() this.GetCountroy()
this.SellInfo();
}, },
methods: { methods: {
// 国籍 // 国籍
...@@ -273,7 +282,7 @@ export default { ...@@ -273,7 +282,7 @@ export default {
//获取订单详情 //获取订单详情
GetDes(){ GetDes(){
this.apiJavaPost('/api/dmc/airticket/getB2BAirticketInfo',{AirTicketId:this.AirTicketId},res=>{ this.apiJavaPost('/api/dmc/airticket/getB2BAirticketInfo',{AirTicketId:this.AirTicketId},res=>{
console.log("订单",res) // console.log("订单",res)
this.getlistSigel=res.data.data; this.getlistSigel=res.data.data;
this.getlistSigel.synum=this.getlistSigel.airTicketScatterNum-this.getlistSigel.useScatterNum; this.getlistSigel.synum=this.getlistSigel.airTicketScatterNum-this.getlistSigel.useScatterNum;
...@@ -398,6 +407,22 @@ export default { ...@@ -398,6 +407,22 @@ export default {
}); });
}, },
// 服务专员
SellInfo(){
this.apipost(
"sell_get_GetCustomerToSellInfo", {},
res => {
console.log(res)
if (res.data.resultCode == 1) {
this.SellInfoList = res.data.data;
this.personNum.enterID=this.SellInfoList[0].EmployeeId;
}
},
err => {
}
);
},
} }
} }
...@@ -561,6 +586,7 @@ font-size: 14px; ...@@ -561,6 +586,7 @@ font-size: 14px;
display: flex; display: flex;
justify-content: flex-start; justify-content: flex-start;
font-size: 14px; font-size: 14px;
position: relative;
} }
.ticket_list .time{ .ticket_list .time{
color: #333333; color: #333333;
......
This diff is collapsed.
...@@ -226,11 +226,9 @@ export default { ...@@ -226,11 +226,9 @@ export default {
clearInterval(this.timer); clearInterval(this.timer);
let numall =parseInt(this.Commoditydetails.timeMillisecond / 1000); let numall =parseInt(this.Commoditydetails.timeMillisecond / 1000);
// let numall =10;
this.timer = setInterval(() => { this.timer = setInterval(() => {
numall--; numall--;
if (numall <= 0) { if (numall <= 0) {
console.log(111);
clearInterval(this.timer); clearInterval(this.timer);
this.order_exit='2'; this.order_exit='2';
this.order_exit_info="订单支付超时,请重新下单!" this.order_exit_info="订单支付超时,请重新下单!"
......
...@@ -226,7 +226,7 @@ export default { ...@@ -226,7 +226,7 @@ export default {
.list_content p{ .list_content p{
padding:4px 0; padding:4px 0;
} }
p{ .list_content p{
margin:0; margin:0;
} }
.list_content .time{ .list_content .time{
...@@ -350,7 +350,7 @@ p{ ...@@ -350,7 +350,7 @@ p{
height:175px; height:175px;
padding:10px; padding:10px;
bottom: -10px; bottom: -10px;
left: 16%; left: 18%;
border-radius: 4px; border-radius: 4px;
box-sizing: border-box; box-sizing: border-box;
} }
......
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
<div> <div>
<div class="city" style="width:220px;display:inline-block;"> <div class="city" style="width:220px;display:inline-block;">
<span>舱位选择 | </span> <span>舱位选择 | </span>
<el-select style="width:68%" v-model="choose_info.freightSpace" placeholder="请选择"> <el-select style="width:65%" v-model="choose_info.freightSpace" placeholder="请选择">
<el-option :value="zero" label="不限"></el-option> <el-option :value="zero" label="不限"></el-option>
<el-option <el-option
v-for="item in cawei" v-for="item in cawei"
...@@ -802,9 +802,14 @@ li{ ...@@ -802,9 +802,14 @@ li{
border-right:1px solid #dddddd; border-right:1px solid #dddddd;
} }
.li p{ .li p{
padding: 6px 0; margin:0;
padding:0;
} }
.second p{
margin:0;
padding:0;
}
.date_list>div{ .date_list>div{
text-align: center; text-align: center;
...@@ -846,10 +851,6 @@ li{ ...@@ -846,10 +851,6 @@ li{
font-weight:400; font-weight:400;
color:rgba(51,51,51,1); color:rgba(51,51,51,1);
} }
p{
margin: 0;
padding: 0;
}
.list{ .list{
padding:10px 6px; padding:10px 6px;
box-sizing: border-box; box-sizing: border-box;
......
...@@ -13,8 +13,9 @@ export default { ...@@ -13,8 +13,9 @@ export default {
Vue.prototype.domainManager = function() { Vue.prototype.domainManager = function() {
// var domainUrl = "http://test_reborn.oytour.com";//主域名 // var domainUrl = "http://test_reborn.oytour.com";//主域名
//var domainUrl = "http://reborn.oytour.com"; //主域名 //var domainUrl = "http://reborn.oytour.com"; //主域名
// var domainUrl = "http://192.168.2.214:8082"//主域名 var domainUrl = "http://192.168.2.16:8083"//主域名
let domainUrl = "https://reborn.oytour.com"; //刘东主域名 // let domainUrl = "https://reborn.oytour.com"; //刘东主域名
// let domainUrl = "https://reborn.oytour.com";
if (this.isOnline()) { if (this.isOnline()) {
if(window.location.host.indexOf('viitto.com')!=-1) if(window.location.host.indexOf('viitto.com')!=-1)
domainUrl = "http://test.viitto.com" domainUrl = "http://test.viitto.com"
......
...@@ -133,7 +133,16 @@ export default new Router({ ...@@ -133,7 +133,16 @@ export default new Router({
meta: { meta: {
title: "发票信息" title: "发票信息"
} }
} },
{
path: "/AirlineTicketOrder",
name: "AirlineTicketOrder",
component: resolve =>
require(["@/components/Ticket/AirlineTicketOrder"], resolve),
meta: {
title: "机票订单"
}
},
] ]
}, },
...@@ -173,24 +182,26 @@ export default new Router({ ...@@ -173,24 +182,26 @@ export default new Router({
title: "支付" title: "支付"
} }
}, },
{ {
path: "/AirlineTicketOrder", path: "/EditTicketOrder/:id",
name: "AirlineTicketOrder", name: "EditTicketOrder",
component: resolve => component: resolve =>
require(["@/components/Ticket/AirlineTicketOrder"], resolve), require(["@/components/Ticket/EditTicketOrder"], resolve),
meta: { meta: {
title: "机票订单" title: "修改机票订单"
} }
}, },
{ {
path: "/EditTicketOrder/:id", path: "/OrderDetails/:id",
name: "EditTicketOrder", name: "OrderDetails",
component: resolve => component: resolve =>
require(["@/components/Ticket/EditTicketOrder"], resolve), require(["@/components/Ticket/OrderDetails"], 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