Commit 97d48595 authored by 沈良进's avatar 沈良进
parents 9173132a 5b83e85b
......@@ -2,6 +2,9 @@
.groupTourOrder_count_item>p>span{
margin: 0;
}
.color_red_order{
color: red;
}
.HT_total{
display: flex;
flex-direction: column;
......@@ -63,7 +66,7 @@
</style>
<template>
<div class="HotelWorkList" @click="showWarningSearch=false">
<div class="HotelWorkList">
<div class="query-box HotelWorkInput" style="border-bottom: none;">
<ul>
<!-- <li>
......@@ -168,29 +171,30 @@
</el-date-picker>
</span>
</li>
<li>
<span>
<em @click.stop="showWarningSearch=true"
style="margin-top: 10px;cursor: pointer;"> 高级查询 <i class="el-icon-caret-bottom"></i></em>
<el-popover width="300" v-model="showWarningSearch" trigger="click">
<div>
<div class="TC_queryTitle">订单高级查询</div>
<div class="clearfix">
<div class="TC_leftSearch">
<div>
<span>选择线路</span>
<el-select v-model='msg.LineId' class="w150">
<el-option :value="0" label="不限"></el-option>
<el-option v-for='item in LineList'
:label='item.LineName'
:value='item.LineID'
:key='item.LineID'>
</el-option>
</el-select>
</div>
<div>
<span>出发时间</span>
<el-date-picker
<li style="line-height: 30px; padding-left: 30px;">
<el-popover width="350" trigger="click">
<div class="groupSuperSearchLayer">
<p style="padding-bottom: 10px;">订单高级查询</p>
</div>
<table class="groupSuperSearchLayerTable" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="padding: 5px 0">
<span style="width: 100px;display: inline-block;">线路</span>
<el-select v-model='msg.LineId' style="width: 210px;">
<el-option :value="0" label="不限"></el-option>
<el-option v-for='item in LineList'
:label='item.LineName'
:value='item.LineID'
:key='item.LineID'>
</el-option>
</el-select>
</td>
</tr>
<tr>
<td style="padding: 5px 0">
<span style="width: 100px;display: inline-block;">出发日期</span>
<el-date-picker
style="height: 34px;width: 210px;"
value-format="yyyy-MM-dd"
v-model="DatelistUse"
......@@ -199,10 +203,13 @@
:start-placeholder="$t('OrderList.star')"
:end-placeholder="$t('OrderList.end')" @change="getDatesUse">
</el-date-picker>
</div>
<div>
<span>完结时间</span>
<el-date-picker
</td>
</tr>
<tr>
<td style="padding: 5px 0">
<span style="width: 100px;display: inline-block;">完结日期</span>
<el-date-picker
style="height: 34px;width: 210px;"
value-format="yyyy-MM-dd"
v-model="Datelist"
......@@ -211,19 +218,18 @@
:start-placeholder="$t('OrderList.star')"
:end-placeholder="$t('OrderList.end')" @change="getDates">
</el-date-picker>
</div>
</div>
<div style="text-align: right;margin-top: 10px;">
<button class="normalBtn TC_SearchBtn"
@click.stop="GetList(),showWarningSearch=false">{{$t('pub.searchBtn')}}
</button>
</div>
</div>
</div>
</el-popover>
</span>
</td>
</tr>
<tr>
<td colspan="4">
<input type="button" class="normalBtn" :value="$t('pub.searchBtn')"
@click="GetList();showWarningSearch=false" style="width: 310px!important;" />
</td>
</tr>
</table>
<span slot="reference" style="cursor: pointer;">{{$t('visa.v_gjchaxun')}}<i
class="el-icon-caret-bottom"></i></span>
</el-popover>
</li>
<li>
<input type="button" class="normalBtn" :value="$t('pub.searchBtn')" @click.stop="msg.pageIndex=1,currentPage=1,GetList()" />
......@@ -240,26 +246,27 @@
<span>{{item.CurrencyName}}</span>
</div>
<p>
<span class="color_red_order">应收:
<!-- groupTourOrder_count_green -->
<span>应收:
{{item.Money.toFixed(2)}}
</span>
<span class="groupTourOrder_count_green">实收:
<span>实收:
{{item.Income.toFixed(2)}}
</span>
<span class="color_red_order">退款:
<span>退款:
{{item.Refund.toFixed(2)}}
</span>
<span class="color_red_order">手续费:
<span>手续费:
{{item.PlatformTax.toFixed(2)}}
</span>
<span class="color_red_order">成本:
<span>成本:
{{item.CostMoney.toFixed(2)}}
</span>
<span class="color_red_order"
:style="{'color':item.DueInMoney>0?'red':''}">待收:
<span
:class="{'color_red_order':item.DueInMoney>0}">待收:
<span>{{item.DueInMoney.toFixed(2)}}</span>
</span>
<span class="color_red_order">报名数:
<span>报名数:
{{item.GuestNum}}
</span>
</p>
......@@ -576,11 +583,11 @@
if(this.Title!='销售'){
this.getEmployee()
}
this.msg.StartTime = this.getBeforeDate(31, new Date())
this.msg.EndTime = this.getBeforeDate(0, new Date())
this.msg.StartTime = this.getBeforeDate(0, new Date())
this.msg.EndTime = this.getBeforeDate(0, new Date())
this.DatelistBM = [new Date(this.msg.StartTime),new Date()]
// this.GetOrderStatusEnumList()
this.GetTicketStatusEnumList()
// this.GetOrderStatusEnumList()//订单状态
// this.GetTicketStatusEnumList()//出票状态
this.GetOrderTypeEnumList()
this.getLineList()
this.Datelist = this.getyMDOne()
......@@ -596,8 +603,4 @@
};
</script>
<style>
</style>
\ No newline at end of file
<style>
</style>
<template>
<div>
<allList :pagesTitle="pagesTitle" :dataObj="dataObj"></allList>
</div>
</template>
<script>
import allList from './components/allList.vue';
export default {
components: { allList },
data() {
return {
pagesTitle: 'OP',
dataObj:{
OrderId: '',
}
};
},
watch: {
pagesTitle(val,oldval){
},
},
methods: {
},
created() {
},
mounted() {
if(this.$route.query.OrderId){
this.dataObj.OrderId = this.$route.query.OrderId
}
},
};
</script>
<style>
</style>
This diff is collapsed.
......@@ -3314,6 +3314,14 @@ export default {
title: '今日订单'
},
},
{ //OP 今日订单
path: '/erpCustomerOrderDayOP',
name: 'erpCustomerOrderDayOP',
component: resolve => require(['@/components/myOrdersAllType/erpCustomerOrderDayOP'], resolve),
meta: {
title: '今日订单'
},
},
{ // 销售 散卖机票订单
path: '/BulkAirTicketOrders',
name: 'BulkAirTicketOrders',
......
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