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
0ffca828
Commit
0ffca828
authored
Dec 13, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合同文字调整
parent
97f64586
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
82 additions
and
10 deletions
+82
-10
TravelContractDetail.vue
src/components/TravelContractDetail.vue
+28
-3
TravelContractNew.vue
src/components/TravelContractNew.vue
+26
-4
clientConfirm.vue
src/components/clientConfirm.vue
+28
-3
No files found.
src/components/TravelContractDetail.vue
View file @
0ffca828
...
...
@@ -648,9 +648,29 @@
</p>
<h3>
第二十一条 旅游费用及支付(以人民币为计算单位)
</h3>
<p>
成人:
<span>
{{dataList.adultPrice}}
</span>
元/人,儿童(不满14岁):
<span>
{{dataList.childPrice}}
</span>
元/人;其中,导游服务费
<span>
{{dataList.servicePrice}}
</span>
元/人;
成人:
<span>
{{dataList.adultPrice}}
</span><
template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
/人,儿童(不满14岁):
<span>
{{dataList.childPrice}}
</span><
template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
/人;其中,导游服务费
<span>
{{dataList.servicePrice}}
</span><
template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
/人;
</p>
<p>
旅游费用合计:
<span>
{{dataList.orderPrice}}
</span>
元。
</p>
<p>
旅游费用合计:
<span>
{{dataList.orderPrice}}
</span><
template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
。
</p>
<p>
旅游费用支付方式:
<span
v-if=
"dataList.payType==1"
>
现金
</span>
<span
v-if=
"dataList.payType==2"
>
转账
</span>
...
...
@@ -918,7 +938,12 @@
<td
width=
"10%"
>
具体时间
</td>
<td
width=
"15%"
>
地点
</td>
<td
width=
"15%"
>
项目名称和内容
</td>
<td
width=
"15%"
>
费用(元)
</td>
<td
width=
"15%"
>
费用(
<
template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
)
</td>
<td
width=
"15%"
>
项目时长(分钟)
</td>
<td
width=
"15%"
>
其他说明
</td>
<td
width=
"10%"
>
旅游者签名同意
</td>
...
...
src/components/TravelContractNew.vue
View file @
0ffca828
...
...
@@ -568,21 +568,38 @@
<tr>
<td>
<el-form-item
label=
"成人价"
prop=
"adultPrice"
>
<el-input
type=
"text"
class=
"w300"
v-model=
"CtObj.adultPrice"
></el-input>
元/人
<el-input
type=
"text"
class=
"w300"
v-model=
"CtObj.adultPrice"
></el-input>
<
template
v-if=
"CtObj.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
/人
</el-form-item>
</td>
</tr>
<tr>
<td>
<el-form-item
label=
"儿童(不满14岁的)"
>
<el-input
type=
"text"
class=
"w300"
v-model=
"CtObj.childPrice"
></el-input>
元/人
<el-input
type=
"text"
class=
"w300"
v-model=
"CtObj.childPrice"
></el-input>
<
template
v-if=
"CtObj.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
/人
</el-form-item>
</td>
</tr>
<tr>
<td>
<el-form-item
label=
"导游服务费"
prop=
"servicePrice"
>
<el-input
type=
"text"
class=
"w300"
v-model=
"CtObj.servicePrice"
></el-input>
元/人
<el-input
type=
"text"
class=
"w300"
v-model=
"CtObj.servicePrice"
></el-input>
<
template
v-if=
"CtObj.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
/人
</el-form-item>
</td>
</tr>
...
...
@@ -1082,7 +1099,12 @@
<th
width=
"10%"
>
具体时间
</th>
<th
width=
"15%"
>
地点
</th>
<th
width=
"12%"
>
项目名称和内容
</th>
<th
width=
"12%"
>
费用(元)
</th>
<th
width=
"12%"
>
费用(
<
template
v-if=
"CtObj.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
)
</th>
<th
width=
"12%"
>
项目时长(分钟)
</th>
<th
width=
"12%"
>
其他说明
</th>
<th
width=
"12%"
>
旅游者签名同意
</th>
...
...
src/components/clientConfirm.vue
View file @
0ffca828
...
...
@@ -846,8 +846,28 @@
<p
class=
"toTopDistance"
>
第二十一条 旅游费用及支付(以人民币为计算单位)
</p>
</h3>
<p>
成人
<font>
{{
dataList
.
adultPrice
}}
</font>
元/人,儿童(不满14岁)
<font>
{{
dataList
.
childPrice
}}
</font>
元/人;其中,导游服务费
<font>
{{
dataList
.
servicePrice
}}
</font>
元/人;旅游费用合计:
<font>
{{
dataList
.
orderPrice
}}
</font>
元。
成人
<font>
{{
dataList
.
adultPrice
}}
</font><template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
/人,儿童(不满14岁)
<font>
{{dataList.childPrice}}
</font><
template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
/人;其中,导游服务费
<font>
{{dataList.servicePrice}}
</font><
template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
/人;旅游费用合计:
<font>
{{dataList.orderPrice}}
</font><
template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
。
</p>
<p>
旅游费用支付方式:
<font
v-if=
"dataList.payType==1"
>
现金
</font>
...
...
@@ -1175,7 +1195,12 @@
<th>
具体时间
</th>
<th>
地点
</th>
<th>
项目名称和内容
</th>
<th>
费用(元)
</th>
<th>
费用(
<
template
v-if=
"dataList.signType==0"
>
元
</
template
>
<
template
v-else
>
円
</
template
>
)
</th>
<th>
项目时长(分钟)
</th>
<th>
其他说明
</th>
<th>
旅游者签名同意
</th>
...
...
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