Commit 28c37b74 authored by 黄奎's avatar 黄奎
parents 63c98c69 4ddc801b
This diff is collapsed.
This diff is collapsed.
...@@ -280,7 +280,7 @@ ...@@ -280,7 +280,7 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="hotelResource clearfix" v-loading="loading"> <div class="hotelResource clearfix" v-loading="loading" style="padding:0 20px;">
<div class="resourceList" v-for="(item,index) in tableData" :key="index"> <div class="resourceList" v-for="(item,index) in tableData" :key="index">
<div class="reTopInfo" :class="{'comCursorUrl':item.URL}" @click="OpenNewUrl(item.URL)"> <div class="reTopInfo" :class="{'comCursorUrl':item.URL}" @click="OpenNewUrl(item.URL)">
<img v-if="!item.PicPath" src="../../assets/img/bg_c3@3x.png"> <img v-if="!item.PicPath" src="../../assets/img/bg_c3@3x.png">
......
...@@ -76,10 +76,10 @@ ...@@ -76,10 +76,10 @@
</ul> </ul>
</div> </div>
<div style="width: 100%;min-height:200px; overflow-x: auto;padding-bottom: 10px; " class="HotelQueryList" <div style="width: 100%;min-height:200px; overflow-x: auto;padding:0 20px; " class="HotelQueryList"
v-loading="loading"> v-loading="loading">
<div class="hotelProductManage2_tableBox" style="margin-bottom:20px;"> <div class="hotelProductManage2_tableBox" style="margin-bottom:20px;">
<span style="color:#000000;background-color: #ff3737;padding:2px 4px;border-radius:5px">红日</span> <span style="color:#fff;background-color: #ff3737;padding:2px 4px;border-radius:5px">红日</span>
<span style="color:#000000;background-color: #ff99cc;padding:2px 4px;border-radius:5px">旺季</span> <span style="color:#000000;background-color: #ff99cc;padding:2px 4px;border-radius:5px">旺季</span>
<span style="color:#000000;background-color: #bcd6ee;padding:2px 4px;border-radius:5px">平季</span> <span style="color:#000000;background-color: #bcd6ee;padding:2px 4px;border-radius:5px">平季</span>
<span style="color:#000000;background-color: #DDDDDD;padding:2px 4px;border-radius:5px">淡季</span> <span style="color:#000000;background-color: #DDDDDD;padding:2px 4px;border-radius:5px">淡季</span>
...@@ -581,6 +581,7 @@ ...@@ -581,6 +581,7 @@
.classHong { .classHong {
background-color: rgb(255, 55, 55); background-color: rgb(255, 55, 55);
color:#fff;
} }
.classWang { .classWang {
......
...@@ -211,7 +211,7 @@ ...@@ -211,7 +211,7 @@
</style> </style>
<template> <template>
<div class="flexOne hotelSalesBoard"> <div class="flexOne hotelSalesBoard" style="padding:0 20px;">
<div class="query-box Plan_Query"> <div class="query-box Plan_Query">
<ul> <ul>
<li> <li>
......
...@@ -29,12 +29,13 @@ ...@@ -29,12 +29,13 @@
<el-input v-model='msg.TCNUM'></el-input> <el-input v-model='msg.TCNUM'></el-input>
</span> </span>
</li> </li>
<li><span><em>日期</em> <li>
<el-date-picker v-model='msg.StartDate' class='w135' value-format="yyyy-MM-dd" type="date" <span>
:picker-options="pickerBeginDateBefore"></el-date-picker> <em>酒店</em>
- <el-select v-model="msg.HotelId" :placeholder="$t('pub.pleaseSel')" filterable>
<el-date-picker v-model='msg.EndDate' class='w135' value-format="yyyy-MM-dd" type="date" <el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option>
:picker-options="pickerBeginDateAfter"></el-date-picker> <el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select>
</span> </span>
</li> </li>
<li><span> <li><span>
...@@ -86,11 +87,12 @@ ...@@ -86,11 +87,12 @@
</li> </li>
<li> <li>
<span> <span>
<em>酒店</em> <em>日期</em>
<el-select v-model="msg.HotelId" :placeholder="$t('pub.pleaseSel')" filterable> <el-date-picker v-model='msg.StartDate' class='w135' value-format="yyyy-MM-dd" type="date"
<el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option> :picker-options="pickerBeginDateBefore"></el-date-picker>
<el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> -
</el-select> <el-date-picker v-model='msg.EndDate' class='w135' value-format="yyyy-MM-dd" type="date"
:picker-options="pickerBeginDateAfter"></el-date-picker>
</span> </span>
</li> </li>
<li> <li>
...@@ -100,7 +102,7 @@ ...@@ -100,7 +102,7 @@
</ul> </ul>
</div> </div>
<div style="width: 100%; overflow-x: auto;padding-bottom: 10px; " class="ownScrollbarStyle"> <div style="width: 100%; overflow-x: auto;padding-bottom: 10px; " class="ownScrollbarStyle">
<div style="font-size:12px;padding:2px 4px 3px 4px; color:red">注意事项:每次导出数据最好不要超过一个月。</div> <div style="font-size:12px;padding:2px 4px 3px 20px; color:red">注意事项:每次导出数据最好不要超过一个月。</div>
<table border="0" cellspacing="1" cellpadding="0" class="roomQuery_SupplierTable" v-loading='loading'> <table border="0" cellspacing="1" cellpadding="0" class="roomQuery_SupplierTable" v-loading='loading'>
<tr> <tr>
<th width="100">序号</th> <th width="100">序号</th>
...@@ -490,8 +492,14 @@ ...@@ -490,8 +492,14 @@
background: #eee !important; background: #eee !important;
} }
.roomQuery_SupplierTable { .roomQuery_SupplierTable{
background: #ccc; width: 98%;
font-size: 12px;
color: #333;
margin: auto;
border-collapse: collapse;
background-color: #fff;
border: 1px solid #d1d1d1;
} }
.roomQuery_SupplierTable tr th { .roomQuery_SupplierTable tr th {
...@@ -501,17 +509,11 @@ ...@@ -501,17 +509,11 @@
color: #333; color: #333;
} }
.roomQuery_SupplierTable tr {
background: #fff;
text-align: center;
}
.roomQuery_SupplierTable tr td { .roomQuery_SupplierTable tr td {
font-size: 12px; border: 1px solid #d1d1d1;
line-height: 22px; text-align: center;
height: 22px; padding: 10px 0;
; }
}
.roomQuery_SupplierTable .tdLeft { .roomQuery_SupplierTable .tdLeft {
text-align: left; text-align: left;
......
...@@ -2574,6 +2574,14 @@ export default { ...@@ -2574,6 +2574,14 @@ export default {
title: '原路退款查询' title: '原路退款查询'
}, },
}, },
{ //财务 财务单据 汇兑损益查询
path: '/ExchangeLoss',
name: 'ExchangeLoss',
component: resolve => require(['@/components/FinancialModule/ExchangeLoss'], resolve),
meta: {
title: '汇兑损益查询'
},
},
{ //财务 财务单据 出纳工作台 { //财务 财务单据 出纳工作台
path: '/CashierWork', path: '/CashierWork',
name: 'CashierWork', name: 'CashierWork',
......
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