Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
9dfa7b49
Commit
9dfa7b49
authored
Aug 30, 2019
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改显示
parent
46ceaa71
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
262 additions
and
149 deletions
+262
-149
HotelManagement.vue
src/components/Supplier/HotelManagement.vue
+26
-16
HotelQueryList.vue
src/components/Supplier/HotelQueryList.vue
+88
-47
HotelSalesBoard.vue
src/components/Supplier/HotelSalesBoard.vue
+33
-22
HotelTotalStock.vue
src/components/Supplier/HotelTotalStock.vue
+10
-10
roomQuery.vue
src/components/Supplier/roomQuery.vue
+61
-35
roomQuery2.vue
src/components/Supplier/roomQuery2.vue
+30
-16
SupplierIndex.vue
src/components/SupplierIndex.vue
+14
-3
No files found.
src/components/Supplier/HotelManagement.vue
View file @
9dfa7b49
...
...
@@ -224,59 +224,69 @@
<ul
style=
"position:relative;"
>
<li>
<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>
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'system.quety_area'
)
}}
</em>
<!-- 区域 -->
<em>
面積
</em>
<el-select
v-model=
"msg.QCountry"
clearable
class=
"w150"
filterable
@
change=
"getProvinceList(msg.QCountry,1)"
:placeholder=
"$t('hotel.hotel_country')"
>
<el-option
v-for=
"item in countryList"
:key=
"item.ID"
:label=
"item.Name"
:value=
"item.ID"
></el-option>
</el-select>
<!-- 省 -->
<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-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-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-select>
</span>
</li>
<li>
<span>
<em>
{{
$t
(
'hotel.hotel_status'
)
}}
</em>
<el-select
v-model=
"msg.Status"
class=
"w210"
:placeholder=
"$t('pub.unlimitedSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
value=
"-1"
></el-option>
<!-- 状态 -->
<em>
都道府県
</em>
<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-select>
</span>
</li>
<li>
<span>
<em>
酒店类型
</em>
<el-select
v-model=
"msg.HotelType"
class=
"w210"
:placeholder=
"$t('pub.unlimitedSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
value=
"-1"
></el-option>
<!-- 酒店类型 -->
<em>
ホテルのタイプ
</em>
<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-select>
</span>
</li>
<li>
<span>
<em>
价格
</em>
<el-select
v-model=
"msg.HotelPirceType"
class=
"w210"
:placeholder=
"$t('pub.unlimitedSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
value=
"-1"
></el-option>
<!-- 价格 -->
<em>
価格
</em>
<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-select>
</span>
</li>
<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>
</ul>
</div>
...
...
src/components/Supplier/HotelQueryList.vue
View file @
9dfa7b49
...
...
@@ -4,22 +4,25 @@
<ul
style=
"position:relative;"
>
<li>
<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)"
: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-select>
<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-select>
</span>
</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-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>
</el-select>
...
...
@@ -27,9 +30,10 @@
</li>
<li>
<span>
<em
class=
"HQ_em"
>
星级
</em>
<!-- 星级 -->
<em
class=
"HQ_em"
>
星
</em>
<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=
"4星"
:value=
'4'
></el-option>
<el-option
label=
"5星"
:value=
'5'
></el-option>
...
...
@@ -38,9 +42,10 @@
</li>
<li>
<span>
<em
class=
"HQ_em"
>
价格区间
</em>
<!-- 价格区间 -->
<em
class=
"HQ_em"
>
価格帯
</em>
<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~6000"
:value=
'2'
></el-option>
<el-option
label=
"6000~7000"
:value=
'3'
></el-option>
...
...
@@ -51,7 +56,9 @@
</el-select>
</span>
</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>
<el-date-picker
v-model=
'msg.EndDate'
value-format=
"yyyy-MM-dd"
type=
"date"
:picker-options=
"afterCheck"
>
...
...
@@ -60,18 +67,22 @@
</li>
<li>
<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"
>
<el-option
v-for=
"item in HotelList"
:key=
"item.ID"
:label=
"item.Name"
:value=
"item.ID"
></el-option>
</el-select>
</span>
</li>
<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()"
/>
<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()"
/>
</li>
</ul>
...
...
@@ -80,29 +91,39 @@
<div
style=
"width: 100%;min-height:200px; overflow-x: auto;padding:0 20px; "
class=
"HotelQueryList"
v-loading=
"loading"
>
<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:#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>
<!-- 红日 -->
<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: #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>
<template
v-if=
"isShow"
>
<el-table
v-if=
"dataList.length>0"
:data=
"dataList"
style=
"width:100%"
border
v-loading=
'loading'
:height=
"tableHeight"
>
<el-table-column
fixed
label=
"酒店名称"
min-width=
"180"
>
<!-- 酒店名称 -->
<el-table-column
fixed
label=
"ホテル名"
min-width=
"180"
>
<template
slot-scope=
"scope"
>
<div>
{{
scope
.
row
.
HotelName
}}
</div>
<div>
{{
scope
.
row
.
TotalInventory
}}
</div>
<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
>
</el-table-column>
<el-table-column
label=
"价格&库存"
fixed
min-width=
"120"
>
<!-- 价格库存 -->
<el-table-column
label=
"価格&在庫"
fixed
min-width=
"120"
>
<
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
>
</el-table-column>
<el-table-column
v-for=
'(item,index) in dataList[0].subList'
:label=
"getDateList(item.DateStr)"
:key=
'index'
...
...
@@ -143,7 +164,8 @@
<el-form
label-width=
"80px"
>
<el-row>
<el-col
:span=
"20"
>
<el-form-item
label=
"日期"
>
<!-- 日期 -->
<el-form-item
label=
"日付"
>
<el-date-picker
class=
"w150"
type=
"date"
v-model=
"queryMsg.QStartDate"
:picker-options=
"pickerBeginDateBefore"
value-format=
"yyyy-MM-dd"
placeholder
></el-date-picker>
<el-date-picker
class=
"w150"
type=
"date"
v-model=
"queryMsg.QEndDate"
...
...
@@ -151,19 +173,21 @@
</el-form-item>
</el-col>
<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-row>
<div
class=
"Hq_addDetail"
>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"
说
明"
>
<el-form-item
label=
"
説
明"
>
<quill-editor
class=
"w595"
:options=
"editorOption"
v-model=
"postMsg.TipContent"
></quill-editor>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<input
type=
"button"
class=
"normalBtn"
value=
"保存"
@
click=
"SaveHotelTip()"
/>
<input
type=
"button"
class=
"normalBtn"
value=
"保存
する
"
@
click=
"SaveHotelTip()"
/>
</el-col>
</el-row>
</div>
...
...
@@ -171,11 +195,15 @@
<div>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"HouseTypeList Hq_addTable"
style=
"width:97%;"
>
<tr>
<th
width=
"50"
>
编号
</th>
<!-- 编号 -->
<th
width=
"50"
>
数
</th>
<th>
内容
</th>
<th
width=
"70"
>
操作人
</th>
<th
width=
"150"
>
操作时间
</th>
<th
width=
"80"
>
操作
</th>
<!-- 操作人 -->
<th
width=
"70"
>
オペレーター
</th>
<!-- 操作时间 -->
<th
width=
"150"
>
運用世界
</th>
<!-- 操作 -->
<th
width=
"80"
>
運営
</th>
</tr>
<
template
v-if=
"queryMsg.total>0"
>
<tr
v-for=
"(item,index) in HotelTipList"
>
...
...
@@ -196,7 +224,8 @@
</tr>
</
template
>
<tr
v-else
>
<td
colspan=
"5"
>
暂无数据...
</td>
<!-- 暂无数据 -->
<td
colspan=
"5"
>
まだデータがありません...
</td>
</tr>
</table>
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"queryMsg.currentPage"
...
...
@@ -208,10 +237,14 @@
<el-form>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"HouseTypeList Hq_addTable"
style=
"width:100%;"
>
<tr>
<th
width=
"50"
>
编号
</th>
<!-- 编号 -->
<th
width=
"50"
>
数
</th>
<!-- 内容 -->
<th>
内容
</th>
<th
width=
"70"
>
操作人
</th>
<th
width=
"140"
>
操作时间
</th>
<!-- 操作人 -->
<th
width=
"70"
>
オペレーター
</th>
<!-- 操作时间 -->
<th
width=
"140"
>
運用世界
</th>
</tr>
<
template
v-if=
"queryMsg.total>0"
>
<tr
v-for=
"(item,index) in HotelTipList"
>
...
...
@@ -224,7 +257,8 @@
</tr>
</
template
>
<tr
v-else
>
<td
colspan=
"5"
>
暂无数据...
</td>
<!-- 暂无数据 -->
<td
colspan=
"5"
>
まだデータがありません...
</td>
</tr>
</table>
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"queryMsg.currentPage"
...
...
@@ -232,7 +266,8 @@
</el-pagination>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<button
class=
"hollowFixedBtn"
@
click=
"showHQinfo = false"
>
关闭
</button>
<!-- 关闭 -->
<button
class=
"hollowFixedBtn"
@
click=
"showHQinfo = false"
>
閉じる
</button>
</div>
</el-dialog>
...
...
@@ -241,9 +276,13 @@
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"HouseTypeList Hq_addTable logsTable"
style=
"width:100%;"
>
<tr>
<th
width=
"50"
>
操作人
</th>
<th>
日期
</th>
<th>
操作时间
</th>
<!-- 操作人 -->
<th
width=
"50"
>
オペレーター
</th>
<!-- 日期 -->
<th>
日付
</th>
<!-- 操作时间 -->
<th>
稼働時間
</th>
<!-- 内容 -->
<th
width=
"70"
>
内容
</th>
</tr>
<
template
v-if=
"LogsList.length>0"
>
...
...
@@ -257,7 +296,8 @@
</tr>
</
template
>
<tr
v-else
>
<td
colspan=
"5"
>
暂无数据...
</td>
<!-- 暂无数据 -->
<td
colspan=
"5"
>
まだデータがありません...
</td>
</tr>
</table>
<el-pagination
background
@
current-change=
"handleCurrentChange2"
:current-page
.
sync=
"queryLogMsg.currentPage"
...
...
@@ -265,7 +305,8 @@
</el-pagination>
</el-form>
<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>
</el-dialog>
...
...
@@ -365,7 +406,7 @@
}
},
editorOption
:
{
placeholder
:
'
请输入内容
'
,
placeholder
:
'
内容を入力してください
'
,
modules
:
{
toolbar
:
[
[
'bold'
,
'italic'
,
'underline'
,
'strike'
],
// toggled buttons
...
...
src/components/Supplier/HotelSalesBoard.vue
View file @
9dfa7b49
...
...
@@ -216,22 +216,24 @@
<ul
style=
"position:relative;"
>
<li>
<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)"
: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-select>
<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-select>
</span>
</li>
<li>
<span><em
style=
"min-width:60px;"
>
{{
$t
(
'admin.admin_company'
)
}}
</em>
<el-select
filterable
v-model=
'msg.OutBranchId'
:placeholder=
"$t('pub.unlimitedSel')"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
'-1'
></el-option>
<!-- 公司名称 -->
<span><em
style=
"min-width:60px;"
>
会社名
</em>
<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>
</el-select>
...
...
@@ -239,40 +241,49 @@
</li>
<li>
<span>
<em
style=
"min-width:60px;"
>
酒店
</em>
<el-select
v-model=
"msg.HotelId"
:placeholder=
"$t('pub.pleaseSel')"
filterable
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"defaultSelectValue"
></el-option>
<!-- 酒店 -->
<em
style=
"min-width:60px;"
>
ホテル
</em>
<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-select>
</span>
</li>
<li
style=
"display:none;"
>
<span>
<em>
供应商
</em>
<el-select
v-model=
"msg.Supplier"
placeholder=
"
请选择
"
>
<el-option
:label=
"$t('pub.unlimitedSel')
"
:value=
'0'
></el-option>
<em>
仕入先
</em>
<el-select
v-model=
"msg.Supplier"
placeholder=
"
選択してください
"
>
<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>
</el-select>
</span>
</li>
<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>
</ul>
</div>
<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=
"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_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>
<!-- 红日 -->
<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_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
class=
"month"
>
<ul>
...
...
src/components/Supplier/HotelTotalStock.vue
View file @
9dfa7b49
...
...
@@ -335,21 +335,21 @@
<ul
style=
"position:relative"
>
<li>
<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)"
: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-select>
<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-select>
</span>
</li>
<li>
<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-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>
...
...
@@ -358,8 +358,8 @@
</li>
<li
style=
"display:none;"
>
<span>
<em
style=
"min-width:60px;"
>
供应商
</em>
<el-select
v-model=
"msg.Supplier"
placeholder=
"
请选择
"
>
<em
style=
"min-width:60px;"
>
仕入先
</em>
<el-select
v-model=
"msg.Supplier"
placeholder=
"
選択してください
"
>
<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>
...
...
@@ -369,7 +369,7 @@
<li
class=
'time'
>
<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')"
value-format=
"yyyy-MM-dd"
:picker-options=
"pickerOptions1"
>
</el-date-picker>
...
...
@@ -379,13 +379,13 @@
</div>
</li>
<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>
</ul>
</div>
<div
class=
"hotelTS_box"
>
<div
class=
"noData"
v-show=
"noData"
>
{{
$t
(
'system.content_noData'
)
}}
データなし
</div>
<ul
class=
'clearfix'
v-loading=
"loading"
>
<li
v-for=
"(item,index) in DataList"
>
...
...
@@ -395,7 +395,7 @@
<el-tooltip
effect=
"dark"
:content=
"item.Name"
placement=
"top-start"
>
<p>
{{
item
.
Name
}}
</p>
</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>
</div>
</li>
...
...
src/components/Supplier/roomQuery.vue
View file @
9dfa7b49
...
...
@@ -4,9 +4,10 @@
<ul
style=
"position:relative;"
>
<li>
<span>
<em>
{{
$t
(
'Operation.Op_Country'
)
}}
/
{{
$t
(
'system.query_dest'
)
}}
</em>
<el-select
v-model=
"msg.PlaceID"
filterable
:placeholder=
"$t('pub.pleaseSel')"
@
change=
"getLineTeamList()"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"0"
></el-option>
<!-- 国家/目的地 -->
<em>
国/行き先
</em>
<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"
:key=
"item.LtID"
></el-option>
</el-select>
...
...
@@ -14,9 +15,10 @@
</li>
<li>
<span>
<em>
系列
</em>
<el-select
v-model=
"msg.LineteamId"
filterable
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
label=
"不限"
:value=
'0'
></el-option>
<!-- 系列 -->
<em>
シリーズ
</em>
<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'
:key=
'item.LtID'
>
</el-option>
...
...
@@ -25,23 +27,26 @@
</li>
<li>
<span>
<em>
团号
</em>
<!-- 团号 -->
<em>
グループ番号
</em>
<el-input
v-model=
'msg.TCNUM'
></el-input>
</span>
</li>
<li>
<span>
<em>
酒店
</em>
<el-select
v-model=
"msg.HotelId"
:placeholder=
"$t('pub.pleaseSel')"
filterable
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
'0'
></el-option>
<!-- 酒店 -->
<em>
ホテル
</em>
<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-select>
</span>
</li>
<li><span>
<em>
状态
</em>
<!-- 状态 -->
<em>
都道府県
</em>
<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"
:value=
"team.Id"
v-if=
"team.Id==1 || team.Id==3"
></el-option>
</el-select>
...
...
@@ -49,9 +54,10 @@
</li>
<li>
<span>
<em>
航空公司
</em>
<!-- 航公公司 -->
<em>
航空会社
</em>
<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
v-for=
"item in queryCommonData.AirlineList"
:key=
"item.AirLineId"
:label=
"item.AlName"
:value=
"item.AirLineId"
></el-option>
...
...
@@ -62,7 +68,7 @@
<span>
<em>
OP
</em>
<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
v-for=
"item in queryCommonData.EmployeeList"
:label=
"item.EmName"
:value=
"item.EmployeeId"
:key=
"item.EmployeeId"
></el-option>
...
...
@@ -71,13 +77,15 @@
</li>
<li>
<span>
<em>
地接团号
</em>
<!-- 地接团号 -->
<em>
アース接続番号
</em>
<el-input
v-model=
'msg.CombinationNum'
></el-input>
</span>
</li>
<li>
<span>
<em>
出团公司
</em>
<!-- 公司 -->
<em>
会社
</em>
<el-select
v-model=
"msg.OutBranchIds"
filterable
multiple
class=
"multiple_input"
:placeholder=
"$t('pub.pleaseSel')"
>
<el-option
v-for=
"item in queryCommonData.BranchList"
:label=
'item.BName'
:value=
'item.Id'
:key=
'item.Id'
>
...
...
@@ -87,7 +95,8 @@
</li>
<li>
<span>
<em>
日期
</em>
<!-- 日期 -->
<em>
日付
</em>
<el-date-picker
v-model=
'msg.StartDate'
class=
'w135'
value-format=
"yyyy-MM-dd"
type=
"date"
:picker-options=
"pickerBeginDateBefore"
></el-date-picker>
-
...
...
@@ -96,34 +105,51 @@
</span>
</li>
<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>
</ul>
</div>
<div
style=
"width: 100%; overflow-x: auto;padding-bottom: 10px; "
class=
"ownScrollbarStyle"
>
<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;"
>
颜色说明:
<span
class=
"rq_span1"
>
未操作
</span><span
class=
"rq_span2"
>
操作中
</span><span
class=
"rq_span3"
>
操作完成
</span><span
class=
"rq_span4"
>
机位数和人数不相符
</span>
<!-- 每次导出数据最好不要超过一个月 -->
<div
style=
"display:inline-block;color:red"
>
注意事項:データをエクスポートするたびに1か月を超えないことをお勧めします。
</div>
<!-- 颜色说明 -->
<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><br
/>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"roomQuery_SupplierTable"
v-loading=
'loading'
>
<tr>
<th
width=
"100"
>
序号
</th>
<th
width=
"120"
>
出发地
</th>
<th
width=
"100"
>
公司团号
</th>
<th
width=
"80"
>
团队状态
</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>
<!-- 序号 -->
<th
width=
"100"
>
シリアル番号
</th>
<!-- 出发地 -->
<th
width=
"120"
>
出発地
</th>
<!-- 公司团号 -->
<th
width=
"100"
>
会社グループ番号
</th>
<!-- 团队状态 -->
<th
width=
"80"
>
チームの状態
</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
v-if=
"dataList.length==0"
>
<td
colspan=
"9"
>
暂无数据
</td>
<!-- 暂无数据 -->
<td
colspan=
"9"
>
まだデータがありません
</td>
</tr>
<template
v-for=
"(item,index) in dataList"
>
<template
v-for=
"(subItem,subIndex) in item.subList"
>
...
...
src/components/Supplier/roomQuery2.vue
View file @
9dfa7b49
...
...
@@ -4,35 +4,49 @@
<ul
style=
"position:relative;"
>
<li>
<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>
</span>
</li>
<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>
</ul>
</div>
<div
style=
"width: 100%; overflow-x: auto;padding-bottom: 10px; "
class=
"ownScrollbarStyle"
>
<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;"
>
颜色说明:
<span
class=
"rq_span1"
>
新增团体
</span><span
class=
"rq_span2"
>
取消团体
</span>
<span
class=
"rq_span3"
>
酒店提醒
</span>
<!-- 每次导出数据最好不要超过一个月 -->
<div
style=
"display:inline-block;color:red;display:none"
>
注意事項:データをエクスポートするたびに1か月を超えないことをお勧めします。
</div>
<!-- 颜色说明 -->
<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><br
/>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"roomQuery_SupplierTable"
v-loading=
'loading'
>
<tr>
<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=
"150"
>
酒店详情
</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=
"150"
>
ホテルの詳細
</th>
</tr>
<tbody
v-for=
"(item,index) in dataList"
>
<tr>
...
...
src/components/SupplierIndex.vue
View file @
9dfa7b49
...
...
@@ -613,10 +613,15 @@
<div
style=
"width: 100%;min-height:200px; overflow-x: auto;padding:0 20px; "
class=
"HotelQueryList"
v-loading=
"loading"
>
<div
style=
"margin:20px 0"
>
<!-- 红日 -->
<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: #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>
<template
v-if=
"isShow"
>
...
...
@@ -731,7 +736,8 @@
</tr>
</
template
>
<tr
v-else
>
<td
colspan=
"5"
>
暂无数据...
</td>
<!-- 暂无数据 -->
<td
colspan=
"5"
>
まだデータがありません...
</td>
</tr>
</table>
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"queryMsg.currentPage"
...
...
@@ -743,9 +749,12 @@
<el-form>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
class=
"HouseTypeList Hq_addTable"
style=
"width:100%;"
>
<tr>
<!-- 编号 -->
<th
width=
"50"
>
数
</th>
<th>
内容
</th>
<!-- 运营商 -->
<th
width=
"70"
>
オペレーター
</th>
<!-- 运营时间 -->
<th
width=
"140"
>
稼働時間
</th>
</tr>
<
template
v-if=
"queryMsg.total>0"
>
...
...
@@ -759,7 +768,8 @@
</tr>
</
template
>
<tr
v-else
>
<td
colspan=
"5"
>
暂无数据...
</td>
<!-- 暂无数据 -->
<td
colspan=
"5"
>
まだデータがありません...
</td>
</tr>
</table>
<el-pagination
background
@
current-change=
"handleCurrentChange"
:current-page
.
sync=
"queryMsg.currentPage"
...
...
@@ -767,7 +777,8 @@
</el-pagination>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<button
class=
"hollowFixedBtn"
@
click=
"showHQinfo = false"
>
关闭
</button>
<!-- 关闭 -->
<button
class=
"hollowFixedBtn"
@
click=
"showHQinfo = false"
>
閉じる
</button>
</div>
</el-dialog>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment