Commit 9dfa7b49 authored by zhengke's avatar zhengke

修改显示

parent 46ceaa71
...@@ -224,59 +224,69 @@ ...@@ -224,59 +224,69 @@
<ul style="position:relative;"> <ul style="position:relative;">
<li> <li>
<span class="hotel_name"> <span class="hotel_name">
<em>{{$t('hotel.hotel_name')}}</em> <!-- 酒店名称 -->
<em>ホテル名</em>
<el-input maxlength="50" @keyup.native.enter="resetPageIndex(),selectResource()" v-model="msg.Name"></el-input> <el-input maxlength="50" @keyup.native.enter="resetPageIndex(),selectResource()" v-model="msg.Name"></el-input>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em>{{$t('system.quety_area')}}</em> <!-- 区域 -->
<em>面積</em>
<el-select v-model="msg.QCountry" clearable class="w150" filterable @change="getProvinceList(msg.QCountry,1)" <el-select v-model="msg.QCountry" clearable class="w150" filterable @change="getProvinceList(msg.QCountry,1)"
:placeholder="$t('hotel.hotel_country')"> :placeholder="$t('hotel.hotel_country')">
<el-option v-for="item in countryList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in countryList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
<!-- 省 -->
<el-select v-model="msg.QProvince" class="w150" filterable @change="getProvinceList(msg.QProvince,2)" <el-select v-model="msg.QProvince" class="w150" filterable @change="getProvinceList(msg.QProvince,2)"
:placeholder="$t('hotel.hotel_province')"> placeholder="州">
<el-option v-for="item in provinceList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in provinceList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
<el-select v-model="msg.QCity" class="w150" filterable @change="getProvinceList(msg.QCity,3)" :placeholder="$t('hotel.hotel_city')"> <!-- 市 -->
<el-select v-model="msg.QCity" class="w150" filterable @change="getProvinceList(msg.QCity,3)" placeholder="市区町村">
<el-option v-for="item in cityList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in cityList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
<el-select v-model="msg.QDistrict" class="w150" filterable :placeholder="$t('hotel.hotel_area')"> <!-- 区 -->
<el-select v-model="msg.QDistrict" class="w150" filterable placeholder="地区">
<el-option v-for="item in district" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in district" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em>{{$t('hotel.hotel_status')}}</em> <!-- 状态 -->
<el-select v-model="msg.Status" class="w210" :placeholder="$t('pub.unlimitedSel')"> <em>都道府県</em>
<el-option :label="$t('pub.unlimitedSel')" value="-1"></el-option> <el-select v-model="msg.Status" class="w210">
<el-option label="無制限" value="-1"></el-option>
<el-option v-for="item in status" :key="item.value" :label="item.label" :value="item.value"></el-option> <el-option v-for="item in status" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em>酒店类型</em> <!-- 酒店类型 -->
<el-select v-model="msg.HotelType" class="w210" :placeholder="$t('pub.unlimitedSel')"> <em>ホテルのタイプ</em>
<el-option :label="$t('pub.unlimitedSel')" value="-1"></el-option> <el-select v-model="msg.HotelType" class="w210">
<el-option label="無制限" value="-1"></el-option>
<el-option v-for="item in HotelTypeList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in HotelTypeList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em>价格</em> <!-- 价格 -->
<el-select v-model="msg.HotelPirceType" class="w210" :placeholder="$t('pub.unlimitedSel')"> <em>価格</em>
<el-option :label="$t('pub.unlimitedSel')" value="-1"></el-option> <el-select v-model="msg.HotelPirceType" class="w210">
<el-option label="無制限" value="-1"></el-option>
<el-option v-for="item in HotelPirceTypeList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in HotelPirceTypeList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li style="position:absolute;top:0;right:10px;"> <li style="position:absolute;top:0;right:10px;">
<button class="hollowFixedBtn" type="button" @click="resetPageIndex(),selectResource()">{{$t('pub.searchBtn')}}</button> <!-- 查询 -->
<button class="normalBtn" type="button" @click="goSubInfo('HotelInfo2')">{{$t('pub.addBtn')}}</button> <button class="hollowFixedBtn" type="button" @click="resetPageIndex(),selectResource()">問い合わせ</button>
<!-- 新增 -->
<button class="normalBtn" type="button" @click="goSubInfo('HotelInfo2')">新しい</button>
</li> </li>
</ul> </ul>
</div> </div>
......
...@@ -4,22 +4,25 @@ ...@@ -4,22 +4,25 @@
<ul style="position:relative;"> <ul style="position:relative;">
<li> <li>
<span> <span>
<em class="HQ_em">{{$t('system.quety_area')}}</em> <!-- 区域 -->
<em class="HQ_em">面積</em>
<el-select v-model="msg.Province" filterable @change="getProvinceList(msg.Province,2)" <el-select v-model="msg.Province" filterable @change="getProvinceList(msg.Province,2)"
:placeholder="$t('hotel.hotel_province')"> :placeholder="$t('hotel.hotel_province')">
<el-option :key="0" :value="0" label="请选择"></el-option> <!-- 请选择 -->
<el-option :key="0" :value="0" label="選択してください"></el-option>
<el-option v-for="item in provinceList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in provinceList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
<el-select v-model="msg.City" filterable :placeholder="$t('hotel.hotel_city')"> <el-select v-model="msg.City" filterable :placeholder="$t('hotel.hotel_city')">
<el-option :key="0" :value="0" label="请选择"></el-option> <el-option :key="0" :value="0" label="選択してください"></el-option>
<el-option v-for="item in cityList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in cityList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li> <li>
<span><em class="HQ_em">{{$t('admin.admin_company')}}</em> <!-- 公司名称 -->
<span><em class="HQ_em">会社名</em>
<el-select filterable v-model='msg.OutBranchId' :placeholder="$t('pub.unlimitedSel')"> <el-select filterable v-model='msg.OutBranchId' :placeholder="$t('pub.unlimitedSel')">
<el-option :label="$t('pub.unlimitedSel')" :value='-1'></el-option> <el-option label="無制限" :value='-1'></el-option>
<el-option v-for='item in companyList' :label='item.BName' :value='item.Id' :key="item.Id"> <el-option v-for='item in companyList' :label='item.BName' :value='item.Id' :key="item.Id">
</el-option> </el-option>
</el-select> </el-select>
...@@ -27,9 +30,10 @@ ...@@ -27,9 +30,10 @@
</li> </li>
<li> <li>
<span> <span>
<em class="HQ_em">星级</em> <!-- 星级 -->
<em class="HQ_em"></em>
<el-select v-model="msg.Star" class="w150" :placeholder="$t('pub.pleaseSel')"> <el-select v-model="msg.Star" class="w150" :placeholder="$t('pub.pleaseSel')">
<el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option> <el-option label="無制限" :value='0'></el-option>
<el-option label="3星或商务" :value='3'></el-option> <el-option label="3星或商务" :value='3'></el-option>
<el-option label="4星" :value='4'></el-option> <el-option label="4星" :value='4'></el-option>
<el-option label="5星" :value='5'></el-option> <el-option label="5星" :value='5'></el-option>
...@@ -38,9 +42,10 @@ ...@@ -38,9 +42,10 @@
</li> </li>
<li> <li>
<span> <span>
<em class="HQ_em">价格区间</em> <!-- 价格区间 -->
<em class="HQ_em">価格帯</em>
<el-select v-model="msg.PriceLevel" :placeholder="$t('pub.pleaseSel')"> <el-select v-model="msg.PriceLevel" :placeholder="$t('pub.pleaseSel')">
<el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option> <el-option label="無制限" :value='0'></el-option>
<el-option label="5000以下" :value='1'></el-option> <el-option label="5000以下" :value='1'></el-option>
<el-option label="5000~6000" :value='2'></el-option> <el-option label="5000~6000" :value='2'></el-option>
<el-option label="6000~7000" :value='3'></el-option> <el-option label="6000~7000" :value='3'></el-option>
...@@ -51,7 +56,9 @@ ...@@ -51,7 +56,9 @@
</el-select> </el-select>
</span> </span>
</li> </li>
<li><span><em class="HQ_em">日期</em> <li>
<!-- 日期 -->
<span><em class="HQ_em">日付</em>
<el-date-picker v-model='msg.StartDate' value-format="yyyy-MM-dd" type="date" :picker-options="beforeCheck"> <el-date-picker v-model='msg.StartDate' value-format="yyyy-MM-dd" type="date" :picker-options="beforeCheck">
</el-date-picker> </el-date-picker>
<el-date-picker v-model='msg.EndDate' value-format="yyyy-MM-dd" type="date" :picker-options="afterCheck"> <el-date-picker v-model='msg.EndDate' value-format="yyyy-MM-dd" type="date" :picker-options="afterCheck">
...@@ -60,18 +67,22 @@ ...@@ -60,18 +67,22 @@
</li> </li>
<li> <li>
<span> <span>
<em class="HQ_em">酒店</em> <!-- 酒店 -->
<el-select v-model="msg.HotelChooseArray" :placeholder="$t('pub.pleaseSel')" class="multiple_input w300" <em class="HQ_em">ホテル</em>
<el-select v-model="msg.HotelChooseArray" placeholder="選択してください" class="multiple_input w300"
filterable multiple :multiple-limit="3"> filterable multiple :multiple-limit="3">
<el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li style="position:absolute;top:0;right:10px;"> <li style="position:absolute;top:0;right:10px;">
<input type="button" class="normalBtn" style="padding:0 12px;margin-left:0" value="温馨提示" <!-- 温馨提示 -->
<input type="button" class="normalBtn" style="padding:0 12px;margin-left:0" value="ヒント"
@click="showNotice=true,resetPageIndex(),GetHotelTipList()" /> @click="showNotice=true,resetPageIndex(),GetHotelTipList()" />
<input type="button" class="normalBtn" value="查询" style="padding:0 12px;margin-left:5px" @click="getList()" /> <!-- 查询 -->
<input type="button" class="normalBtn" value="下载" style="padding:0 12px;margin-left:5px" <input type="button" class="normalBtn" value="問い合わせ" style="padding:0 12px;margin-left:5px" @click="getList()" />
<!-- 下载 -->
<input type="button" class="normalBtn" value="ダウンロードする" style="padding:0 12px;margin-left:5px"
@click="DownLoadHotelQuery()" /> @click="DownLoadHotelQuery()" />
</li> </li>
</ul> </ul>
...@@ -80,29 +91,39 @@ ...@@ -80,29 +91,39 @@
<div style="width: 100%;min-height:200px; overflow-x: auto;padding:0 20px; " class="HotelQueryList" <div style="width: 100%;min-height:200px; overflow-x: auto;padding:0 20px; " class="HotelQueryList"
v-loading="loading"> v-loading="loading">
<div style="margin-bottom:20px;"> <div style="margin-bottom:20px;">
<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:#fff;background-color: #ff3737;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: #ff99cc;padding:2px 4px;border-radius:5px">ハイシーズン</span>
<span style="color:#000000;background-color: #02F78E;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: #02F78E;padding:2px 4px;border-radius:5px">特別価格</span>
</div> </div>
<template v-if="isShow"> <template v-if="isShow">
<el-table v-if="dataList.length>0" :data="dataList" style="width:100%" border v-loading='loading' <el-table v-if="dataList.length>0" :data="dataList" style="width:100%" border v-loading='loading'
:height="tableHeight"> :height="tableHeight">
<el-table-column fixed label="酒店名称" min-width="180"> <!-- 酒店名称 -->
<el-table-column fixed label="ホテル名" min-width="180">
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
{{scope.row.HotelName}}</div> {{scope.row.HotelName}}</div>
<div>{{scope.row.TotalInventory}}</div> <div>{{scope.row.TotalInventory}}</div>
<input type="button" class="normalBtn" style="margin-left:0;height:22px;padding:0 10px;" <input type="button" class="normalBtn" style="margin-left:0;height:22px;padding:0 10px;"
@click="getLogsList(scope.row.HotelId)" value="操作日志" /> @click="getLogsList(scope.row.HotelId)" value="操作ログ" />
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="价格&库存" fixed min-width="120"> <!-- 价格库存 -->
<el-table-column label="価格&在庫" fixed min-width="120">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="Hotel_kong">价格</div> <!-- 价格 -->
<div class="Hotel_kong" style="min-width:60px;">总/用/剩</div> <div class="Hotel_kong">価格</div>
<div class="Hotel_kong">超定</div> <!-- 总/用/剩 -->
<div class="Hotel_kong" style="min-width:60px;">合計/使用する/残り</div>
<!-- 超定 -->
<div class="Hotel_kong">過剰決定</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-for='(item,index) in dataList[0].subList' :label="getDateList(item.DateStr)" :key='index' <el-table-column v-for='(item,index) in dataList[0].subList' :label="getDateList(item.DateStr)" :key='index'
...@@ -143,7 +164,8 @@ ...@@ -143,7 +164,8 @@
<el-form label-width="80px"> <el-form label-width="80px">
<el-row> <el-row>
<el-col :span="20"> <el-col :span="20">
<el-form-item label="日期"> <!-- 日期 -->
<el-form-item label="日付">
<el-date-picker class="w150" type="date" v-model="queryMsg.QStartDate" <el-date-picker class="w150" type="date" v-model="queryMsg.QStartDate"
:picker-options="pickerBeginDateBefore" value-format="yyyy-MM-dd" placeholder></el-date-picker> :picker-options="pickerBeginDateBefore" value-format="yyyy-MM-dd" placeholder></el-date-picker>
<el-date-picker class="w150" type="date" v-model="queryMsg.QEndDate" <el-date-picker class="w150" type="date" v-model="queryMsg.QEndDate"
...@@ -151,19 +173,21 @@ ...@@ -151,19 +173,21 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<input type="button" class="normalBtn" value="查询" @click="resetPageIndex(),GetHotelTipList()" /> <!-- 查询 -->
<input type="button" class="normalBtn" value="关闭" @click="showNotice=false" /> <input type="button" class="normalBtn" value="問い合わせ" @click="resetPageIndex(),GetHotelTipList()" />
<!-- 关闭 -->
<input type="button" class="normalBtn" value="閉じる" @click="showNotice=false" />
</el-col> </el-col>
</el-row> </el-row>
<div class="Hq_addDetail"> <div class="Hq_addDetail">
<el-row> <el-row>
<el-col :span="12"> <el-col :span="12">
<el-form-item label="明"> <el-form-item label="明">
<quill-editor class="w595" :options="editorOption" v-model="postMsg.TipContent"></quill-editor> <quill-editor class="w595" :options="editorOption" v-model="postMsg.TipContent"></quill-editor>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<input type="button" class="normalBtn" value="保存" @click="SaveHotelTip()" /> <input type="button" class="normalBtn" value="保存する" @click="SaveHotelTip()" />
</el-col> </el-col>
</el-row> </el-row>
</div> </div>
...@@ -171,11 +195,15 @@ ...@@ -171,11 +195,15 @@
<div> <div>
<table border="0" cellspacing="1" cellpadding="0" class="HouseTypeList Hq_addTable" style="width:97%;"> <table border="0" cellspacing="1" cellpadding="0" class="HouseTypeList Hq_addTable" style="width:97%;">
<tr> <tr>
<th width="50">编号</th> <!-- 编号 -->
<th width="50"></th>
<th>内容</th> <th>内容</th>
<th width="70">操作人</th> <!-- 操作人 -->
<th width="150">操作时间</th> <th width="70">オペレーター</th>
<th width="80">操作</th> <!-- 操作时间 -->
<th width="150">運用世界</th>
<!-- 操作 -->
<th width="80">運営</th>
</tr> </tr>
<template v-if="queryMsg.total>0"> <template v-if="queryMsg.total>0">
<tr v-for="(item,index) in HotelTipList"> <tr v-for="(item,index) in HotelTipList">
...@@ -196,7 +224,8 @@ ...@@ -196,7 +224,8 @@
</tr> </tr>
</template> </template>
<tr v-else> <tr v-else>
<td colspan="5">暂无数据...</td> <!-- 暂无数据 -->
<td colspan="5">まだデータがありません...</td>
</tr> </tr>
</table> </table>
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="queryMsg.currentPage" <el-pagination background @current-change="handleCurrentChange" :current-page.sync="queryMsg.currentPage"
...@@ -208,10 +237,14 @@ ...@@ -208,10 +237,14 @@
<el-form> <el-form>
<table border="0" cellspacing="1" cellpadding="0" class="HouseTypeList Hq_addTable" style="width:100%;"> <table border="0" cellspacing="1" cellpadding="0" class="HouseTypeList Hq_addTable" style="width:100%;">
<tr> <tr>
<th width="50">编号</th> <!-- 编号 -->
<th width="50"></th>
<!-- 内容 -->
<th>内容</th> <th>内容</th>
<th width="70">操作人</th> <!-- 操作人 -->
<th width="140">操作时间</th> <th width="70">オペレーター</th>
<!-- 操作时间 -->
<th width="140">運用世界</th>
</tr> </tr>
<template v-if="queryMsg.total>0"> <template v-if="queryMsg.total>0">
<tr v-for="(item,index) in HotelTipList"> <tr v-for="(item,index) in HotelTipList">
...@@ -224,7 +257,8 @@ ...@@ -224,7 +257,8 @@
</tr> </tr>
</template> </template>
<tr v-else> <tr v-else>
<td colspan="5">暂无数据...</td> <!-- 暂无数据 -->
<td colspan="5">まだデータがありません...</td>
</tr> </tr>
</table> </table>
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="queryMsg.currentPage" <el-pagination background @current-change="handleCurrentChange" :current-page.sync="queryMsg.currentPage"
...@@ -232,7 +266,8 @@ ...@@ -232,7 +266,8 @@
</el-pagination> </el-pagination>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="showHQinfo = false">关闭</button> <!-- 关闭 -->
<button class="hollowFixedBtn" @click="showHQinfo = false">閉じる</button>
</div> </div>
</el-dialog> </el-dialog>
...@@ -241,9 +276,13 @@ ...@@ -241,9 +276,13 @@
<table border="0" cellspacing="1" cellpadding="0" class="HouseTypeList Hq_addTable logsTable" <table border="0" cellspacing="1" cellpadding="0" class="HouseTypeList Hq_addTable logsTable"
style="width:100%;"> style="width:100%;">
<tr> <tr>
<th width="50">操作人</th> <!-- 操作人 -->
<th>日期</th> <th width="50">オペレーター</th>
<th>操作时间</th> <!-- 日期 -->
<th>日付</th>
<!-- 操作时间 -->
<th>稼働時間</th>
<!-- 内容 -->
<th width="70">内容</th> <th width="70">内容</th>
</tr> </tr>
<template v-if="LogsList.length>0"> <template v-if="LogsList.length>0">
...@@ -257,7 +296,8 @@ ...@@ -257,7 +296,8 @@
</tr> </tr>
</template> </template>
<tr v-else> <tr v-else>
<td colspan="5">暂无数据...</td> <!-- 暂无数据 -->
<td colspan="5">まだデータがありません...</td>
</tr> </tr>
</table> </table>
<el-pagination background @current-change="handleCurrentChange2" :current-page.sync="queryLogMsg.currentPage" <el-pagination background @current-change="handleCurrentChange2" :current-page.sync="queryLogMsg.currentPage"
...@@ -265,7 +305,8 @@ ...@@ -265,7 +305,8 @@
</el-pagination> </el-pagination>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="showLogInfo = false,queryLogMsg.pageIndex=1">关闭</button> <!-- 关闭 -->
<button class="hollowFixedBtn" @click="showLogInfo = false,queryLogMsg.pageIndex=1">閉じる</button>
</div> </div>
</el-dialog> </el-dialog>
...@@ -365,7 +406,7 @@ ...@@ -365,7 +406,7 @@
} }
}, },
editorOption: { editorOption: {
placeholder: '请输入内容', placeholder: '内容を入力してください',
modules: { modules: {
toolbar: [ toolbar: [
['bold', 'italic', 'underline', 'strike'], // toggled buttons ['bold', 'italic', 'underline', 'strike'], // toggled buttons
......
...@@ -216,22 +216,24 @@ ...@@ -216,22 +216,24 @@
<ul style="position:relative;"> <ul style="position:relative;">
<li> <li>
<span> <span>
<em style="min-width:60px;">{{$t('system.quety_area')}}</em> <!-- 区域 -->
<em style="min-width:60px;">面積</em>
<el-select v-model="msg.Province" filterable @change="getProvinceList(msg.Province,2)" <el-select v-model="msg.Province" filterable @change="getProvinceList(msg.Province,2)"
:placeholder="$t('hotel.hotel_province')"> :placeholder="$t('hotel.hotel_province')">
<el-option :key="0" :value="0" label="请选择"></el-option> <el-option :key="0" :value="0" label="選択してください"></el-option>
<el-option v-for="item in provinceList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in provinceList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
<el-select v-model="msg.City" filterable :placeholder="$t('hotel.hotel_city')"> <el-select v-model="msg.City" filterable :placeholder="$t('hotel.hotel_city')">
<el-option :key="0" :value="0" label="请选择"></el-option> <el-option :key="0" :value="0" label="選択してください"></el-option>
<el-option v-for="item in cityList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in cityList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li> <li>
<span><em style="min-width:60px;">{{$t('admin.admin_company')}}</em> <!-- 公司名称 -->
<el-select filterable v-model='msg.OutBranchId' :placeholder="$t('pub.unlimitedSel')"> <span><em style="min-width:60px;">会社名</em>
<el-option :label="$t('pub.unlimitedSel')" :value='-1'></el-option> <el-select filterable v-model='msg.OutBranchId' placeholder="選択してください">
<el-option label="無制限" :value='-1'></el-option>
<el-option v-for='item in companyList' :label='item.BName' :value='item.Id' :key="item.Id"> <el-option v-for='item in companyList' :label='item.BName' :value='item.Id' :key="item.Id">
</el-option> </el-option>
</el-select> </el-select>
...@@ -239,40 +241,49 @@ ...@@ -239,40 +241,49 @@
</li> </li>
<li> <li>
<span> <span>
<em style="min-width:60px;">酒店</em> <!-- 酒店 -->
<el-select v-model="msg.HotelId" :placeholder="$t('pub.pleaseSel')" filterable> <em style="min-width:60px;">ホテル</em>
<el-option :label="$t('pub.unlimitedSel')" :value="defaultSelectValue"></el-option> <el-select v-model="msg.HotelId" placeholder="選択してください" filterable>
<el-option label="無制限" :value="defaultSelectValue"></el-option>
<el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li style="display:none;"> <li style="display:none;">
<span> <span>
<em>供应商</em> <em>仕入先</em>
<el-select v-model="msg.Supplier" placeholder="请选择"> <el-select v-model="msg.Supplier" placeholder="選択してください">
<el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option> <el-option label="無制限" :value='0'></el-option>
<el-option v-for="(item,index) in SupplierList" :key="index" :label="item.Name" :value="item.ID"> <el-option v-for="(item,index) in SupplierList" :key="index" :label="item.Name" :value="item.ID">
</el-option> </el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li style="position:absolute;right:10px;top:0;"> <li style="position:absolute;right:10px;top:0;">
<button class="normalBtn" type="button" @click="GetHoltelInventory()">{{$t('pub.searchBtn')}}</button> <!-- 查询 -->
<input type="button" class="normalBtn" value="下载" @click="DownLoadHotelSalesBoard()" /> <button class="normalBtn" type="button" @click="GetHoltelInventory()">問い合わせ</button>
<!-- 下载 -->
<input type="button" class="normalBtn" value="ダウンロードする" @click="DownLoadHotelSalesBoard()" />
</li> </li>
</ul> </ul>
</div> </div>
<div class="title"> <div class="title">
酒店统计 共 <!-- 酒店统计 共 -->
<span class="Owe_Room">{{TotalInventory}}</span> 间, 当前使用 ホテルの統計 合計
<span class="Owe_Room">{{UseInventory}}</span> 间,占比 <span class="Owe_Room">{{TotalInventory}}</span> 部屋, 現在の使用 <!-- 间, 当前使用 -->
<span class="Owe_Room">{{UseInventory}}</span> 部屋,割合 <!-- 间,占比-->
<span class="Owe_Room">{{((UseInventory/TotalInventory)*100).toFixed(2)}}</span> %. <span class="Owe_Room">{{((UseInventory/TotalInventory)*100).toFixed(2)}}</span> %.
&nbsp;&nbsp; &nbsp;&nbsp;
<span class="hasStock_1" style="padding:2px 4px;border-radius:5px">红日</span> <!-- 红日 -->
<span class="hasStock_2" style="padding:2px 4px;border-radius:5px">旺季</span> <span class="hasStock_1" style="padding:2px 4px;border-radius:5px">赤い日</span>
<span class="hasStock_3" style="padding:2px 4px;border-radius:5px">平季</span> <!-- 旺季 -->
<span class="hasStock_4" style="padding:2px 4px;border-radius:5px">淡季</span> <span class="hasStock_2" style="padding:2px 4px;border-radius:5px">ハイシーズン</span>
<span class="hasStock_5" style="padding:2px 4px;border-radius:5px">特别价</span> <!-- 平季 -->
<span class="hasStock_3" style="padding:2px 4px;border-radius:5px">フラットシーズン</span>
<!-- 淡季 -->
<span class="hasStock_4" style="padding:2px 4px;border-radius:5px">ローシーズン</span>
<!-- 特别价 -->
<span class="hasStock_5" style="padding:2px 4px;border-radius:5px">特別価格</span>
</div> </div>
<div class="month"> <div class="month">
<ul> <ul>
......
...@@ -335,21 +335,21 @@ ...@@ -335,21 +335,21 @@
<ul style="position:relative"> <ul style="position:relative">
<li> <li>
<span> <span>
<em style="min-width:60px;">{{$t('system.quety_area')}}</em> <em style="min-width:60px;">面積</em>
<el-select v-model="msg.Province" filterable @change="getProvinceList(msg.Province,2)" <el-select v-model="msg.Province" filterable @change="getProvinceList(msg.Province,2)"
:placeholder="$t('hotel.hotel_province')"> :placeholder="$t('hotel.hotel_province')">
<el-option :key="0" :value="0" label="请选择"></el-option> <el-option :key="0" :value="0" label="選択してください"></el-option>
<el-option v-for="item in provinceList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in provinceList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
<el-select v-model="msg.City" filterable :placeholder="$t('hotel.hotel_city')"> <el-select v-model="msg.City" filterable :placeholder="$t('hotel.hotel_city')">
<el-option :key="0" :value="0" label="请选择"></el-option> <el-option :key="0" :value="0" label="選択してください"></el-option>
<el-option v-for="item in cityList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in cityList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em style="min-width:60px;">酒店</em> <em style="min-width:60px;">ホテル</em>
<el-select v-model="msg.HotelId" :placeholder="$t('pub.pleaseSel')" filterable> <el-select v-model="msg.HotelId" :placeholder="$t('pub.pleaseSel')" filterable>
<el-option :label="$t('pub.unlimitedSel')" :value="DefaultSelectValue"></el-option> <el-option :label="$t('pub.unlimitedSel')" :value="DefaultSelectValue"></el-option>
<el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
...@@ -358,8 +358,8 @@ ...@@ -358,8 +358,8 @@
</li> </li>
<li style="display:none;"> <li style="display:none;">
<span> <span>
<em style="min-width:60px;">供应商</em> <em style="min-width:60px;">仕入先</em>
<el-select v-model="msg.Supplier" placeholder="请选择"> <el-select v-model="msg.Supplier" placeholder="選択してください">
<el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option> <el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option>
<el-option v-for="(item,index) in SupplierList" :key="index" :label="item.Name" :value="item.ID"> <el-option v-for="(item,index) in SupplierList" :key="index" :label="item.Name" :value="item.ID">
</el-option> </el-option>
...@@ -369,7 +369,7 @@ ...@@ -369,7 +369,7 @@
<li class='time'> <li class='time'>
<div class="block date"> <div class="block date">
<label class="demonstration">{{$t('pub.date')}}</label> <label class="demonstration">日付</label>
<el-date-picker v-model="msg.sDate" type="date" :placeholder="$t('admin.admin_choDate')" <el-date-picker v-model="msg.sDate" type="date" :placeholder="$t('admin.admin_choDate')"
value-format="yyyy-MM-dd" :picker-options="pickerOptions1"> value-format="yyyy-MM-dd" :picker-options="pickerOptions1">
</el-date-picker> </el-date-picker>
...@@ -379,13 +379,13 @@ ...@@ -379,13 +379,13 @@
</div> </div>
</li> </li>
<li style="position:absolute;right:10px;top:0;"> <li style="position:absolute;right:10px;top:0;">
<input type="button" class="hollowFixedBtn" :value="$t('pub.searchBtn')" @click="getList()" /> <input type="button" class="hollowFixedBtn" value="問い合わせ" @click="getList()" />
</li> </li>
</ul> </ul>
</div> </div>
<div class="hotelTS_box"> <div class="hotelTS_box">
<div class="noData" v-show="noData"> <div class="noData" v-show="noData">
{{$t('system.content_noData')}} データなし
</div> </div>
<ul class='clearfix' v-loading="loading"> <ul class='clearfix' v-loading="loading">
<li v-for="(item,index) in DataList"> <li v-for="(item,index) in DataList">
...@@ -395,7 +395,7 @@ ...@@ -395,7 +395,7 @@
<el-tooltip effect="dark" :content="item.Name" placement="top-start"> <el-tooltip effect="dark" :content="item.Name" placement="top-start">
<p>{{item.Name}}</p> <p>{{item.Name}}</p>
</el-tooltip> </el-tooltip>
<p><span class="HT_nowInventory">目前库存</span><span class='Remain_num'>{{item.RemainingInventory}}</span>/间 <p><span class="HT_nowInventory">現在の在庫</span><span class='Remain_num'>{{item.RemainingInventory}}</span>/部屋
</p> </p>
</div> </div>
</li> </li>
......
...@@ -4,9 +4,10 @@ ...@@ -4,9 +4,10 @@
<ul style="position:relative;"> <ul style="position:relative;">
<li> <li>
<span> <span>
<em>{{$t('Operation.Op_Country')}}/{{$t('system.query_dest')}}</em> <!-- 国家/目的地 -->
<el-select v-model="msg.PlaceID" filterable :placeholder="$t('pub.pleaseSel')" @change="getLineTeamList()"> <em>国/行き先</em>
<el-option :label="$t('pub.unlimitedSel')" :value="0"></el-option> <el-select v-model="msg.PlaceID" filterable placeholder="選択してください" @change="getLineTeamList()">
<el-option label="無制限" :value="0"></el-option>
<el-option v-for="item in queryCommonData.PlaceList" :label="item.PlaceName" :value="item.PlaceID" <el-option v-for="item in queryCommonData.PlaceList" :label="item.PlaceName" :value="item.PlaceID"
:key="item.LtID"></el-option> :key="item.LtID"></el-option>
</el-select> </el-select>
...@@ -14,9 +15,10 @@ ...@@ -14,9 +15,10 @@
</li> </li>
<li> <li>
<span> <span>
<em>系列</em> <!-- 系列 -->
<el-select v-model="msg.LineteamId" filterable :placeholder="$t('pub.pleaseSel')"> <em>シリーズ</em>
<el-option label="不限" :value='0'></el-option> <el-select v-model="msg.LineteamId" filterable placeholder="選択してください">
<el-option label="無制限" :value='0'></el-option>
<el-option v-for="item in queryCommonData.LineTeamList" :label='item.LtName' :value='item.LtID' <el-option v-for="item in queryCommonData.LineTeamList" :label='item.LtName' :value='item.LtID'
:key='item.LtID'> :key='item.LtID'>
</el-option> </el-option>
...@@ -25,23 +27,26 @@ ...@@ -25,23 +27,26 @@
</li> </li>
<li> <li>
<span> <span>
<em>团号</em> <!-- 团号 -->
<em>グループ番号</em>
<el-input v-model='msg.TCNUM'></el-input> <el-input v-model='msg.TCNUM'></el-input>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em>酒店</em> <!-- 酒店 -->
<el-select v-model="msg.HotelId" :placeholder="$t('pub.pleaseSel')" filterable> <em>ホテル</em>
<el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option> <el-select v-model="msg.HotelId" placeholder="選択してください" filterable>
<el-option label="無制限" :value='0'></el-option>
<el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in HotelList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
<li><span> <li><span>
<em>状态</em> <!-- 状态 -->
<em>都道府県</em>
<el-select v-model='msg.PriceStatus'> <el-select v-model='msg.PriceStatus'>
<el-option :label="$t('pub.unlimitedSel')" :value="0"></el-option> <el-option label="無制限" :value="0"></el-option>
<el-option v-for="team in $tripUtils.TeamStatesList.TeamStates" :label="team.Name" :key="team.Id" <el-option v-for="team in $tripUtils.TeamStatesList.TeamStates" :label="team.Name" :key="team.Id"
:value="team.Id" v-if="team.Id==1 || team.Id==3"></el-option> :value="team.Id" v-if="team.Id==1 || team.Id==3"></el-option>
</el-select> </el-select>
...@@ -49,9 +54,10 @@ ...@@ -49,9 +54,10 @@
</li> </li>
<li> <li>
<span> <span>
<em>航空公司</em> <!-- 航公公司 -->
<em>航空会社</em>
<el-select v-model="msg.AirLineId" filterable :placeholder="$t('system.ph_buxian')"> <el-select v-model="msg.AirLineId" filterable :placeholder="$t('system.ph_buxian')">
<el-option :label="$t('system.ph_buxian')" :value="0"> <el-option label="無制限" :value="0">
</el-option> </el-option>
<el-option v-for="item in queryCommonData.AirlineList" :key="item.AirLineId" :label="item.AlName" <el-option v-for="item in queryCommonData.AirlineList" :key="item.AirLineId" :label="item.AlName"
:value="item.AirLineId"></el-option> :value="item.AirLineId"></el-option>
...@@ -62,7 +68,7 @@ ...@@ -62,7 +68,7 @@
<span> <span>
<em>OP</em> <em>OP</em>
<el-select v-model="msg.CreateBy" filterable :placeholder="$t('pub.pleaseSel')"> <el-select v-model="msg.CreateBy" filterable :placeholder="$t('pub.pleaseSel')">
<el-option :label="$t('pub.unlimitedSel')" :value="0"> <el-option label="無制限" :value="0">
</el-option> </el-option>
<el-option v-for="item in queryCommonData.EmployeeList" :label="item.EmName" :value="item.EmployeeId" <el-option v-for="item in queryCommonData.EmployeeList" :label="item.EmName" :value="item.EmployeeId"
:key="item.EmployeeId"></el-option> :key="item.EmployeeId"></el-option>
...@@ -71,13 +77,15 @@ ...@@ -71,13 +77,15 @@
</li> </li>
<li> <li>
<span> <span>
<em>地接团号</em> <!-- 地接团号 -->
<em>アース接続番号</em>
<el-input v-model='msg.CombinationNum'></el-input> <el-input v-model='msg.CombinationNum'></el-input>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em>出团公司</em> <!-- 公司 -->
<em>会社</em>
<el-select v-model="msg.OutBranchIds" filterable multiple class="multiple_input" <el-select v-model="msg.OutBranchIds" filterable multiple class="multiple_input"
:placeholder="$t('pub.pleaseSel')"> :placeholder="$t('pub.pleaseSel')">
<el-option v-for="item in queryCommonData.BranchList" :label='item.BName' :value='item.Id' :key='item.Id'> <el-option v-for="item in queryCommonData.BranchList" :label='item.BName' :value='item.Id' :key='item.Id'>
...@@ -87,7 +95,8 @@ ...@@ -87,7 +95,8 @@
</li> </li>
<li> <li>
<span> <span>
<em>日期</em> <!-- 日期 -->
<em>日付</em>
<el-date-picker v-model='msg.StartDate' class='w135' value-format="yyyy-MM-dd" type="date" <el-date-picker v-model='msg.StartDate' class='w135' value-format="yyyy-MM-dd" type="date"
:picker-options="pickerBeginDateBefore"></el-date-picker> :picker-options="pickerBeginDateBefore"></el-date-picker>
- -
...@@ -96,34 +105,51 @@ ...@@ -96,34 +105,51 @@
</span> </span>
</li> </li>
<li style="position:absolute;right:10px;top:0;"> <li style="position:absolute;right:10px;top:0;">
<input type="button" class="normalBtn" value="查询" @click="getList();resetPageIndex()" /> <!-- 查询 -->
<input type="button" class="normalBtn" value="下载" @click="DownLoadHotel()" /> <input type="button" class="normalBtn" value="問い合わせ" @click="getList();resetPageIndex()" />
<!-- 下载 -->
<input type="button" class="normalBtn" value="ダウンロードする" @click="DownLoadHotel()" />
</li> </li>
</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 20px;"> <div style="font-size:12px;padding:2px 4px 3px 20px;">
<div style="display:inline-block;color:red">注意事项:每次导出数据最好不要超过一个月。</div> <!-- 每次导出数据最好不要超过一个月 -->
<div class="rq_comSpan" style="display:inline-block;">颜色说明: <div style="display:inline-block;color:red">注意事項:データをエクスポートするたびに1か月を超えないことをお勧めします。</div>
<span class="rq_span1">未操作</span><span class="rq_span2">操作中</span><span class="rq_span3">操作完成</span><span <!-- 颜色说明 -->
class="rq_span4">机位数和人数不相符</span> <div class="rq_comSpan" style="display:inline-block;">色の説明:
<!-- 未操作 --> <!-- 操作中 --> <!-- 操作完成 -->
<span class="rq_span1">作動していない</span><span class="rq_span2">稼働中</span><span class="rq_span3">操作完了</span><span
class="rq_span4">マシンの数が人の数と一致しません。</span>
<!-- 机位和人数不相符 -->
</div> </div>
</div><br /> </div><br />
<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="120">出发地</th> <th width="100">シリアル番号</th>
<th width="100">公司团号</th> <!-- 出发地 -->
<th width="80">团队状态</th> <th width="120">出発地</th>
<th width="100">系列</th> <!-- 公司团号 -->
<th width="120">机位总数<br />(Y/E/F)</th> <th width="100">会社グループ番号</th>
<th width="100">时间</th> <!-- 团队状态 -->
<th width="150">酒店</th> <th width="80">チームの状態</th>
<th width="100">酒店使用情况</th> <!-- 系列 -->
<th width="100">操作</th> <th width="100">シリーズ</th>
<!-- 机位总数 -->
<th width="120">総座席数<br />(Y/E/F)</th>
<!-- 时间 -->
<th width="100">時間</th>
<!-- 酒店 -->
<th width="150">ホテル</th>
<!-- 酒店使用情况 -->
<th width="100">ホテル利用</th>
<!-- 操作 -->
<th width="100">運営</th>
</tr> </tr>
<tr v-if="dataList.length==0"> <tr v-if="dataList.length==0">
<td colspan="9">暂无数据</td> <!-- 暂无数据 -->
<td colspan="9">まだデータがありません</td>
</tr> </tr>
<template v-for="(item,index) in dataList"> <template v-for="(item,index) in dataList">
<template v-for="(subItem,subIndex) in item.subList"> <template v-for="(subItem,subIndex) in item.subList">
......
...@@ -4,35 +4,49 @@ ...@@ -4,35 +4,49 @@
<ul style="position:relative;"> <ul style="position:relative;">
<li> <li>
<span> <span>
<em>月份</em> <!-- 月份 -->
<el-date-picker v-model="msg.QMonthStr" type="month" value-format="yyyy-MM" placeholder="选择月"> <em></em>
<el-date-picker v-model="msg.QMonthStr" type="month" value-format="yyyy-MM" placeholder="選択月">
</el-date-picker> </el-date-picker>
</span> </span>
</li> </li>
<li style="position:absolute;right:10px;top:0;"> <li style="position:absolute;right:10px;top:0;">
<input type="button" class="normalBtn" value="查询" @click="getList()" /> <!-- 查询 -->
<input type="button" class="normalBtn" value="下载" style="display:none;" @click="DownLoadHotel()" /> <input type="button" class="normalBtn" value="問い合わせ" @click="getList()" />
<!-- 下载 -->
<input type="button" class="normalBtn" value="ダウンロードする" style="display:none;" @click="DownLoadHotel()" />
</li> </li>
</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 20px;"> <div style="font-size:12px;padding:2px 4px 3px 20px;">
<div style="display:inline-block;color:red;display:none">注意事项:每次导出数据最好不要超过一个月。</div> <!-- 每次导出数据最好不要超过一个月 -->
<div class="rq_comSpan" style="display:inline-block;">颜色说明: <div style="display:inline-block;color:red;display:none">注意事項:データをエクスポートするたびに1か月を超えないことをお勧めします。</div>
<span class="rq_span1">新增团体</span><span class="rq_span2">取消团体</span> <!-- 颜色说明 -->
<span class="rq_span3">酒店提醒</span> <div class="rq_comSpan" style="display:inline-block;">色の説明:
<!-- 新增团体 --> <!-- 取消团体 --> <!-- 酒店提醒 -->
<span class="rq_span1">グループを追加</span><span class="rq_span2">グループをキャンセル</span>
<span class="rq_span3">ホテルリマインダー</span>
</div> </div>
</div><br /> </div><br />
<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> <th width="100">グループ番号</th>
<th width="100">航班</th> <!-- 公司团号 -->
<th width="120">机位总数</th> <th width="100">会社グループ番号</th>
<th width="100">当前人数</th> <!-- 航班 -->
<th width="100">导游</th> <th width="100">フライト</th>
<th width="100">领队</th> <!-- 机位总数 -->
<th width="150">酒店详情</th> <th width="120">総座席数</th>
<!-- 当前人数 -->
<th width="100">現在の番号</th>
<!-- 导游 -->
<th width="100">ガイド</th>
<!-- 领队 -->
<th width="100">リーダー</th>
<!-- 酒店详情 -->
<th width="150">ホテルの詳細</th>
</tr> </tr>
<tbody v-for="(item,index) in dataList"> <tbody v-for="(item,index) in dataList">
<tr> <tr>
......
...@@ -613,10 +613,15 @@ ...@@ -613,10 +613,15 @@
<div style="width: 100%;min-height:200px; overflow-x: auto;padding:0 20px; " class="HotelQueryList" <div style="width: 100%;min-height:200px; overflow-x: auto;padding:0 20px; " class="HotelQueryList"
v-loading="loading"> v-loading="loading">
<div style="margin:20px 0"> <div style="margin:20px 0">
<!-- 红日 -->
<span style="color:#fff;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>
<!-- 特别价 -->
<span style="color:#000000;background-color: #02F78E;padding:2px 4px;border-radius:5px">特別価格</span> <span style="color:#000000;background-color: #02F78E;padding:2px 4px;border-radius:5px">特別価格</span>
</div> </div>
<template v-if="isShow"> <template v-if="isShow">
...@@ -731,7 +736,8 @@ ...@@ -731,7 +736,8 @@
</tr> </tr>
</template> </template>
<tr v-else> <tr v-else>
<td colspan="5">暂无数据...</td> <!-- 暂无数据 -->
<td colspan="5">まだデータがありません...</td>
</tr> </tr>
</table> </table>
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="queryMsg.currentPage" <el-pagination background @current-change="handleCurrentChange" :current-page.sync="queryMsg.currentPage"
...@@ -743,9 +749,12 @@ ...@@ -743,9 +749,12 @@
<el-form> <el-form>
<table border="0" cellspacing="1" cellpadding="0" class="HouseTypeList Hq_addTable" style="width:100%;"> <table border="0" cellspacing="1" cellpadding="0" class="HouseTypeList Hq_addTable" style="width:100%;">
<tr> <tr>
<!-- 编号 -->
<th width="50"></th> <th width="50"></th>
<th>内容</th> <th>内容</th>
<!-- 运营商 -->
<th width="70">オペレーター</th> <th width="70">オペレーター</th>
<!-- 运营时间 -->
<th width="140">稼働時間</th> <th width="140">稼働時間</th>
</tr> </tr>
<template v-if="queryMsg.total>0"> <template v-if="queryMsg.total>0">
...@@ -759,7 +768,8 @@ ...@@ -759,7 +768,8 @@
</tr> </tr>
</template> </template>
<tr v-else> <tr v-else>
<td colspan="5">暂无数据...</td> <!-- 暂无数据 -->
<td colspan="5">まだデータがありません...</td>
</tr> </tr>
</table> </table>
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="queryMsg.currentPage" <el-pagination background @current-change="handleCurrentChange" :current-page.sync="queryMsg.currentPage"
...@@ -767,7 +777,8 @@ ...@@ -767,7 +777,8 @@
</el-pagination> </el-pagination>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="showHQinfo = false">关闭</button> <!-- 关闭 -->
<button class="hollowFixedBtn" @click="showHQinfo = false">閉じる</button>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
......
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