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
1d2d4619
Commit
1d2d4619
authored
Nov 21, 2023
by
danfuman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
790a069f
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
28 additions
and
22 deletions
+28
-22
export-dialog.vue
dsk-operate-ui/src/views/component/export-dialog.vue
+3
-2
members.vue
...te-ui/src/views/detail/groupAccount/component/members.vue
+2
-2
performance.vue
...i/src/views/detail/groupAccount/component/performance.vue
+2
-2
zbxmmx.vue
...ate-ui/src/views/detail/groupAccount/component/zbxmmx.vue
+2
-2
index.vue
...te-ui/src/views/enterpriseData/components/Owner/index.vue
+2
-2
index.vue
...iews/enterpriseData/components/SearchEnterprise/index.vue
+13
-8
index.vue
dsk-operate-ui/src/views/macro/urban/index.vue
+2
-2
index.vue
...rate-ui/src/views/radar/components/MajorProject/index.vue
+2
-2
No files found.
dsk-operate-ui/src/views/component/export-dialog.vue
View file @
1d2d4619
...
...
@@ -5,7 +5,7 @@
<!--
<img
class=
"tip-img"
src=
"@/assets/images/icon.png"
/>
-->
数据导出
</
template
>
<div
class=
"exportTitle"
><span>
文件名称
</span><
p>
{{data.title}}
</p
></div>
<div
class=
"exportTitle"
><span>
文件名称
</span><
el-input
style=
"width: 645px;display: inline-block;"
v-model=
"title"
></el-input
></div>
<img
class=
"exportImg"
src=
"@/assets/images/export.png"
/>
<div
class=
"table-item"
>
<el-table
:data=
"exportTableData"
>
...
...
@@ -68,6 +68,7 @@ export default {
exportTableData
:[],
forData
:[],
value
:
''
,
title
:
this
.
data
.
title
}
},
watch
:
{
...
...
@@ -91,7 +92,7 @@ export default {
methods
:
{
handleEXCEL
(){
this
.
$nextTick
(()
=>
{
this
.
$emit
(
'clickEXCEL'
,
this
.
value
)
this
.
$emit
(
'clickEXCEL'
,
this
.
value
,
this
.
title
)
})
},
handleCancel
(){
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/members.vue
View file @
1d2d4619
...
...
@@ -482,11 +482,11 @@
clickDialog
(){
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
)
{
clickEXCEL
(
value
,
title
)
{
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
t
his
.
combineName
+
'-'
+
this
.
exportData
.
t
itle
;
this
.
dataEXCEL
.
exportExeclName
=
title
;
if
(
value
){
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/performance.vue
View file @
1d2d4619
...
...
@@ -314,11 +314,11 @@
clickDialog
(){
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
)
{
clickEXCEL
(
value
,
title
)
{
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
t
his
.
combineName
+
'-'
+
this
.
exportData
.
t
itle
;
this
.
dataEXCEL
.
exportExeclName
=
title
;
if
(
value
){
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
...
...
dsk-operate-ui/src/views/detail/groupAccount/component/zbxmmx.vue
View file @
1d2d4619
...
...
@@ -290,11 +290,11 @@
clickDialog
(){
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
)
{
clickEXCEL
(
value
,
title
)
{
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
t
his
.
combineName
+
'-'
+
this
.
exportData
.
t
itle
;
this
.
dataEXCEL
.
exportExeclName
=
title
;
if
(
value
){
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
...
...
dsk-operate-ui/src/views/enterpriseData/components/Owner/index.vue
View file @
1d2d4619
...
...
@@ -1000,11 +1000,11 @@ export default {
clickDialog
(){
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
)
{
clickEXCEL
(
value
,
title
)
{
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
t
his
.
exportData
.
t
itle
;
this
.
dataEXCEL
.
exportExeclName
=
title
;
if
(
value
){
this
.
dataEXCEL
.
pageSize
=
value
}
else
{
...
...
dsk-operate-ui/src/views/enterpriseData/components/SearchEnterprise/index.vue
View file @
1d2d4619
...
...
@@ -1433,6 +1433,7 @@ export default {
dataEXCEL
:{},
exportData
:{
title
:
'企业基本信息'
,
type
:
2
,
dialogExportVisible
:
false
,
forData
:
[
{
label
:
'企业名称'
,
prop
:
'text1'
,
slot
:
true
,
minWidth
:
'120'
},
...
...
@@ -2912,6 +2913,7 @@ export default {
if
(
key
===
1
){
this
.
exportData
=
{
title
:
'企业资质'
,
type
:
1
,
dialogExportVisible
:
false
,
forData
:
[
{
label
:
'企业名称'
,
prop
:
'text1'
,
slot
:
true
,
minWidth
:
'120'
},
...
...
@@ -2972,8 +2974,9 @@ export default {
if
(
key
===
2
){
this
.
exportData
=
{
title
:
'企业基本信息'
,
dialogExportVisible
:
false
,
forData
:
[
type
:
2
,
dialogExportVisible
:
false
,
forData
:
[
{
label
:
'企业名称'
,
prop
:
'text1'
,
slot
:
true
,
minWidth
:
'120'
},
{
label
:
'企业性质'
,
prop
:
'text2'
,
slot
:
true
,
minWidth
:
'120'
},
{
label
:
'资质情况'
,
prop
:
'text3'
,
slot
:
true
,
minWidth
:
'160'
},
...
...
@@ -2993,7 +2996,7 @@ export default {
{
label
:
'联系电话'
,
prop
:
'text17'
,
slot
:
true
,
minWidth
:
'120'
},
{
label
:
'企业详情页(平台)'
,
prop
:
'text18'
,
slot
:
true
,
minWidth
:
'150'
},
],
exportTableData
:[
exportTableData
:[
{
text1
:
'xxx有限公司'
,
text2
:
'央企子公司'
,
...
...
@@ -3035,22 +3038,23 @@ export default {
text18
:
'XXXXX'
,
},
],
exportEXCEL
:{}
exportEXCEL
:{}
}
}
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
)
{
clickEXCEL
(
value
,
title
)
{
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
t
his
.
exportData
.
t
itle
;
this
.
dataEXCEL
.
exportExeclName
=
title
;
if
(
value
){
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
this
.
dataEXCEL
.
exportCount
=
2000
;
}
if
(
this
.
exportData
.
title
===
'企业资质'
){
//企业资质
if
(
this
.
exportData
.
type
===
1
){
api
.
aptitudeExport
(
this
.
dataEXCEL
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
exportData
.
exportEXCEL
=
true
;
...
...
@@ -3059,7 +3063,8 @@ export default {
}
})
}
if
(
this
.
exportData
.
title
===
'企业基本信息'
){
//企业基本信息
if
(
this
.
exportData
.
title
===
2
){
api
.
infoExport
(
this
.
dataEXCEL
).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
exportData
.
exportEXCEL
=
true
;
...
...
dsk-operate-ui/src/views/macro/urban/index.vue
View file @
1d2d4619
...
...
@@ -847,11 +847,11 @@ export default {
clickDialog
(){
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
)
{
clickEXCEL
(
value
,
title
)
{
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
t
his
.
exportData
.
t
itle
;
this
.
dataEXCEL
.
exportExeclName
=
title
;
if
(
value
){
this
.
dataEXCEL
.
pageSize
=
value
}
else
{
...
...
dsk-operate-ui/src/views/radar/components/MajorProject/index.vue
View file @
1d2d4619
...
...
@@ -685,11 +685,11 @@ export default {
clickDialog
(){
this
.
exportData
.
dialogExportVisible
=
true
;
},
clickEXCEL
(
value
)
{
clickEXCEL
(
value
,
title
)
{
if
(
value
>
2000
){
return
}
this
.
dataEXCEL
.
exportExeclName
=
t
his
.
exportData
.
t
itle
;
this
.
dataEXCEL
.
exportExeclName
=
title
;
if
(
value
){
this
.
dataEXCEL
.
exportCount
=
value
}
else
{
...
...
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