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
fa1fe682
Commit
fa1fe682
authored
Dec 03, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
28b7e605
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
1 deletion
+64
-1
groupApproval.vue
src/components/FinancialModule/groupApproval.vue
+64
-1
No files found.
src/components/FinancialModule/groupApproval.vue
View file @
fa1fe682
...
...
@@ -189,6 +189,7 @@
:label=
"$t('objFill.caiwubz')"
width=
"130px"
>
<
template
slot-scope=
"scope"
>
<p>
{{
scope
.
row
.
AuditRemark
}}
</p>
<i
class=
"el-icon-edit"
@
click=
"financeRemark(scope.row)"
v-if=
"active==1 && EmployeeId==scope.row.OutGroupAuditEmpId && EmployeeId !=5"
></i>
</
template
>
</el-table-column>
<el-table-column
v-if=
"active==2"
...
...
@@ -244,6 +245,7 @@
custom-class=
"w600"
:title=
"$t('objFill.bohuiyy')"
:visible
.
sync=
"cancelOrderDialog"
:close-on-click-modal=
"false"
>
<div
style=
"padding-bottom:20px"
>
<el-input
...
...
@@ -275,8 +277,9 @@
<el-dialog
custom-class=
"w600"
:title=
"$t('objFill.
caiwubz
')"
:title=
"$t('objFill.
tijiaoshenhe
')"
:visible
.
sync=
"auditDialog"
:close-on-click-modal=
"false"
>
<div
style=
"padding-bottom:20px"
>
<el-input
...
...
@@ -305,6 +308,39 @@
</div>
</el-dialog>
<el-dialog
custom-class=
"w600"
:title=
"$t('objFill.qingshurbzxx')"
:visible
.
sync=
"auditDialog2"
:close-on-click-modal=
"false"
>
<div
style=
"padding-bottom:20px"
>
<el-input
type=
"textarea"
autofocus
rows=
"5"
clear=
"w300"
v-model=
"auditRemark"
></el-input>
<el-row
:gutter=
"20"
style=
"margin-top: 20px;"
>
<el-col
:span=
"24"
style=
"text-align: right;"
>
<input
type=
"button"
class=
"normalBtn"
:value=
"$t('pub.saveBtn')"
@
click=
"auditOrderHandler2"
/>
<input
type=
"button"
class=
"hollowFixedBtn"
:value=
"$t('pub.closeSel')"
@
click=
"auditDialog2 = false,auditRemark=''"
/>
</el-col>
</el-row>
</div>
</el-dialog>
<el-dialog
:visible
.
sync=
"dialog.show"
width=
"1400px"
:title=
"$t('objFill.baojiaxiangqing')"
>
<price-dialog
:ConfigId=
"dialog.ConfigId"
:OfferId=
"dialog.OfferId"
ref=
"dialog"
></price-dialog>
</el-dialog>
...
...
@@ -323,6 +359,7 @@
dataRow
:
null
,
cancelOrderDialog
:
false
,
auditDialog
:
false
,
auditDialog2
:
false
,
loading
:
false
,
dataList
:
[],
active
:
'1'
,
...
...
@@ -526,6 +563,11 @@
this
.
auditDialog
=
true
this
.
auditRemark
=
''
;
},
financeRemark
(
item
){
this
.
dataRow
=
item
this
.
auditDialog2
=
true
this
.
auditRemark
=
item
.
AuditRemark
;
},
cancelOrderHandler
(){
if
(
!
this
.
cancelRemark
)
return
this
.
Error
(
this
.
$t
(
'objFill.v101.dmc.qingsrbhyy'
))
let
that
=
this
;
...
...
@@ -543,6 +585,9 @@
auditOrderHandler
(){
this
.
groupAudit
(
2
,
this
.
dataRow
.
TCID
);
},
auditOrderHandler2
(){
this
.
groupRemark
(
this
.
dataRow
.
TCID
);
},
bohui
(
item
)
{
this
.
dataRow
=
item
this
.
cancelOrderDialog
=
true
...
...
@@ -589,6 +634,24 @@
err
=>
{
}
);
},
groupRemark
(
TCID
){
this
.
apipost
(
"travel_post_SetOutGroupAuditInfo"
,
{
TCID
:
TCID
,
OutGroupAuditState
:
4
,
OutGroupAuditRemark
:
''
,
AuditRemark
:
this
.
auditRemark
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
auditDialog2
=
false
;
this
.
dataRow
.
AuditRemark
=
this
.
auditRemark
;
this
.
Success
(
res
.
data
.
message
);
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{
}
);
},
goTeamBalance
(
id
,
OutBranchId
)
{
//团队收支明细
this
.
$router
.
push
({
name
:
"TeamBalancePayment"
,
...
...
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