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

save

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