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
38ca6f76
Commit
38ca6f76
authored
Feb 11, 2025
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复管理
parent
ca5d1073
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
repairModal.vue
src/views/property/case-detail/components/repairModal.vue
+1
-1
index.vue
src/views/property/repair-manage/index.vue
+14
-0
No files found.
src/views/property/case-detail/components/repairModal.vue
View file @
38ca6f76
...
...
@@ -89,7 +89,7 @@
borrower
:
currentDetail
.
value
?.
borrower
,
oldName
:
''
,
newName
:
form
.
newName
,
oldPhone
:
[],
oldPhone
:
[
currentDetail
.
value
?.
borrower
?.
phone
],
newPhone
:
[],
kinship
:
form
.
kinship
,
flowStatus
:
'pending'
,
...
...
src/views/property/repair-manage/index.vue
View file @
38ca6f76
...
...
@@ -164,6 +164,13 @@
key
:
'oldPhone'
,
labelWidth
:
95
,
},
default
:
({
row
})
=>
{
return
(
<>
{
typeof
row
.
oldPhone
===
'object'
?
row
.
oldPhone
.
join
(
','
)
:
row
.
oldPhone
}
<
/
>
);
},
},
{
field
:
'newPhone'
,
...
...
@@ -176,6 +183,13 @@
key
:
'newPhone'
,
labelWidth
:
95
,
},
default
:
({
row
})
=>
{
return
(
<>
{
typeof
row
.
newPhone
===
'object'
?
row
.
newPhone
.
join
(
','
)
:
row
.
newPhone
}
<
/
>
);
},
},
{
field
:
'repairStatus'
,
...
...
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