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
995fd287
Commit
995fd287
authored
Oct 24, 2024
by
liwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改了完成情况页面以及统计页面bug
parent
da565b2c
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
196 additions
and
174 deletions
+196
-174
biddingPlan.ts
src/router/routes/modules/biddingPlan.ts
+2
-2
index.vue
src/views/biddingPlan/index.vue
+1
-1
index.vue
src/views/performance/statisticPerformance/index.vue
+9
-1
performanceStatisticWindow.vue
...mance/statisticPerformance/performanceStatisticWindow.vue
+0
-1
statisticData.ts
src/views/performance/statisticPerformance/statisticData.ts
+184
-169
No files found.
src/router/routes/modules/biddingPlan.ts
View file @
995fd287
...
@@ -31,7 +31,7 @@ const biddingPlan: AppRouteModule = {
...
@@ -31,7 +31,7 @@ const biddingPlan: AppRouteModule = {
component
:
()
=>
import
(
'@/views/biddingManagement/index.vue'
),
component
:
()
=>
import
(
'@/views/biddingManagement/index.vue'
),
meta
:
{
meta
:
{
auth
:
'/www/dist/index.html#/biddingManagement/index'
,
auth
:
'/www/dist/index.html#/biddingManagement/index'
,
title
:
'招标
情况
'
,
title
:
'招标
管理
'
,
orderNo
:
3
,
orderNo
:
3
,
},
},
},
},
...
@@ -41,7 +41,7 @@ const biddingPlan: AppRouteModule = {
...
@@ -41,7 +41,7 @@ const biddingPlan: AppRouteModule = {
component
:
()
=>
import
(
'@/views/biddingManagement/statisticsBidding.vue'
),
component
:
()
=>
import
(
'@/views/biddingManagement/statisticsBidding.vue'
),
meta
:
{
meta
:
{
auth
:
'/www/dist/index.html#/biddingManagement/index'
,
auth
:
'/www/dist/index.html#/biddingManagement/index'
,
title
:
'招标
情况
统计'
,
title
:
'招标
管理
统计'
,
orderNo
:
3
,
orderNo
:
3
,
},
},
},
},
...
...
src/views/biddingPlan/index.vue
View file @
995fd287
...
@@ -43,7 +43,7 @@
...
@@ -43,7 +43,7 @@
confirm: examine.bind(null, record, true),
confirm: examine.bind(null, record, true),
},
},
ifShow: (_action) => {
ifShow: (_action) => {
return (record.reviewStatus === '0' || record.reviewStatus === null)
&&
isExamine === true
&&
record.isSubmit == '1';
return (record.reviewStatus === '0' || record.reviewStatus === null)
&&
record.isSubmit == '1';
},
},
},
},
]"
]"
...
...
src/views/performance/statisticPerformance/index.vue
View file @
995fd287
...
@@ -100,13 +100,21 @@ import {BasicForm, FormSchema, useForm} from '@/components/Form';
...
@@ -100,13 +100,21 @@ import {BasicForm, FormSchema, useForm} from '@/components/Form';
});
});
function
handleSubmit
()
{
function
handleSubmit
()
{
let
data
=
getFieldsValue
();
let
data
=
getFieldsValue
();
console
.
log
(
'data:'
,
data
)
if
(
data
.
filingCycle
===
null
){
data
.
filingCycle
=
''
}
if
(
data
.
planType
===
undefined
){
data
.
planType
=
''
}
params
.
value
=
data
;
params
.
value
=
data
;
console
.
log
(
params
.
value
);
getStatisticList
();
getStatisticList
();
}
}
function
setRowClassName
(
record
)
{
function
setRowClassName
(
record
)
{
if
(
record
.
projectType
===
'总计'
)
{
if
(
record
.
projectType
===
'总计'
)
{
return
'rowcolor'
;
return
'rowcolor'
;
}
if
(
record
.
company
===
'合计'
)
{
return
'rowcolor'
;
}
else
{
}
else
{
return
;
return
;
}
}
...
...
src/views/performance/statisticPerformance/performanceStatisticWindow.vue
View file @
995fd287
...
@@ -30,7 +30,6 @@
...
@@ -30,7 +30,6 @@
const
dataSource
=
ref
([]);
const
dataSource
=
ref
([]);
const
getTitle
=
ref
(
''
);
const
getTitle
=
ref
(
''
);
const
params
=
ref
({
companyId
:
''
,
projectType
:
''
,
filingCycle
:
''
,
planType
:
''
});
const
params
=
ref
({
companyId
:
''
,
projectType
:
''
,
filingCycle
:
''
,
planType
:
''
});
const
[
register
,
{
closeModal
}]
=
useModalInner
(
async
(
data
)
=>
{
const
[
register
,
{
closeModal
}]
=
useModalInner
(
async
(
data
)
=>
{
getTitle
.
value
=
data
.
record
.
company
;
getTitle
.
value
=
data
.
record
.
company
;
params
.
value
.
companyId
=
data
.
record
.
companyId
;
params
.
value
.
companyId
=
data
.
record
.
companyId
;
...
...
src/views/performance/statisticPerformance/statisticData.ts
View file @
995fd287
This diff is collapsed.
Click to expand it.
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