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
bedb8917
Commit
bedb8917
authored
Feb 11, 2025
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
稽核管理添加
parent
b8f2984e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
87 additions
and
0 deletions
+87
-0
index.vue
src/views/business-approval/audit-apply/index.vue
+29
-0
index.vue
src/views/property/audit-manage/index.vue
+29
-0
index.vue
src/views/workplace/audit/index.vue
+29
-0
No files found.
src/views/business-approval/audit-apply/index.vue
View file @
bedb8917
...
...
@@ -21,6 +21,7 @@
import
{
ElMessageBox
,
ElMessage
,
ElButton
,
ElTag
}
from
'element-plus'
;
import
callDrawer
from
'./components/callDrawer.vue'
;
import
{
Download
}
from
'@element-plus/icons-vue'
;
import
{
getTenantPage
}
from
'@/api/tenant'
;
import
{
inject
}
from
'vue'
;
const
envs
=
getAppEnvConfig
();
const
downloadfile
=
inject
(
'download'
);
...
...
@@ -205,6 +206,34 @@
labelWidth
:
78
,
},
},
{
title
:
'CPE'
,
showOverflow
:
'tooltip'
,
width
:
60
,
slots
:
{
default
:
({
row
})
=>
{
return
(
<>
{
Array
.
from
(
new
Set
(
row
.
loans
.
map
((
v
)
=>
v
?.
cpe
?.
username
))).
join
(
','
)}
<
/
>
);
},
},
// search: { el: 'input', props: { clearable: true }, key: 'cpeName', labelWidth: 78 },
},
{
showOverflow
:
'tooltip'
,
slots
:
{
default
:
({
row
})
=>
{
return
(
<>
{
Array
.
from
(
new
Set
(
row
.
loans
.
map
((
v
)
=>
v
?.
tenant
?.
name
))).
join
(
','
)}
<
/
>
);
},
},
enum
:
()
=>
getTenantPage
({
current
:
1
,
size
:
999999999
,
status
:
'enable'
}),
// search: { el: 'select', props: { filterable: true }, key: 'tenantId', labelWidth: 78 },
fieldNames
:
{
label
:
'name'
,
value
:
'id'
},
title
:
'调解中心'
,
width
:
100
,
},
{
field
:
'guarantor.name'
,
title
:
'联系人姓名'
,
...
...
src/views/property/audit-manage/index.vue
View file @
bedb8917
...
...
@@ -46,6 +46,7 @@
import
{
getTrackRecord
}
from
'@/api/property'
;
import
{
batchSave
}
from
'@/api/audit'
;
import
{
useUserStore
}
from
'@/stores/modules/user'
;
import
{
getTenantPage
}
from
'@/api/tenant'
;
const
envs
=
getAppEnvConfig
();
const
{
userInfo
}
=
useUserStore
();
...
...
@@ -176,6 +177,34 @@
labelWidth
:
78
,
},
},
{
title
:
'CPE'
,
showOverflow
:
'tooltip'
,
width
:
60
,
slots
:
{
default
:
({
row
})
=>
{
return
(
<>
{
Array
.
from
(
new
Set
(
row
.
loans
.
map
((
v
)
=>
v
?.
cpe
?.
username
))).
join
(
','
)}
<
/
>
);
},
},
// search: { el: 'input', props: { clearable: true }, key: 'cpeName', labelWidth: 78 },
},
{
showOverflow
:
'tooltip'
,
slots
:
{
default
:
({
row
})
=>
{
return
(
<>
{
Array
.
from
(
new
Set
(
row
.
loans
.
map
((
v
)
=>
v
?.
tenant
?.
name
))).
join
(
','
)}
<
/
>
);
},
},
enum
:
()
=>
getTenantPage
({
current
:
1
,
size
:
999999999
,
status
:
'enable'
}),
// search: { el: 'select', props: { filterable: true }, key: 'tenantId', labelWidth: 78 },
fieldNames
:
{
label
:
'name'
,
value
:
'id'
},
title
:
'调解中心'
,
width
:
100
,
},
{
field
:
'nextTime'
,
title
:
'下次跟进时间'
,
...
...
src/views/workplace/audit/index.vue
View file @
bedb8917
...
...
@@ -47,6 +47,7 @@
import
{
batchSave
}
from
'@/api/audit'
;
import
{
useUserStore
}
from
'@/stores/modules/user'
;
const
{
userInfo
}
=
useUserStore
();
import
{
getTenantPage
}
from
'@/api/tenant'
;
const
envs
=
getAppEnvConfig
();
import
{
reactive
,
ref
}
from
'vue'
;
...
...
@@ -175,6 +176,34 @@
labelWidth
:
78
,
},
},
{
title
:
'CPE'
,
showOverflow
:
'tooltip'
,
width
:
60
,
slots
:
{
default
:
({
row
})
=>
{
return
(
<>
{
Array
.
from
(
new
Set
(
row
.
loans
.
map
((
v
)
=>
v
?.
cpe
?.
username
))).
join
(
','
)}
<
/
>
);
},
},
// search: { el: 'input', props: { clearable: true }, key: 'cpeName', labelWidth: 78 },
},
{
showOverflow
:
'tooltip'
,
slots
:
{
default
:
({
row
})
=>
{
return
(
<>
{
Array
.
from
(
new
Set
(
row
.
loans
.
map
((
v
)
=>
v
?.
tenant
?.
name
))).
join
(
','
)}
<
/
>
);
},
},
enum
:
()
=>
getTenantPage
({
current
:
1
,
size
:
999999999
,
status
:
'enable'
}),
// search: { el: 'select', props: { filterable: true }, key: 'tenantId', labelWidth: 78 },
fieldNames
:
{
label
:
'name'
,
value
:
'id'
},
title
:
'调解中心'
,
width
:
100
,
},
{
field
:
'nextTime'
,
title
:
'下次跟进时间'
,
...
...
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