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
f30fcd45
Commit
f30fcd45
authored
Jul 31, 2023
by
yht15023815643
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
甲方详情骨架图
parent
c88b0c46
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
5 deletions
+20
-5
branch.vue
dsk-operate-ui/src/views/detail/party-a/overview/branch.vue
+4
-1
businfo.vue
dsk-operate-ui/src/views/detail/party-a/overview/businfo.vue
+4
-1
execuinfo.vue
...perate-ui/src/views/detail/party-a/overview/execuinfo.vue
+4
-1
holderinfo.vue
...erate-ui/src/views/detail/party-a/overview/holderinfo.vue
+4
-1
overseas.vue
...operate-ui/src/views/detail/party-a/overview/overseas.vue
+4
-1
No files found.
dsk-operate-ui/src/views/detail/party-a/overview/branch.vue
View file @
f30fcd45
<
template
>
<
template
>
<div
class=
"app-container detail-container"
>
<skeleton
style=
"margin-left:16px;"
v-if=
"isSkeleton"
></skeleton>
<div
class=
"app-container detail-container"
v-else
>
<head-form
<head-form
title=
"分支机构"
title=
"分支机构"
:form-data=
"formData"
:form-data=
"formData"
...
@@ -68,6 +69,7 @@ export default {
...
@@ -68,6 +69,7 @@ export default {
},
},
methods
:
{
methods
:
{
async
handleQuery
(
params
)
{
async
handleQuery
(
params
)
{
this
.
isSkeleton
=
true
;
this
.
tableLoading
=
true
this
.
tableLoading
=
true
let
param
=
params
?
params
:
this
.
queryParams
let
param
=
params
?
params
:
this
.
queryParams
if
(
param
.
hasBid
==
'noLimit'
){
if
(
param
.
hasBid
==
'noLimit'
){
...
@@ -76,6 +78,7 @@ export default {
...
@@ -76,6 +78,7 @@ export default {
let
res
=
await
affiliates
(
param
)
let
res
=
await
affiliates
(
param
)
this
.
tableLoading
=
false
this
.
tableLoading
=
false
if
(
res
.
code
==
200
){
if
(
res
.
code
==
200
){
this
.
isSkeleton
=
false
;
this
.
tableData
=
res
.
rows
this
.
tableData
=
res
.
rows
}
}
this
.
tableDataTotal
=
res
.
total
this
.
tableDataTotal
=
res
.
total
...
...
dsk-operate-ui/src/views/detail/party-a/overview/businfo.vue
View file @
f30fcd45
<
template
xmlns=
"http://www.w3.org/1999/html"
>
<
template
xmlns=
"http://www.w3.org/1999/html"
>
<div
class=
"app-container detail-container"
>
<skeleton
style=
"margin-left:16px;"
v-if=
"isSkeleton"
></skeleton>
<div
class=
"app-container detail-container"
v-else
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
class=
"detail-tab"
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
class=
"detail-tab"
>
<el-tab-pane
label=
"工商信息"
name=
"first"
></el-tab-pane>
<el-tab-pane
label=
"工商信息"
name=
"first"
></el-tab-pane>
<el-tab-pane
label=
"工商变更"
:disabled=
"tableDataTotal>0"
name=
"second"
></el-tab-pane>
<el-tab-pane
label=
"工商变更"
:disabled=
"tableDataTotal>0"
name=
"second"
></el-tab-pane>
...
@@ -104,11 +105,13 @@ export default {
...
@@ -104,11 +105,13 @@ export default {
this
.
handleQuery
()
this
.
handleQuery
()
},
},
async
handleQuery
()
{
async
handleQuery
()
{
this
.
isSkeleton
=
true
;
this
.
tableLoading
=
true
this
.
tableLoading
=
true
let
param
=
this
.
baseParams
;
let
param
=
this
.
baseParams
;
let
res
=
await
icInfo
(
param
);
let
res
=
await
icInfo
(
param
);
this
.
tableLoading
=
false
this
.
tableLoading
=
false
if
(
res
.
code
==
200
){
if
(
res
.
code
==
200
){
this
.
isSkeleton
=
false
;
this
.
forInfo
=
res
.
data
this
.
forInfo
=
res
.
data
}
}
},
},
...
...
dsk-operate-ui/src/views/detail/party-a/overview/execuinfo.vue
View file @
f30fcd45
<
template
>
<
template
>
<div
class=
"app-container detail-container"
>
<skeleton
style=
"margin-left:16px;"
v-if=
"isSkeleton"
></skeleton>
<div
class=
"app-container detail-container"
v-else
>
<head-form
<head-form
title=
"高管信息"
title=
"高管信息"
:form-data=
"formData"
:form-data=
"formData"
...
@@ -66,11 +67,13 @@ export default {
...
@@ -66,11 +67,13 @@ export default {
},
},
methods
:
{
methods
:
{
async
handleQuery
(
params
)
{
async
handleQuery
(
params
)
{
this
.
isSkeleton
=
true
;
this
.
tableLoading
=
true
this
.
tableLoading
=
true
let
param
=
params
?
params
:
this
.
queryParams
let
param
=
params
?
params
:
this
.
queryParams
let
res
=
await
keymembers
(
param
)
let
res
=
await
keymembers
(
param
)
this
.
tableLoading
=
false
this
.
tableLoading
=
false
if
(
res
.
code
==
200
){
if
(
res
.
code
==
200
){
this
.
isSkeleton
=
false
;
let
tempRows
=
[]
let
tempRows
=
[]
if
(
res
.
rows
&&
res
.
rows
.
length
>
0
){
if
(
res
.
rows
&&
res
.
rows
.
length
>
0
){
let
arrLength
=
res
.
rows
.
length
%
2
==
0
?(
res
.
rows
.
length
/
2
):(
Math
.
floor
(
res
.
rows
.
length
/
2
)
+
1
)
let
arrLength
=
res
.
rows
.
length
%
2
==
0
?(
res
.
rows
.
length
/
2
):(
Math
.
floor
(
res
.
rows
.
length
/
2
)
+
1
)
...
...
dsk-operate-ui/src/views/detail/party-a/overview/holderinfo.vue
View file @
f30fcd45
<
template
>
<
template
>
<div
class=
"app-container detail-container"
>
<skeleton
style=
"margin-left:16px;"
v-if=
"isSkeleton"
></skeleton>
<div
class=
"app-container detail-container"
v-else
>
<head-form
<head-form
title=
""
title=
""
:form-data=
"formData"
:form-data=
"formData"
...
@@ -78,12 +79,14 @@ export default {
...
@@ -78,12 +79,14 @@ export default {
this
.
handleQuery
()
this
.
handleQuery
()
},
},
async
handleQuery
(
params
)
{
async
handleQuery
(
params
)
{
this
.
isSkeleton
=
true
;
this
.
tableLoading
=
true
this
.
tableLoading
=
true
let
param
=
params
?
params
:
this
.
queryParams
let
param
=
params
?
params
:
this
.
queryParams
param
.
isHistory
=
this
.
activeName
==
'first'
?
0
:
1
param
.
isHistory
=
this
.
activeName
==
'first'
?
0
:
1
let
res
=
await
bestStockPage
(
param
)
let
res
=
await
bestStockPage
(
param
)
this
.
tableLoading
=
false
this
.
tableLoading
=
false
if
(
res
.
code
==
200
){
if
(
res
.
code
==
200
){
this
.
isSkeleton
=
false
;
this
.
tableData
=
res
.
rows
this
.
tableData
=
res
.
rows
}
}
this
.
tableDataTotal
=
res
.
total
this
.
tableDataTotal
=
res
.
total
...
...
dsk-operate-ui/src/views/detail/party-a/overview/overseas.vue
View file @
f30fcd45
<
template
>
<
template
>
<div
class=
"app-container detail-container"
>
<skeleton
style=
"margin-left:16px;"
v-if=
"isSkeleton"
></skeleton>
<div
class=
"app-container detail-container"
v-else
>
<head-form
<head-form
title=
"对外投资"
title=
"对外投资"
:form-data=
"formData"
:form-data=
"formData"
...
@@ -97,11 +98,13 @@ export default {
...
@@ -97,11 +98,13 @@ export default {
},
},
methods
:
{
methods
:
{
async
handleQuery
(
params
)
{
async
handleQuery
(
params
)
{
this
.
isSkeleton
=
true
;
this
.
tableLoading
=
true
this
.
tableLoading
=
true
let
param
=
params
?
params
:
this
.
queryParams
let
param
=
params
?
params
:
this
.
queryParams
let
res
=
await
investment
(
param
)
let
res
=
await
investment
(
param
)
this
.
tableLoading
=
false
this
.
tableLoading
=
false
if
(
res
.
code
==
200
){
if
(
res
.
code
==
200
){
this
.
isSkeleton
=
false
;
this
.
tableData
=
res
.
rows
this
.
tableData
=
res
.
rows
}
}
this
.
tableDataTotal
=
res
.
total
this
.
tableDataTotal
=
res
.
total
...
...
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