Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
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
Administrator
dsk-cr20g
Commits
1177e801
Commit
1177e801
authored
Aug 17, 2023
by
danfuman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
cd058062
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
6 deletions
+46
-6
members.vue
...te-ui/src/views/detail/groupAccount/component/members.vue
+23
-6
performance.vue
...i/src/views/detail/groupAccount/component/performance.vue
+13
-0
qualifications.vue
...rc/views/detail/groupAccount/component/qualifications.vue
+1
-0
Tables.vue
dsk-operate-ui/src/views/detail/party-a/component/Tables.vue
+9
-0
No files found.
dsk-operate-ui/src/views/detail/groupAccount/component/members.vue
View file @
1177e801
...
...
@@ -54,6 +54,7 @@
:forData=
"forData"
:tableDataTotal=
"tableDataTotal"
:queryParams=
"queryParams"
:MaxPage=
500
@
handle-current-change=
"handleCurrentChange"
@
sort-change=
"sortChange"
>
...
...
@@ -91,13 +92,13 @@
companyType
:
''
,
},
forData
:
[
{
label
:
'企业名称'
,
prop
:
'companyName'
,
minWidth
:
'2
0
0'
,
slot
:
true
},
{
label
:
'企业名称'
,
prop
:
'companyName'
,
minWidth
:
'2
5
0'
,
slot
:
true
},
{
label
:
'成员层级'
,
prop
:
'combineMemberLevel'
,
minWidth
:
'100'
},
{
label
:
'法定代表人'
,
prop
:
'corporatePerson'
,
minWidth
:
'100'
},
{
label
:
'注册资本'
,
prop
:
'regCapital'
,
minWidth
:
'150'
,
sortable
:
'custom'
,
descending
:
'3'
,
ascending
:
'4'
},
{
label
:
'持股比例'
,
prop
:
'stockPercent'
,
minWidth
:
'1
5
0'
,
slot
:
true
,
sortable
:
'custom'
,
descending
:
'3'
,
ascending
:
'4'
},
{
label
:
'成立日期'
,
prop
:
'registeredDate'
,
minWidth
:
'1
5
0'
},
{
label
:
'企业地区'
,
prop
:
'address'
,
minWidth
:
'
15
0'
},
{
label
:
'持股比例'
,
prop
:
'stockPercent'
,
minWidth
:
'1
0
0'
,
slot
:
true
,
sortable
:
'custom'
,
descending
:
'3'
,
ascending
:
'4'
},
{
label
:
'成立日期'
,
prop
:
'registeredDate'
,
minWidth
:
'1
0
0'
},
{
label
:
'企业地区'
,
prop
:
'address'
,
minWidth
:
'
20
0'
},
],
formData
:
[
{
type
:
4
,
fieldName
:
'combineMemberLevels'
,
value
:
''
,
placeholder
:
'成员层级'
,
options
:[]},
...
...
@@ -244,9 +245,11 @@
},
handleQuery
(
params
){
this
.
paramsData
=
params
;
this
.
tableLoading
=
true
let
data
=
this
.
getAreaList
(
params
||
this
.
queryParams
)
memberList
(
data
).
then
(
res
=>
{
this
.
isSkeleton
=
false
this
.
tableLoading
=
false
if
(
res
.
code
===
200
){
this
.
tableData
=
res
.
rows
this
.
tableDataTotal
=
res
.
total
...
...
@@ -315,6 +318,7 @@
this
.
paramsData
.
companyType
=
this
.
queryParams
.
companyType
this
.
paramsData
.
companyTypes
=
this
.
queryParams
.
companyTypes
this
.
paramsData
.
pageNum
=
1
this
.
queryParams
.
pageNum
=
1
}
this
.
handleQuery
(
this
.
paramsData
?
this
.
paramsData
:
this
.
queryParams
);
},
...
...
@@ -328,6 +332,7 @@
if
(
this
.
paramsData
){
this
.
paramsData
.
companyType
=
this
.
queryParams
.
companyType
this
.
paramsData
.
pageNum
=
1
this
.
queryParams
.
pageNum
=
1
}
}
if
(
key
===
'2'
){
...
...
@@ -361,6 +366,7 @@
this
.
paramsData
.
minStockPercent
=
this
.
queryParams
.
minStockPercent
this
.
paramsData
.
maxStockPercent
=
this
.
queryParams
.
maxStockPercent
this
.
paramsData
.
pageNum
=
1
this
.
queryParams
.
pageNum
=
1
}
}
this
.
handleQuery
(
this
.
paramsData
?
this
.
paramsData
:
this
.
queryParams
);
...
...
@@ -368,7 +374,6 @@
getAreaList
(
params
){
if
(
params
.
province
&&
params
.
province
.
length
>
0
){
let
arr
=
this
.
$children
[
0
].
$refs
.
cascader
[
0
].
getCheckedNodes
()
console
.
log
(
this
.
$children
[
0
].
$refs
.
cascader
)
let
provinceIds
=
[],
cityIds
=
[],
districtIds
=
[]
for
(
var
i
in
arr
)
{
if
(
arr
[
i
].
parent
)
{
...
...
@@ -406,6 +411,18 @@
this
.
pageIndex
=
1
;
this
.
handleQuery
()
},
//分页
handleCurrentChange
(
e
){
let
params
=
this
.
formParams
()
params
.
pageNum
=
e
this
.
queryParams
.
pageNum
=
e
this
.
handleQuery
(
params
)
setTimeout
(()
=>
{
this
.
$nextTick
(()
=>
{
this
.
$children
[
1
].
$refs
.
tableRef
.
bodyWrapper
.
scrollTop
=
0
});
},
500
);
},
}
}
</
script
>
...
...
@@ -468,7 +485,7 @@
.wrap_label
{
color
:
rgba
(
35
,
35
,
35
,
0
.8
);
margin-right
:
12px
;
line-height
:
30
px
;
line-height
:
24
px
;
width
:
77px
;
text-align
:
right
;
/*float: left;*/
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/performance.vue
View file @
1177e801
...
...
@@ -19,6 +19,7 @@
:tableLoading=
"tableLoading"
:tableData=
"tableData"
:forData=
"forData"
:MaxPage=
500
:tableDataTotal=
"tableDataTotal"
:queryParams=
"queryParams"
@
handle-current-change=
"handleCurrentChange"
...
...
@@ -159,6 +160,7 @@
this
.
tableData
=
res
.
code
==
200
?
res
.
rows
:[]
this
.
tableDataTotal
=
res
.
total
this
.
isSkeleton
=
false
this
.
tableLoading
=
false
})
},
formatDate
(
timestamp
)
{
...
...
@@ -244,6 +246,17 @@
}
return
params
},
//分页
handleCurrentChange
(
e
){
let
params
=
this
.
formParams
()
params
.
pageNum
=
e
this
.
queryParams
.
pageNum
=
e
this
.
handleQuery
(
params
)
console
.
log
(
this
.
$children
[
1
].
$refs
.
tableRef
.
bodyWrapper
.
scrollTop
)
setTimeout
(()
=>
{
// this.$children[1].$refs.tableRef.bodyWrapper.scrollTop = 0
},
500
);
},
}
}
</
script
>
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/qualifications.vue
View file @
1177e801
...
...
@@ -14,6 +14,7 @@
:defaultSort=
"defaultSort"
:tableLoading=
"tableLoading"
:tableData=
"tableData"
:MaxPage=
500
:forData=
"forData"
:tableDataTotal=
"tableDataTotal"
:queryParams=
"queryParams"
...
...
dsk-operate-ui/src/views/detail/party-a/component/Tables.vue
View file @
1177e801
...
...
@@ -5,6 +5,7 @@
v-loading=
"tableLoading"
:data=
"tableData"
element-loading-text=
"Loading"
ref=
"tableRef"
border
fit
highlight-current-row
...
...
@@ -128,6 +129,14 @@ export default {
current_page
:
this
.
queryParams
.
pageNum
,
show_page
:
this
.
paging
}
},
watch
:{
'queryParams.pageNum'
(
newVal
,
oldVal
){
this
.
current_page
=
newVal
}
},
created
()
{
},
methods
:{
handleCurrentChange
(
e
){
...
...
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