Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
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
fulixin
dsk-operate-sys-cscec
Commits
26a7d77b
Commit
26a7d77b
authored
Nov 23, 2023
by
liuChang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'V20230915' of 192.168.60.201:root/dsk-operate-sys into V20230915
parents
69c05942
f292f73b
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
35 additions
and
4 deletions
+35
-4
export-dialog.vue
dsk-operate-ui/src/views/component/export-dialog.vue
+5
-2
members.vue
...te-ui/src/views/detail/groupAccount/component/members.vue
+6
-2
performance.vue
...i/src/views/detail/groupAccount/component/performance.vue
+4
-0
zbxmmx.vue
...ate-ui/src/views/detail/groupAccount/component/zbxmmx.vue
+4
-0
index.vue
...te-ui/src/views/enterpriseData/components/Owner/index.vue
+4
-0
index.vue
...iews/enterpriseData/components/SearchEnterprise/index.vue
+4
-0
index.vue
dsk-operate-ui/src/views/macro/urban/index.vue
+4
-0
index.vue
...rate-ui/src/views/radar/components/MajorProject/index.vue
+4
-0
No files found.
dsk-operate-ui/src/views/component/export-dialog.vue
View file @
26a7d77b
...
...
@@ -30,7 +30,7 @@
</div>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"handleCancel()"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"handleEXCEL"
>
确认导出
</el-button>
<el-button
type=
"primary"
:loading=
"loading"
@
click=
"handleEXCEL"
>
确认导出
</el-button>
</div>
</el-dialog>
<el-dialog
:visible
.
sync=
"dialogExportVisible1"
width=
"348px"
append-to-body
class=
"dialogExport1"
@
close=
"handleCancel2"
>
...
...
@@ -68,13 +68,15 @@ export default {
exportTableData
:[],
forData
:[],
value
:
''
,
title
:
this
.
data
.
title
title
:
this
.
data
.
title
,
loading
:
false
,
}
},
watch
:
{
'data.exportEXCEL'
:{
handler
(
newValue
,
oldValue
)
{
if
(
newValue
===
true
){
this
.
loading
=
false
;
this
.
dialogExportVisible
=
false
;
this
.
dialogExportVisible1
=
true
;
}
...
...
@@ -91,6 +93,7 @@ export default {
},
methods
:
{
handleEXCEL
(){
this
.
loading
=
true
;
this
.
$nextTick
(()
=>
{
this
.
$emit
(
'clickEXCEL'
,
this
.
value
,
this
.
title
)
})
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/members.vue
View file @
26a7d77b
...
...
@@ -302,8 +302,8 @@
this
.
isSkeleton
=
false
this
.
tableLoading
=
false
if
(
res
.
code
===
200
){
this
.
tableData
=
res
.
data
.
list
this
.
tableDataTotal
=
res
.
data
.
total
this
.
tableData
=
res
.
rows
this
.
tableDataTotal
=
res
.
total
}
else
{
this
.
tableData
=
[]
}
...
...
@@ -498,6 +498,10 @@
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
,
title
)
{
if
(
this
.
tableData
.
length
===
0
){
this
.
$message
.
error
(
'当前信息列表数据为空,请重新筛选数据'
);
return
}
if
(
value
>
2000
){
return
}
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/performance.vue
View file @
26a7d77b
...
...
@@ -315,6 +315,10 @@
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
,
title
)
{
if
(
this
.
tableData
.
length
===
0
){
this
.
$message
.
error
(
'当前信息列表数据为空,请重新筛选数据'
);
return
}
if
(
value
>
2000
){
return
}
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/zbxmmx.vue
View file @
26a7d77b
...
...
@@ -291,6 +291,10 @@
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
,
title
)
{
if
(
this
.
tableData
.
length
===
0
){
this
.
$message
.
error
(
'当前信息列表数据为空,请重新筛选数据'
);
return
}
if
(
value
>
2000
){
return
}
...
...
dsk-operate-ui/src/views/enterpriseData/components/Owner/index.vue
View file @
26a7d77b
...
...
@@ -1001,6 +1001,10 @@ export default {
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
,
title
)
{
if
(
this
.
tableData
.
length
===
0
){
this
.
$message
.
error
(
'当前信息列表数据为空,请重新筛选数据'
);
return
}
if
(
value
>
2000
){
return
}
...
...
dsk-operate-ui/src/views/enterpriseData/components/SearchEnterprise/index.vue
View file @
26a7d77b
...
...
@@ -3044,6 +3044,10 @@ export default {
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
,
title
)
{
if
(
this
.
tableData
.
length
===
0
){
this
.
$message
.
error
(
'当前信息列表数据为空,请重新筛选数据'
);
return
}
if
(
value
>
2000
){
return
}
...
...
dsk-operate-ui/src/views/macro/urban/index.vue
View file @
26a7d77b
...
...
@@ -848,6 +848,10 @@ export default {
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
,
title
)
{
if
(
this
.
tableData
.
length
===
0
){
this
.
$message
.
error
(
'当前信息列表数据为空,请重新筛选数据'
);
return
}
if
(
value
>
2000
){
return
}
...
...
dsk-operate-ui/src/views/radar/components/MajorProject/index.vue
View file @
26a7d77b
...
...
@@ -686,6 +686,10 @@ export default {
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
,
title
)
{
if
(
this
.
tableData
.
length
===
0
){
this
.
$message
.
error
(
'当前信息列表数据为空,请重新筛选数据'
);
return
}
if
(
value
>
2000
){
return
}
...
...
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