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
f1e36eb9
Commit
f1e36eb9
authored
Feb 17, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
2cf8e49c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
84 additions
and
43 deletions
+84
-43
trip.vue
src/components/trip/trip.vue
+4
-4
index.ts
src/i18n/zh-TW/index.ts
+41
-1
detailsNew.vue
src/pages/scheduledTrip/detailsNew.vue
+39
-38
No files found.
src/components/trip/trip.vue
View file @
f1e36eb9
<
template
>
<div
class=
"q-mt-lg"
:class=
"
{'q-px-md':$q.platform.is.mobile}">
<div
class=
"text-subtitle1 text-weight-bold row items-center"
>
<span
class=
"col"
>
每日行程
</span>
<span
class=
"col"
>
{{
$t
(
'v103.details.daily'
)
}}
</span>
<span
class=
""
>
<q-chip
class=
"bg-transparent text-weight-light text-grey-7 f12"
icon=
"iconfont icontime"
:label=
"`
行程時間:$
{trip.dayList.length}天
`" />
<q-chip
class=
"bg-transparent text-weight-light text-grey-7 f12"
icon=
"iconfont icontime"
:label=
"`
$
{$t('v103.details.headerlabel.d2')}:${trip.dayList.length}${$t('v103.details.headerlabel.d21')}
`" />
</span>
</div>
<q-tabs
...
...
@@ -15,8 +15,8 @@
active-class=
"text-primary"
dense
>
<q-tab
name=
"image"
@
click=
"changeHandler()"
icon=
"iconfont iconimage"
class=
"no-padding q-mr-lg"
label=
"圖文模式
"
/>
<q-tab
name=
"dates"
@
click=
"changeHandler()"
icon=
"iconfont iconrili"
class=
"no-padding q-mr-lg"
label=
"日曆模式
"
/>
<q-tab
name=
"image"
@
click=
"changeHandler()"
icon=
"iconfont iconimage"
class=
"no-padding q-mr-lg"
:label=
"$t('v103.details.graphicmode')
"
/>
<q-tab
name=
"dates"
@
click=
"changeHandler()"
icon=
"iconfont iconrili"
class=
"no-padding q-mr-lg"
:label=
"$t('v103.details.calendarmode')
"
/>
</q-tabs>
<list
:days=
"trip.dayList"
v-if=
"displayType=='image'"
></list>
<calendar
:days=
"trip.dayList"
v-if=
"displayType=='dates'"
></calendar>
...
...
src/i18n/zh-TW/index.ts
View file @
f1e36eb9
...
...
@@ -1110,7 +1110,47 @@ export default {
},
details
:{
since
:
'起'
,
selectionscheme
:
'選擇方案'
selectionscheme
:
'選擇方案'
,
headerlabel
:{
d1
:
'印象自組團'
,
d2
:
'行程時間'
,
d21
:
'天'
,
d3
:
'日本語/中文 導覽'
,
d4
:
'15天前可免費取消'
,
},
nooffer
:
'暫無報價'
,
selectdate
:
'選擇日期、選項'
,
travelplan
:
'行程標準出行方案'
,
deselect
:
'取消選擇'
,
choose
:
'選擇'
,
earliest
:
'最早可預訂日期'
,
thisscheme
:
'關於此方案'
,
confirmationtime
:
'6個工作日內(不含例休假)確認'
,
righttitle
:{
d1
:
'行程特色'
,
d2
:
'行程介紹'
,
d3
:
'費用說明'
,
d31
:
'費用包含'
,
d32
:
'費用不含'
,
d4
:
'購買須知'
,
d5
:
'溫馨提示'
,
d6
:
'取消政策'
,
d7
:
'所选日期 15 天(含)之前取消,收取手续费 0%'
,
d8
:
'所选日期 8 ~ 14 天之间取消,收取手续费 30%'
,
d9
:
'所选日期 4 ~ 7 天之间取消,收取手续费 50%'
,
d10
:
'所选日期 1 ~ 3 天之间取消,收取手续费 80%'
,
d11
:
'所选日期 0 ~ 0 天之间取消,收取手续费 100%'
,
d12
:
'注意:由于站内商品来自全球各地,订单取消时间将依该供应商所在时区判定。供应商需 2-5 个工作天进行取消流程,依照您购买的商品取消政策收取手续费,并于取消流程完成后14 个工作天内退款。'
,
},
warnbuytext
:{
d1
:
'未满 2 岁幼儿不占位可免费参加(不含座位,餐点,门票,床位),请先于下订时在「备注栏」告知。'
,
d2
:
'如需要單人房,請購買單房'
,
d3
:
'不占床2-11(包含)岁幼童可购买儿童价,如需占床請購買成人價'
,
d4
:
'12歲以上皆視同成人售價'
,
},
daily
:
'每日行程'
,
graphicmode
:
'圖文模式'
,
calendarmode
:
'日曆模式'
}
}
//#endregion
...
...
src/pages/scheduledTrip/detailsNew.vue
View file @
f1e36eb9
This diff is collapsed.
Click to expand it.
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