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
450a1b57
Commit
450a1b57
authored
1 month ago
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报价单调整
parent
dda24ee4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2948 additions
and
598 deletions
+2948
-598
EditOffer.vue
...components/TravelManager/TravelNewQuotation/EditOffer.vue
+43
-8
NewQuotationAduit.vue
...ts/TravelManager/TravelNewQuotation/NewQuotationAduit.vue
+289
-0
OfferCostNewPriceAudit.vue
...avelManager/TravelNewQuotation/OfferCostNewPriceAudit.vue
+1374
-0
SWTAuditDan.vue
...mponents/TravelManager/TravelNewQuotation/SWTAuditDan.vue
+473
-300
quoTation.vue
...ponents/TravelManager/TravelQuotationCenter/quoTation.vue
+761
-289
config.js
src/router/config.js
+8
-1
No files found.
src/components/TravelManager/TravelNewQuotation/EditOffer.vue
View file @
450a1b57
...
...
@@ -149,7 +149,7 @@
@
keyup
.
native=
"checkInteger(postData,'DayNum');createDayTripPrice()"
maxlength=
"2"
>
<
template
slot=
"append"
>
{{
$t
(
'hotel.hotel_day'
)
}}
</
template
>
</el-input>
<el-input
class=
"w120 LowNum"
v-model=
"postData.NightNum"
style=
"display:none;"
<el-input
class=
"w120 LowNum"
v-model=
"postData.NightNum"
@
keyup
.
native=
"checkInteger(postData,'NightNum')"
maxlength=
"2"
>
<
template
slot=
"append"
>
{{
$t
(
'Operation.Op_night'
)
}}
</
template
>
</el-input>
...
...
@@ -186,7 +186,7 @@
<td
colspan=
"5"
>
<
template
v-if=
"postData.OutDateTimeList&&postData.OutDateTimeList.length>0"
>
<el-tag
v-for=
"(item,oIndex) in postData.OutDateTimeList"
:key=
"item"
closable
style=
"margin-right:5px;"
@
close=
"handleClose(oIndex)"
>
style=
"margin-right:5px;"
@
close=
"handleClose(
item,
oIndex)"
>
{{
item
}}
</el-tag>
</
template
>
...
...
@@ -243,6 +243,7 @@
haveData
:
false
,
//基本配置
postData
:
{
BatchNum
:
""
,
ID
:
0
,
TCID
:
0
,
OfferId
:
0
,
...
...
@@ -369,13 +370,32 @@
TeamListArr
:
[],
//团队子类型
companyList
:
[],
//出团公司列表
AllCurrencyList
:
[],
//币种列表
loading
:
false
loading
:
false
,
rParams
:
{
OfferId
:
0
,
TCID
:
0
,
BatchNum
:
""
},
};
},
methods
:
{
//删除日期
handleClose
(
index
)
{
this
.
postData
.
OutDateTimeList
.
splice
(
index
,
1
);
handleClose
(
item
,
index
)
{
if
(
this
.
postData
.
BatchNum
&&
this
.
postData
.
BatchNum
!=
''
)
{
var
postMsg
=
{
BatchNum
:
this
.
postData
.
BatchNum
,
Date
:
item
}
this
.
apipost
(
"travel_post_RemoveTravelOffer"
,
postMsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
postData
.
OutDateTimeList
.
splice
(
index
,
1
);
}
});
}
else
{
this
.
postData
.
OutDateTimeList
.
splice
(
index
,
1
);
}
},
changeTeamType
()
{
this
.
postData
.
LineId
=
0
;
...
...
@@ -536,7 +556,7 @@
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
Success
(
res
.
data
.
message
);
this
.
goUrl
(
'
newQuot
ation'
);
this
.
goUrl
(
'
quoT
ation'
);
}
else
{
this
.
ErrorHtml
(
res
.
data
.
message
);
}
...
...
@@ -559,17 +579,23 @@
if
(
this
.
$route
.
query
.
offerid
)
{
offerId
=
this
.
$route
.
query
.
offerid
;
}
let
BatchNum
=
""
;
if
(
this
.
$route
.
query
.
BatchNum
)
{
BatchNum
=
this
.
$route
.
query
.
BatchNum
;
}
let
msg
=
{
offerId
:
offerId
,
TCID
:
0
,
BatchNum
:
BatchNum
};
if
(
this
.
$route
.
query
.
TCID
&&
this
.
$route
.
query
.
TCID
>
0
)
{
msg
.
TCID
=
this
.
$route
.
query
.
TCID
}
this
.
loading
=
true
;
this
.
apipost
(
"travel_get_GetMyTravelInfo_V
4
"
,
msg
,
"travel_get_GetMyTravelInfo_V
5
"
,
msg
,
res
=>
{
console
.
log
(
"travel_get_GetMyTravelInfo_V5"
,
res
);
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
var
tempData
=
res
.
data
.
data
;
...
...
@@ -609,6 +635,9 @@
if
(
tempData
.
OutDateTime
)
{
this
.
postData
.
OutDateTime
=
tempData
.
OutDateTime
;
}
if
(
tempData
.
OutDateTimeList
)
{
this
.
postData
.
OutDateTimeList
=
tempData
.
OutDateTimeList
;
}
if
(
tempData
.
OutBranchName
&&
tempData
.
OutBranchName
!=
''
)
{
this
.
postData
.
OutBranchId
=
Number
(
tempData
.
OutBranchId
);
}
...
...
@@ -654,10 +683,16 @@
created
()
{
if
(
this
.
$route
.
query
.
offerid
&&
this
.
$route
.
query
.
offerid
>
0
)
{
this
.
postData
.
OfferId
=
this
.
$route
.
query
.
offerid
;
this
.
rParams
.
OfferId
=
this
.
$route
.
query
.
offerid
}
if
(
this
.
$route
.
query
.
BatchNum
)
{
this
.
postData
.
BatchNum
=
this
.
$route
.
query
.
BatchNum
;
this
.
rParams
.
BatchNum
=
this
.
$route
.
query
.
BatchNum
;
}
//从团控列表跳转信息
if
(
this
.
$route
.
query
.
TCID
&&
this
.
$route
.
query
.
TCID
>
0
)
{
this
.
postData
.
TCID
=
this
.
$route
.
query
.
TCID
this
.
postData
.
TCID
=
this
.
$route
.
query
.
TCID
;
this
.
rParams
.
TCID
=
this
.
$route
.
query
.
TCID
;
}
//团控列表跳转参数结束
this
.
getCompanyList
();
...
...
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelNewQuotation/NewQuotationAduit.vue
0 → 100644
View file @
450a1b57
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelNewQuotation/OfferCostNewPriceAudit.vue
0 → 100644
View file @
450a1b57
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelNewQuotation/SWTAuditDan.vue
View file @
450a1b57
This diff is collapsed.
Click to expand it.
src/components/TravelManager/TravelQuotationCenter/quoTation.vue
View file @
450a1b57
This diff is collapsed.
Click to expand it.
src/router/config.js
View file @
450a1b57
...
...
@@ -3836,7 +3836,14 @@ export default {
title
:
'报价单审核'
},
},
{
//新版报价单审核
path
:
'/NewQuotationAduit'
,
name
:
'NewQuotationAduit'
,
component
:
resolve
=>
require
([
'@/components/TravelManager/TravelNewQuotation/NewQuotationAduit'
],
resolve
),
meta
:
{
title
:
'报价单审核'
},
},
{
//团控-我的机票
path
:
'/TravelMyTicket'
,
name
:
'TravelMyTicket'
,
...
...
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