Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bigwood
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
罗超
bigwood
Commits
ce5e3efc
Commit
ce5e3efc
authored
Aug 24, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
f37f6c2b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
796 additions
and
347 deletions
+796
-347
didahotel.ts
src/api/didahotel.ts
+37
-0
DidaHeader.vue
src/components/scattered/dida/DidaHeader.vue
+471
-183
DidaListTable.vue
src/components/scattered/dida/DidaListTable.vue
+283
-161
index.ts
src/i18n/ja-RB/index.ts
+1
-1
index.ts
src/i18n/ko-HG/index.ts
+1
-1
index.ts
src/i18n/zh-TW/index.ts
+1
-0
didaHotel.vue
src/pages/scattered/didaHotel.vue
+2
-1
No files found.
src/api/didahotel.ts
0 → 100644
View file @
ce5e3efc
import
{
HttpResponse
}
from
'../@types'
import
request
from
'./request'
//道旅酒店API
class
DidaService
{
//获取道旅酒店类型
static
async
GetDidaPropertyCategory
(
param
:
any
):
Promise
<
HttpResponse
>
{
return
request
(
'dmc_post_Get_GetJAPAN_HotelList'
,
param
,
false
)
}
//获取道旅餐食类型
static
async
GetDidaMealType
(
param
:
any
):
Promise
<
HttpResponse
>
{
return
request
(
'dmc_post_Get_GetJAPAN_HotelList'
,
param
,
false
)
}
//道旅城市
static
async
GetDidaCity
(
param
:
any
):
Promise
<
HttpResponse
>
{
return
request
(
'dmc_post_Get_GetJAPAN_HotelList'
,
param
,
false
)
}
//道旅床型
static
async
GetDidaBedType
(
param
:
any
):
Promise
<
HttpResponse
>
{
return
request
(
'dmc_post_Get_GetJAPAN_HotelList'
,
param
,
false
)
}
// 道旅酒店列表
static
async
GetDidaHotelList
(
param
:
any
):
Promise
<
HttpResponse
>
{
param
.
reviewRatingUpperLimits
=
param
.
reviewRatingUpperLimits
&&
param
.
reviewRatingUpperLimits
!=
''
?
param
.
reviewRatingUpperLimits
:
0
param
.
reviewRatingLowerLimits
=
param
.
reviewRatingLowerLimits
&&
param
.
reviewRatingLowerLimits
!=
''
?
param
.
reviewRatingLowerLimits
:
0
param
.
searchMaxRate
=
param
.
searchMaxRate
&&
param
.
searchMaxRate
!=
''
?
param
.
searchMaxRate
:
0
param
.
searchMinRate
=
param
.
searchMinRate
&&
param
.
searchMinRate
!=
''
?
param
.
searchMinRate
:
0
return
request
(
'dmc_post_Get_GetJAPAN_HotelList'
,
param
,
false
)
}
}
export
default
DidaService
src/components/scattered/dida/DidaHeader.vue
View file @
ce5e3efc
This diff is collapsed.
Click to expand it.
src/components/scattered/dida/DidaListTable.vue
View file @
ce5e3efc
This diff is collapsed.
Click to expand it.
src/i18n/ja-RB/index.ts
View file @
ce5e3efc
...
...
@@ -334,7 +334,7 @@ export default {
first
:
'個人客の予定です'
,
second
:
'ホテル検索'
,
three
:
'ホテル注文'
,
didaName
:
'道旅
酒店
'
,
didaName
:
'道旅
ホテル
'
,
},
car
:
{
first
:
'車両予約'
,
...
...
src/i18n/ko-HG/index.ts
View file @
ce5e3efc
...
...
@@ -334,7 +334,7 @@ export default {
first
:
'산행객 예약'
,
second
:
'호텔 검색'
,
three
:
'호텔 주문서'
,
didaName
:
'
道旅酒店
'
,
didaName
:
'
다오뤼호텔
'
,
},
car
:
{
first
:
'차량 예약'
,
...
...
src/i18n/zh-TW/index.ts
View file @
ce5e3efc
...
...
@@ -531,6 +531,7 @@ export default {
}
},
scattered
:
{
kefang
:
'客房'
,
chengren
:
'成人'
,
ertong
:
'兒童'
,
...
...
src/pages/scattered/didaHotel.vue
View file @
ce5e3efc
...
...
@@ -45,7 +45,8 @@
t
}
=
useI18n
()
const
pageTitle
=
inject
(
DirtionmaryHelper
.
PAGE_TITLE_KEY
)
as
any
pageTitle
.
value
=
t
(
'hotel.pageTitle'
)
pageTitle
.
value
=
t
(
'menu.scattered.didaName'
)
setTitle
(
pageTitle
.
value
)
const
search
=
reactive
({
arrivalDate
:
''
,
//开始日期
...
...
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