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
fc67a75a
Commit
fc67a75a
authored
Feb 24, 2025
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
f660bc7a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
index.vue
src/views/property/case-detail/index.vue
+5
-1
index.vue
src/views/property/case-manage/index.vue
+11
-0
No files found.
src/views/property/case-detail/index.vue
View file @
fc67a75a
...
...
@@ -25,7 +25,7 @@
<div
class=
"flex"
>
<div
class=
"w-1/2"
>
<div
id=
"baseinfo"
>
<div
class=
"box-title"
>
案人
基本信息
</div>
<div
class=
"box-title"
>
基本信息
</div>
<div
class=
"box-content"
>
<table>
<tbody>
...
...
@@ -47,6 +47,10 @@
<td
class=
"label"
>
户籍地址
</td>
<td
colspan=
"3"
>
{{
detail
?.
borrower
?.
address
}}
</td>
</tr>
<tr>
<td
class=
"label"
>
案件还款状态
</td>
<td
colspan=
"3"
>
{{
detail
.
repayStatus
==
'over'
?
'已还款'
:
'待还款'
}}
</td>
</tr>
</tbody>
<!-- Add more rows as needed -->
</table>
...
...
src/views/property/case-manage/index.vue
View file @
fc67a75a
...
...
@@ -332,6 +332,17 @@
width
:
80
,
search
:
{
el
:
'input'
,
props
:
{
clearable
:
true
},
labelWidth
:
90
},
},
{
field
:
'repayStatus'
,
title
:
'还款状态'
,
showOverflow
:
'tooltip'
,
width
:
80
,
slots
:
{
default
:
({
row
})
=>
{
return
<
div
>
{
row
.
repayStatus
==
'over'
?
'已还款'
:
'待还款'
}
<
/div>
;
},
},
},
{
field
:
'commission'
,
showOverflow
:
'tooltip'
,
...
...
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