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
6d808c35
Commit
6d808c35
authored
Jul 02, 2024
by
小费同学阿
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
项目库,报表中心的计划完成情况的开工竣工筛选,列表,详情
parent
3ddb9e10
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
54 additions
and
3 deletions
+54
-3
drawerData.ts
src/views/project/performanceDrawer/drawerData.ts
+27
-2
performance.vue
src/views/project/tabs/performance.vue
+4
-0
detail.data.ts
src/views/statement/performanceDrawer/detail.data.ts
+19
-1
performance.vue
src/views/statement/tabs/performance.vue
+4
-0
No files found.
src/views/project/performanceDrawer/drawerData.ts
View file @
6d808c35
...
...
@@ -114,12 +114,19 @@ export const performanceFormSchema: FormSchema[] = [
component
:
'Input'
,
},
{
label
:
'开工
竣工
时间'
,
label
:
'开工时间'
,
labelWidth
:
'140px'
,
field
:
'beginTime'
,
required
:
false
,
component
:
'Input'
,
},
{
label
:
'竣工时间'
,
labelWidth
:
'140px'
,
field
:
'endTime'
,
required
:
false
,
component
:
'Input'
,
},
{
label
:
'该年底预计形象进度'
,
labelWidth
:
'140px'
,
...
...
@@ -368,7 +375,7 @@ export function getFormConfig(): Partial<FormProps> {
},
},
{
label
:
'开工
竣工
时间'
,
label
:
'开工时间'
,
field
:
'beginTime'
,
labelWidth
:
'140px'
,
component
:
'DatePicker'
,
...
...
@@ -385,6 +392,24 @@ export function getFormConfig(): Partial<FormProps> {
xxl
:
4
,
},
},
{
label
:
'竣工时间'
,
field
:
'endTime'
,
labelWidth
:
'140px'
,
component
:
'DatePicker'
,
componentProps
:
{
picker
:
'date'
,
valueFormat
:
'YYYY-MM-DD'
,
format
:
'YYYY-MM-DD'
,
style
:
{
width
:
'100%'
,
},
},
colProps
:
{
xl
:
8
,
xxl
:
4
,
},
},
{
label
:
'该年底形象进度'
,
field
:
'completionSchedule'
,
...
...
src/views/project/tabs/performance.vue
View file @
6d808c35
...
...
@@ -7,6 +7,10 @@
<template
v-if=
"column.key === 'serialNumber'"
>
{{
index
+
1
}}
</
template
>
<!-- 把开工竣工放在一起 -->
<
template
v-if=
"column.key === 'beginTime'"
>
{{
record
.
beginTime
+
'至'
+
record
.
endTime
}}
</
template
>
<
template
v-if=
"column.key === 'completionResult'"
>
<Tag
color=
"processing"
>
{{
record
.
completionResult
==
1
?
'已审核'
:
'未审核'
}}
...
...
src/views/statement/performanceDrawer/detail.data.ts
View file @
6d808c35
...
...
@@ -644,7 +644,7 @@ export function getFormConfig(): Partial<FormProps> {
},
},
{
label
:
'开工
竣工
时间'
,
label
:
'开工时间'
,
field
:
'beginTime'
,
labelWidth
:
'140px'
,
component
:
'DatePicker'
,
...
...
@@ -661,6 +661,24 @@ export function getFormConfig(): Partial<FormProps> {
xxl
:
4
,
},
},
{
label
:
'竣工时间'
,
field
:
'endTime'
,
labelWidth
:
'140px'
,
component
:
'DatePicker'
,
componentProps
:
{
picker
:
'date'
,
valueFormat
:
'YYYY-MM-DD'
,
format
:
'YYYY-MM-DD'
,
style
:
{
width
:
'100%'
,
},
},
colProps
:
{
xl
:
8
,
xxl
:
4
,
},
},
{
label
:
'该年底形象进度'
,
field
:
'completionSchedule'
,
...
...
src/views/statement/tabs/performance.vue
View file @
6d808c35
...
...
@@ -7,6 +7,10 @@
<template
v-if=
"column.key === 'serialNumber'"
>
{{
index
+
1
}}
</
template
>
<!-- 把开工竣工放在一起 -->
<
template
v-if=
"column.key === 'beginTime'"
>
{{
record
.
beginTime
+
'至'
+
record
.
endTime
}}
</
template
>
<
template
v-if=
"column.key === 'completionResult'"
>
<Tag
color=
"processing"
>
{{
record
.
completionResult
==
1
?
'已审核'
:
'未审核'
}}
...
...
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