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
6763e52f
Commit
6763e52f
authored
1 year ago
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
71ff59b8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
8 deletions
+30
-8
CostNewPriceCC.vue
...nents/TravelManager/TravelNewQuotation/CostNewPriceCC.vue
+22
-8
priceDialog.vue
...mponents/TravelManager/TravelNewQuotation/priceDialog.vue
+8
-0
No files found.
src/components/TravelManager/TravelNewQuotation/CostNewPriceCC.vue
View file @
6763e52f
...
@@ -216,7 +216,7 @@
...
@@ -216,7 +216,7 @@
{{OtherPrice.AirTicketMoeny}}
{{OtherPrice.AirTicketMoeny}}
</el-form-item>
</el-form-item>
</td>
</td>
<td
colspan=
"2"
>
<td>
<el-form-item
label=
"中段机票"
>
<el-form-item
label=
"中段机票"
>
{{OtherPrice.InlandAirTicketMoney}}
{{OtherPrice.InlandAirTicketMoney}}
</el-form-item>
</el-form-item>
...
@@ -231,7 +231,7 @@
...
@@ -231,7 +231,7 @@
{{teamPrice.UnionPrice}}
{{teamPrice.UnionPrice}}
</el-form-item>
</el-form-item>
</td>
</td>
<td
colspan=
"
5
"
rowspan=
"2"
>
<td
colspan=
"
6
"
rowspan=
"2"
>
小计(机票+中段机票+税金+联运+领队导游分摊+过夜+签证+保险):
小计(机票+中段机票+税金+联运+领队导游分摊+过夜+签证+保险):
<br
/>
{{getCostTotalMoney()}}
<br
/>
{{getCostTotalMoney()}}
</td>
</td>
...
@@ -242,7 +242,7 @@
...
@@ -242,7 +242,7 @@
{{OtherPrice.AirTicketShareMoney}}
{{OtherPrice.AirTicketShareMoney}}
</el-form-item>
</el-form-item>
</td>
</td>
<td
colspan=
"2"
>
<td>
<el-form-item
label=
"过夜"
>
<el-form-item
label=
"过夜"
>
{{teamPrice.NightPrice}}
{{teamPrice.NightPrice}}
</el-form-item>
</el-form-item>
...
@@ -273,13 +273,14 @@
...
@@ -273,13 +273,14 @@
</el-form-item>
</el-form-item>
</td>
</td>
<td
colspan=
"2"
>
<td
colspan=
"2"
>
<el-form-item
label=
"儿童占床"
>
<el-form-item
label=
"儿童
不
占床"
>
{{teamPrice.ChildNeedPrice}}
{{teamPrice.ChildN
oN
eedPrice}}
</el-form-item>
</el-form-item>
</td>
</td>
<td
colspan=
"2"
>
<td
colspan=
"2"
>
<el-form-item
label=
"儿童
不
占床"
>
<el-form-item
label=
"儿童占床"
>
{{teamPrice.ChildN
oN
eedPrice}}
{{teamPrice.ChildNeedPrice}}
</el-form-item>
</el-form-item>
</td>
</td>
<td
colspan=
"6"
>
<td
colspan=
"6"
>
...
@@ -289,6 +290,19 @@
...
@@ -289,6 +290,19 @@
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
colspan=
"2"
>
<el-form-item
label=
"主OP"
>
{{postConfig.OPName}}
</el-form-item>
</td>
<td
colspan=
"3"
>
<el-form-item
label=
"助理OP:"
>
<
template
v-if=
"postConfig.Assistantlist&&postConfig.Assistantlist.length>0"
>
<span
v-for=
"(subItem,subIndex) in postConfig.Assistantlist"
:key=
"subIndex"
style=
"padding-left:3px;"
>
{{
subItem
.
Name
}}
</span>
</
template
>
</el-form-item>
</td>
<td
colspan=
"2"
>
<td
colspan=
"2"
>
<el-form-item
label=
"付款方式"
>
<el-form-item
label=
"付款方式"
>
<
template
v-if=
"postConfig.SaleOfferPayType==1"
>
<
template
v-if=
"postConfig.SaleOfferPayType==1"
>
...
@@ -302,7 +316,7 @@
...
@@ -302,7 +316,7 @@
</
template
>
</
template
>
</el-form-item>
</el-form-item>
</td>
</td>
<td
colspan=
"
11
"
>
<td
colspan=
"
6
"
>
附件:
<
template
v-if=
"teamPrice.ContractArray&& teamPrice.ContractArray.length>0"
>
附件:
<
template
v-if=
"teamPrice.ContractArray&& teamPrice.ContractArray.length>0"
>
<template
v-for=
"(subItem,subIndex) in teamPrice.ContractArray"
>
<template
v-for=
"(subItem,subIndex) in teamPrice.ContractArray"
>
<a
style=
"margin-left:20px;color:blue;cursor:pointer;"
target=
"_blank"
:key=
"subIndex"
<a
style=
"margin-left:20px;color:blue;cursor:pointer;"
target=
"_blank"
:key=
"subIndex"
...
...
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelNewQuotation/priceDialog.vue
View file @
6763e52f
...
@@ -180,6 +180,8 @@
...
@@ -180,6 +180,8 @@
ManagerAduitDate
:
""
,
//欧洲线审核日期
ManagerAduitDate
:
""
,
//欧洲线审核日期
ManagerAduitName
:
""
,
//欧洲线审核人员
ManagerAduitName
:
""
,
//欧洲线审核人员
ManagerAduitStatus
:
0
,
//欧洲线审核状态(1-通过,2-驳回)
ManagerAduitStatus
:
0
,
//欧洲线审核状态(1-通过,2-驳回)
OPName
:
""
,
//主OP
AssistantList
:
[],
//助理OP
},
},
dayCostPriceList
:
[],
//报价列表
dayCostPriceList
:
[],
//报价列表
...
@@ -340,6 +342,12 @@
...
@@ -340,6 +342,12 @@
if
(
offerObj
.
ManagerAduitStatus
)
{
if
(
offerObj
.
ManagerAduitStatus
)
{
this
.
postData
.
ManagerAduitStatus
=
offerObj
.
ManagerAduitStatus
;
this
.
postData
.
ManagerAduitStatus
=
offerObj
.
ManagerAduitStatus
;
}
}
if
(
offerObj
.
OPName
&&
offerObj
.
OPName
!=
''
)
{
this
.
postData
.
OPName
=
offerObj
.
OPName
;
}
if
(
offerObj
.
AssistantList
&&
offerObj
.
AssistantList
.
length
>
0
)
{
this
.
postData
.
Assistantlist
=
offerObj
.
AssistantList
;
}
}
}
this
.
currentData
=
tempData
.
OfferArray
.
find
(
item
=>
item
.
IsDefault
);
this
.
currentData
=
tempData
.
OfferArray
.
find
(
item
=>
item
.
IsDefault
);
...
...
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