Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
web-project
Project
Project
Details
Activity
Releases
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
紫光云
web-project
Commits
78447461
Commit
78447461
authored
Nov 01, 2024
by
ccc2wdd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导出格式为xls
parent
6bd627ac
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
23 additions
and
23 deletions
+23
-23
statisticsBidding.vue
src/views/biddingManagement/statisticsBidding.vue
+1
-1
biddingPlanData.vue
src/views/biddingPlan/biddingPlanData.vue
+1
-1
completedData.vue
src/views/completed/completedData.vue
+2
-2
index.vue
src/views/engineeringProject/statisticEngineering/index.vue
+1
-1
index.vue
src/views/monthlyPlan/index.vue
+1
-1
index.vue
src/views/performance/statisticPerformance/index.vue
+1
-1
biddingManagementExportModal.vue
.../biddingManagementDrawer/biddingManagementExportModal.vue
+1
-1
exportModal.vue
src/views/project/biddingPlanDrawer/exportModal.vue
+1
-1
exportModal.vue
src/views/project/changeSignatureDrawer/exportModal.vue
+1
-1
exportModal.vue
src/views/project/completedDrawer/exportModal.vue
+1
-1
index.vue
src/views/project/index.vue
+1
-1
exportModal.vue
src/views/project/investmentPlanDrawer/exportModal.vue
+1
-1
monthExportModal.vue
src/views/project/monthDrawer/monthExportModal.vue
+1
-1
performanceExportModal.vue
...iews/project/performanceDrawer/performanceExportModal.vue
+1
-1
exportModal.vue
src/views/project/potentialSafetyDrawer/exportModal.vue
+1
-1
exportModal.vue
src/views/project/safetyEducationDrawer/exportModal.vue
+1
-1
exportModal.vue
src/views/project/settlementDrawer/exportModal.vue
+1
-1
biddingManagementExportModal.vue
...tement/biddingManagement/biddingManagementExportModal.vue
+1
-1
exportModal.vue
src/views/statement/biddingPlan/exportModal.vue
+1
-1
exportModal.vue
src/views/statement/components/exportModal.vue
+1
-1
monthExportModal.vue
src/views/statement/monthlyPlanDrawer/monthExportModal.vue
+1
-1
performanceExportModal.vue
...ws/statement/performanceDrawer/performanceExportModal.vue
+1
-1
No files found.
src/views/biddingManagement/statisticsBidding.vue
View file @
78447461
...
@@ -115,7 +115,7 @@
...
@@ -115,7 +115,7 @@
async
function
exportCount
()
{
async
function
exportCount
()
{
const
data
=
await
exportStatisticList
(
params
.
value
);
const
data
=
await
exportStatisticList
(
params
.
value
);
downloadByData
(
data
,
'招标管理统计报表'
+
'.xls
x
'
);
downloadByData
(
data
,
'招标管理统计报表'
+
'.xls'
);
}
}
const
loadingRef
=
ref
(
false
);
const
loadingRef
=
ref
(
false
);
function
handleSubmit
()
{
function
handleSubmit
()
{
...
...
src/views/biddingPlan/biddingPlanData.vue
View file @
78447461
...
@@ -123,7 +123,7 @@
...
@@ -123,7 +123,7 @@
}
}
async
function
exportCount
()
{
async
function
exportCount
()
{
const
data
=
await
exportTenderCount
(
params
.
value
);
const
data
=
await
exportTenderCount
(
params
.
value
);
downloadByData
(
data
,
'招标计划统计报表'
+
'.xls
x
'
);
downloadByData
(
data
,
'招标计划统计报表'
+
'.xls'
);
}
}
function
setRowClassName
(
record
)
{
function
setRowClassName
(
record
)
{
if
(
record
.
projectName
===
'总计(万元)'
)
{
if
(
record
.
projectName
===
'总计(万元)'
)
{
...
...
src/views/completed/completedData.vue
View file @
78447461
...
@@ -127,10 +127,10 @@ const { push } = useRouter();
...
@@ -127,10 +127,10 @@ const { push } = useRouter();
async
function
exportCount
()
{
async
function
exportCount
()
{
if
(
params
.
value
.
planType
===
'计划投资项目'
)
{
if
(
params
.
value
.
planType
===
'计划投资项目'
)
{
const
data
=
await
exportOverDueFundsPlan
(
params
.
value
);
const
data
=
await
exportOverDueFundsPlan
(
params
.
value
);
downloadByData
(
data
,
'年度资金计划'
+
'.xls
x
'
);
downloadByData
(
data
,
'年度资金计划'
+
'.xls'
);
}
else
if
(
params
.
value
.
planType
===
'已竣工验收项目'
)
{
}
else
if
(
params
.
value
.
planType
===
'已竣工验收项目'
)
{
const
data
=
await
exportOverDueFundsCompeleted
(
params
.
value
);
const
data
=
await
exportOverDueFundsCompeleted
(
params
.
value
);
downloadByData
(
data
,
'年度资金计划'
+
'.xls
x
'
);
downloadByData
(
data
,
'年度资金计划'
+
'.xls'
);
}
}
}
}
function
getBasicColumns
(
year
:
string
,
planType
:
string
):
BasicColumn
[]
{
function
getBasicColumns
(
year
:
string
,
planType
:
string
):
BasicColumn
[]
{
...
...
src/views/engineeringProject/statisticEngineering/index.vue
View file @
78447461
...
@@ -128,7 +128,7 @@
...
@@ -128,7 +128,7 @@
}
}
async
function
exportCount
()
{
async
function
exportCount
()
{
const
data
=
await
exportStatisticEngine
(
params
.
value
);
const
data
=
await
exportStatisticEngine
(
params
.
value
);
downloadByData
(
data
,
'投资计划'
+
'.xls
x
'
);
downloadByData
(
data
,
'投资计划'
+
'.xls'
);
}
}
</
script
>
</
script
>
<
style
scoped
lang=
"less"
>
<
style
scoped
lang=
"less"
>
...
...
src/views/monthlyPlan/index.vue
View file @
78447461
...
@@ -59,7 +59,7 @@
...
@@ -59,7 +59,7 @@
const
params
=
ref
({
monthYear
:
''
,
deptId
:
''
});
const
params
=
ref
({
monthYear
:
''
,
deptId
:
''
});
async
function
exportCount
()
{
async
function
exportCount
()
{
const
data
=
await
exportMonthCount
(
params
.
value
);
const
data
=
await
exportMonthCount
(
params
.
value
);
downloadByData
(
data
,
'月度统计报表'
+
'.xls
x
'
);
downloadByData
(
data
,
'月度统计报表'
+
'.xls'
);
}
}
const
loadingRef
=
ref
(
false
);
const
loadingRef
=
ref
(
false
);
function
showDetails
(
record
)
{
function
showDetails
(
record
)
{
...
...
src/views/performance/statisticPerformance/index.vue
View file @
78447461
...
@@ -139,7 +139,7 @@
...
@@ -139,7 +139,7 @@
async
function
exportCount
()
{
async
function
exportCount
()
{
const
params
=
getFieldsValue
();
const
params
=
getFieldsValue
();
const
data
=
await
exportStatisticList
(
params
);
const
data
=
await
exportStatisticList
(
params
);
downloadByData
(
data
,
'统计项目计划投资完成情况报表'
+
'.xls
x
'
);
downloadByData
(
data
,
'统计项目计划投资完成情况报表'
+
'.xls'
);
}
}
async
function
getStatisticList
()
{
async
function
getStatisticList
()
{
loadingRef
.
value
=
true
;
loadingRef
.
value
=
true
;
...
...
src/views/project/biddingManagementDrawer/biddingManagementExportModal.vue
View file @
78447461
...
@@ -92,7 +92,7 @@
...
@@ -92,7 +92,7 @@
//传项目单条id
//传项目单条id
searchField
:
{
proId
:
projectId
.
value
},
searchField
:
{
proId
:
projectId
.
value
},
});
});
downloadByData
(
data
,
'招标管理.xls
x
'
);
downloadByData
(
data
,
'招标管理.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/project/biddingPlanDrawer/exportModal.vue
View file @
78447461
...
@@ -95,7 +95,7 @@
...
@@ -95,7 +95,7 @@
//传项目单条id
//传项目单条id
searchField
:
{
proId
:
projectId
.
value
},
searchField
:
{
proId
:
projectId
.
value
},
});
});
downloadByData
(
data
,
'招标计划.xls
x
'
);
downloadByData
(
data
,
'招标计划.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/project/changeSignatureDrawer/exportModal.vue
View file @
78447461
...
@@ -96,7 +96,7 @@ function handleSubmit() {
...
@@ -96,7 +96,7 @@ function handleSubmit() {
searchField
:
searchData
.
value
,
searchField
:
searchData
.
value
,
});
});
console
.
log
(
title
.
value
,
"eeeeee"
);
console
.
log
(
title
.
value
,
"eeeeee"
);
downloadByData
(
data
,
title
.
value
+
'.xlsx
'
);
downloadByData
(
data
,
title
.
value
+
'.xls
'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/project/completedDrawer/exportModal.vue
View file @
78447461
...
@@ -94,7 +94,7 @@
...
@@ -94,7 +94,7 @@
searchField
:
searchData
.
value
,
searchField
:
searchData
.
value
,
});
});
console
.
log
(
title
.
value
,
'eeeeee'
);
console
.
log
(
title
.
value
,
'eeeeee'
);
downloadByData
(
data
,
title
.
value
+
'.xls
x
'
);
downloadByData
(
data
,
title
.
value
+
'.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/project/index.vue
View file @
78447461
...
@@ -171,7 +171,7 @@
...
@@ -171,7 +171,7 @@
});
});
function
downloadTemplate
()
{
function
downloadTemplate
()
{
downImportT
().
then
((
data
)
=>
{
downImportT
().
then
((
data
)
=>
{
downloadByData
(
data
,
'项目库导入模板.xls
x
'
);
downloadByData
(
data
,
'项目库导入模板.xls'
);
});
});
}
}
...
...
src/views/project/investmentPlanDrawer/exportModal.vue
View file @
78447461
...
@@ -95,7 +95,7 @@ function handleSubmit() {
...
@@ -95,7 +95,7 @@ function handleSubmit() {
searchField
:
searchData
.
value
,
searchField
:
searchData
.
value
,
});
});
console
.
log
(
title
.
value
,
"eeeeee"
);
console
.
log
(
title
.
value
,
"eeeeee"
);
downloadByData
(
data
,
title
.
value
+
'.xls
x
'
);
downloadByData
(
data
,
title
.
value
+
'.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/project/monthDrawer/monthExportModal.vue
View file @
78447461
...
@@ -75,7 +75,7 @@
...
@@ -75,7 +75,7 @@
//传项目单条id
//传项目单条id
searchField
:
{
proId
:
projectId
.
value
},
searchField
:
{
proId
:
projectId
.
value
},
});
});
downloadByData
(
data
,
'月度资金计划.xls
x
'
);
downloadByData
(
data
,
'月度资金计划.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/project/performanceDrawer/performanceExportModal.vue
View file @
78447461
...
@@ -92,7 +92,7 @@
...
@@ -92,7 +92,7 @@
//传项目单条id
//传项目单条id
searchField
:
{
proId
:
projectId
.
value
},
searchField
:
{
proId
:
projectId
.
value
},
});
});
downloadByData
(
data
,
'计划完成情况.xls
x
'
);
downloadByData
(
data
,
'计划完成情况.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/project/potentialSafetyDrawer/exportModal.vue
View file @
78447461
...
@@ -95,7 +95,7 @@ function handleSubmit() {
...
@@ -95,7 +95,7 @@ function handleSubmit() {
searchField
:
searchData
.
value
,
searchField
:
searchData
.
value
,
});
});
console
.
log
(
title
.
value
,
"eeeeee"
);
console
.
log
(
title
.
value
,
"eeeeee"
);
downloadByData
(
data
,
title
.
value
+
'.xls
x
'
);
downloadByData
(
data
,
title
.
value
+
'.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/project/safetyEducationDrawer/exportModal.vue
View file @
78447461
...
@@ -95,7 +95,7 @@ function handleSubmit() {
...
@@ -95,7 +95,7 @@ function handleSubmit() {
searchField
:
searchData
.
value
,
searchField
:
searchData
.
value
,
});
});
console
.
log
(
title
.
value
,
"eeeeee"
);
console
.
log
(
title
.
value
,
"eeeeee"
);
downloadByData
(
data
,
title
.
value
+
'.xls
x
'
);
downloadByData
(
data
,
title
.
value
+
'.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/project/settlementDrawer/exportModal.vue
View file @
78447461
...
@@ -96,7 +96,7 @@ function handleSubmit() {
...
@@ -96,7 +96,7 @@ function handleSubmit() {
searchField
:
searchData
.
value
,
searchField
:
searchData
.
value
,
});
});
console
.
log
(
title
.
value
,
"eeeeee"
);
console
.
log
(
title
.
value
,
"eeeeee"
);
downloadByData
(
data
,
title
.
value
+
'.xls
x
'
);
downloadByData
(
data
,
title
.
value
+
'.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/statement/biddingManagement/biddingManagementExportModal.vue
View file @
78447461
...
@@ -90,7 +90,7 @@
...
@@ -90,7 +90,7 @@
colums
:
value
.
colums
,
colums
:
value
.
colums
,
searchField
:
{},
searchField
:
{},
});
});
downloadByData
(
data
,
'招标管理.xls
x
'
);
downloadByData
(
data
,
'招标管理.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/statement/biddingPlan/exportModal.vue
View file @
78447461
...
@@ -90,7 +90,7 @@
...
@@ -90,7 +90,7 @@
colums
:
value
.
colums
,
colums
:
value
.
colums
,
searchField
:
{},
searchField
:
{},
});
});
downloadByData
(
data
,
'招标计划.xls
x
'
);
downloadByData
(
data
,
'招标计划.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/statement/components/exportModal.vue
View file @
78447461
...
@@ -92,7 +92,7 @@
...
@@ -92,7 +92,7 @@
searchField
:
searchData
.
value
,
searchField
:
searchData
.
value
,
});
});
console
.
log
(
title
.
value
,
"eeeeee"
);
console
.
log
(
title
.
value
,
"eeeeee"
);
downloadByData
(
data
,
title
.
value
+
'.xls
x
'
);
downloadByData
(
data
,
title
.
value
+
'.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/statement/monthlyPlanDrawer/monthExportModal.vue
View file @
78447461
...
@@ -73,7 +73,7 @@
...
@@ -73,7 +73,7 @@
colums
:
value
.
colums
,
colums
:
value
.
colums
,
searchField
:
{},
searchField
:
{},
});
});
downloadByData
(
data
,
'月度资金计划.xls
x
'
);
downloadByData
(
data
,
'月度资金计划.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
src/views/statement/performanceDrawer/performanceExportModal.vue
View file @
78447461
...
@@ -90,7 +90,7 @@
...
@@ -90,7 +90,7 @@
colums
:
value
.
colums
,
colums
:
value
.
colums
,
searchField
:
{},
searchField
:
{},
});
});
downloadByData
(
data
,
'计划完成情况.xls
x
'
);
downloadByData
(
data
,
'计划完成情况.xls'
);
emit
(
'close'
);
emit
(
'close'
);
closeModal
();
closeModal
();
});
});
...
...
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