Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
Y
yishuju-ui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
何远江
yishuju-ui
Commits
b7d67263
Commit
b7d67263
authored
Mar 04, 2025
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
还款审批
parent
69669c30
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
element.scss
src/styles/element.scss
+7
-1
index.vue
src/views/business-approval/repayment-approve/index.vue
+10
-1
No files found.
src/styles/element.scss
View file @
b7d67263
...
...
@@ -361,8 +361,14 @@ td {
line-height
:
1
.15
;
display
:
inline-block
;
width
:
20%
;
height
:
50px
;
height
:
100%
;
margin-right
:
10px
;
position
:
relative
;
img
{
position
:
absolute
;
top
:
50%
;
transform
:
translateY
(
-50%
);
}
}
.title_warp
{
line-height
:
1
.15
;
...
...
src/views/business-approval/repayment-approve/index.vue
View file @
b7d67263
...
...
@@ -23,6 +23,7 @@
<el-button
type=
"primary"
@
click=
"changeStatus"
v-if=
"activeName==='pending'"
:disabled=
"!selectdList || !selectdList.length"
>
审批
</el-button>
...
...
@@ -40,7 +41,15 @@
esc-closable
>
<div
class=
"w-full px-3 h-full overflow-auto flex-col flex mytable"
>
是否审批通过{{currentRow ? `借款人${currentRow?.borrower?.name}, 还款金额${currentRow?.realRepayAmount}`: '选中'}}的数据?
<
template
v-if=
"currentRow"
>
是否审批通过
{{
currentRow
?
`借款人${currentRow?.borrower?.name
}
, 还款金额${currentRow?.realRepayAmount
}
,实际还款时间${currentRow?.realRepayTime
}
`
:
''
}}
的数据?
<
/template
>
<
template
v
-
else
>
是否审批通过以下数据:
<
br
>
<
div
v
-
for
=
"(item,index) in selectdList"
:
key
=
"index"
>
{{
`借款人${item?.borrower?.name
}
, 还款金额${item?.realRepayAmount
}
,实际还款时间${item?.realRepayTime
}
`
}}
<
/div
>
<
/template
>
<
/div
>
<
template
#
footer
>
<
el
-
button
type
=
"default"
@
click
=
"showModal = false"
>
取消
<
/el-button
>
...
...
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