Commit 5058bfb6 authored by 沈良进's avatar 沈良进

save

parent d7ecfc2c
<style> <style>
@import "../../assets/css/newTravelManager.css"; /* @import "../../assets/css/newTravelManager.css"; */
.productQuerySearch { .productQuerySearch {
width: 100%; width: 100%;
...@@ -506,10 +506,17 @@ ...@@ -506,10 +506,17 @@
.PQ_HotelPop table th { .PQ_HotelPop table th {
text-align: center; text-align: center;
} }
.buy-box {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #fff;
}
</style> </style>
<template> <template>
<div class="flexOne"> <div class="flexOne">
<div @click="showBuy = true"><el-button>下单</el-button></div>
<!-- 查询条件 --> <!-- 查询条件 -->
<div class="productQuerySearch" v-if="!TCIDList"> <div class="productQuerySearch" v-if="!TCIDList">
<ul> <ul>
...@@ -1233,18 +1240,23 @@ ...@@ -1233,18 +1240,23 @@
<tripDownLoadCommon ref="tripDownLoadCommon" :tripObj="tripObj" @headCallBack="hideTripDown" :downType="1"> <tripDownLoadCommon ref="tripDownLoadCommon" :tripObj="tripObj" @headCallBack="hideTripDown" :downType="1">
</tripDownLoadCommon> </tripDownLoadCommon>
</el-dialog> </el-dialog>
<div class="buy-box" v-show="showBuy">
<buyGroup @change="changeBuy"></buyGroup>
</div>
</div> </div>
</template> </template>
<script> <script>
import commonTeamInfo from "../commonPage/commonTeamInfo.vue"; import commonTeamInfo from "../../commonPage/commonTeamInfo.vue";
import tripDownLoadCommon from "../commonPage/TripDownLoadCommon.vue"; import tripDownLoadCommon from "../../commonPage/TripDownLoadCommon.vue";
import carousel from "../commonPage/carousel.vue"; import carousel from "../../commonPage/carousel.vue";
import commonHotelInfo from "../commonPage/commonHotelInfo.vue"; import commonHotelInfo from "../../commonPage/commonHotelInfo.vue";
import buyGroup from "../../../pubComponents/buyGroup.vue";
export default { export default {
data() { data() {
return { return {
showBuy: false,
pickerOptions0: { pickerOptions0: {
disabledDate: (time) => { disabledDate: (time) => {
let starTime = new Date(this.starTime); let starTime = new Date(this.starTime);
...@@ -1359,7 +1371,6 @@ ...@@ -1359,7 +1371,6 @@
RateOnDay: "-1", RateOnDay: "-1",
RateOn: "-1", RateOn: "-1",
}, },
defaultImg: 'this.src="' + require("../../assets/img/bg_z1@2x.png") + '"',
list: [], list: [],
LineList: [], LineList: [],
LineTeamList: [], LineTeamList: [],
...@@ -1417,6 +1428,7 @@ ...@@ -1417,6 +1428,7 @@
tripDownLoadCommon: tripDownLoadCommon, tripDownLoadCommon: tripDownLoadCommon,
carousel: carousel, carousel: carousel,
commonHotelInfo: commonHotelInfo, commonHotelInfo: commonHotelInfo,
buyGroup: buyGroup
}, },
filters: { filters: {
priceFormat(value) { priceFormat(value) {
...@@ -1455,6 +1467,11 @@ ...@@ -1455,6 +1467,11 @@
}, },
}, },
methods: { methods: {
changeBuy(info) {
if(!info) {
this.showBuy = false
}
},
GetSupperOrderEditAuth() { GetSupperOrderEditAuth() {
var actionCode = this.$AuthCode.S_Travel_Share; var actionCode = this.$AuthCode.S_Travel_Share;
this.CheckUserAuth(actionCode, (res) => { this.CheckUserAuth(actionCode, (res) => {
......
This diff is collapsed.
...@@ -2298,6 +2298,13 @@ export default { ...@@ -2298,6 +2298,13 @@ export default {
meta: { meta: {
title: '包机信息' title: '包机信息'
}, },
}, {
path: '/priceGroup', //订单列表
name: 'priceGroup',
component: resolve => require(['@/components/TravelManager/TravelTeam/priceGroup'], resolve),
meta: {
title: '包机列表'
},
}, { }, {
path: '/TravelTeam', //包机列表 path: '/TravelTeam', //包机列表
name: 'TravelTeam', name: 'TravelTeam',
......
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