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
f759814b
Commit
f759814b
authored
Oct 20, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
233ac211
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
15 deletions
+51
-15
AuditDan.vue
src/components/TravelManager/TravelGroupControl/AuditDan.vue
+33
-1
CostNewPriceAudit.vue
...ts/TravelManager/TravelNewQuotation/CostNewPriceAudit.vue
+13
-13
QuotationAduit.vue
...nents/TravelManager/TravelNewQuotation/QuotationAduit.vue
+5
-1
No files found.
src/components/TravelManager/TravelGroupControl/AuditDan.vue
View file @
f759814b
...
...
@@ -138,7 +138,7 @@
<p
class=
"Quo_Content"
style=
"padding-right:20px;width:100%;"
v-if=
"item.CustomerName"
>
<span>
{{item.CustomerName}}
</span>
</p>
<p
class=
"Quo_Content"
style=
"padding-right:20px;width:100%;"
>
<p
class=
"Quo_Content"
style=
"padding-right:20px;width:100%;"
>
<span>
出团公司:{{item.OutBranchName}}
</span>
</p>
...
...
@@ -262,6 +262,11 @@
<span
@
click=
"offerAudit(item,2)"
>
审
</span>
</el-tooltip>
</span>
<span
class=
"openGroup opbdList"
v-if=
"item.TravelState==3"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"驳回重新调整"
placement=
"top-start"
popper-class=
"max-w250"
>
<span
@
click=
"refuseOffer(item)"
>
驳
</span>
</el-tooltip>
</span>
<span
class=
"openGroup opbdList"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"日志"
placement=
"top-start"
popper-class=
"max-w250"
>
<el-popover
popper-class=
"salsSetPrice"
trigger=
"click"
>
...
...
@@ -461,6 +466,33 @@
}
});
},
//驳回报价单
refuseOffer
(
item
)
{
var
that
=
this
;
var
nObj
=
{
ID
:
item
.
ID
,
AuditContent
:
"驳回"
,
TravelState
:
4
,
OfferPayType
:
0
,
TeamType
:
item
.
TeamType
,
};
var
str
=
"是否要驳回【"
+
item
.
TCNUMS
+
"】的报价单?"
;
this
.
Confirm
(
str
,
function
()
{
that
.
apipost
(
"travel_get_AuditTravelOffer"
,
nObj
,
res
=>
{
that
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
that
.
Success
(
res
.
data
.
message
);
that
.
getList
();
}
else
{
that
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
});
},
getCompanyList
()
{
//出团公司
this
.
apipost
(
...
...
src/components/TravelManager/TravelNewQuotation/CostNewPriceAudit.vue
View file @
f759814b
...
...
@@ -472,18 +472,18 @@
{{
getLocalJpyTotalMoney
(
subItem
.
PeopleNumber
)
}}
</td>
<td
colspan=
"2"
>
<template
v-if=
"teamPrice&&teamPrice.SingleDMCPrice&&teamPrice.SingleDMCPrice>0"
>
{{
teamPrice
.
SingleDMCPrice
}}
</
template
>
<
template
v-else-if=
"postConfig.LineId==14||postConfig.LineId==118"
>
{{
getLocalTotalMoney
(
subItem
.
PeopleNumber
)
}}
</
template
>
<
template
v-else-if=
"postConfig.LineId==168"
>
{{
getLocalTotalMoney
(
subItem
.
PeopleNumber
)
}}
</
template
>
<
template
v-else
>
{{
subItem
.
SubtotalMoney
}}
</
template
>
<template
v-if=
"teamPrice&&teamPrice.SingleDMCPrice&&teamPrice.SingleDMCPrice>0"
>
{{
teamPrice
.
SingleDMCPrice
}}
</
template
>
<
template
v-else-if=
"postConfig.LineId==14||postConfig.LineId==118"
>
{{
getLocalTotalMoney
(
subItem
.
PeopleNumber
)
}}
</
template
>
<
template
v-else-if=
"postConfig.LineId==168"
>
{{
getLocalTotalMoney
(
subItem
.
PeopleNumber
)
}}
</
template
>
<
template
v-else
>
{{
subItem
.
SubtotalMoney
}}
</
template
>
</td>
<td
colspan=
"2"
>
{{subItem.TotalMoney}}
...
...
@@ -523,7 +523,7 @@
{{postConfig.ManagerAduitContent}}
</p>
</template>
<
template
v-if=
"postConfig.AuditDate&&postConfig.AuditDate!=''"
>
<
template
v-if=
"
IsEdit!=2&&
postConfig.AuditDate&&postConfig.AuditDate!=''"
>
<br
/>
<p>
{{
postConfig
.
AuditByName
}}
:
{{
postConfig
.
AuditDate
}}
...
...
src/components/TravelManager/TravelNewQuotation/QuotationAduit.vue
View file @
f759814b
...
...
@@ -237,7 +237,11 @@
var
offerObj
=
tempData
.
OfferArray
[
0
];
if
(
offerObj
)
{
if
(
offerObj
.
AuditContent
)
{
this
.
postData
.
AuditContent
=
offerObj
.
AuditContent
;
if
(
this
.
IsEdit
==
2
)
{
this
.
postData
.
AuditContent
=
""
;
}
else
{
this
.
postData
.
AuditContent
=
offerObj
.
AuditContent
;
}
}
if
(
offerObj
.
AuditByName
)
{
this
.
postData
.
AuditByName
=
offerObj
.
AuditByName
;
...
...
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