Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
Y
yn-science-front
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
徐俊
yn-science-front
Commits
8a228b77
Commit
8a228b77
authored
Apr 14, 2025
by
wangxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
33
parent
7e9dc413
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
Index.vue
src/views/audit/project/Index.vue
+1
-1
final.vue
src/views/audit/project/final.vue
+2
-2
Index.vue
src/views/report/project/Index.vue
+4
-4
projectEdit.vue
src/views/report/project/components/projectEdit.vue
+1
-1
No files found.
src/views/audit/project/Index.vue
View file @
8a228b77
...
...
@@ -193,7 +193,7 @@ export default {
this
.
tableData
=
dataList
.
map
(
item
=>
{
return
{
...
item
,
projClassName
:
item
.
projClass
===
1
?
"一般项目"
:
"重点项目"
,
projClassName
:
item
.
projClass
===
"1"
?
"一般项目"
:
"重点项目"
,
}
})
this
.
tableData
.
forEach
(
e
=>
{
...
...
src/views/audit/project/final.vue
View file @
8a228b77
...
...
@@ -183,7 +183,7 @@ export default {
{
title
:
'财务专家评分'
,
dataIndex
:
'gradeScore2'
,
align
:
'center'
},
{
title
:
'最终得分'
,
dataIndex
:
'gradeScore'
,
align
:
'center'
},
{
title
:
'审核状态'
,
dataIndex
:
'auditResultName'
,
align
:
'center'
},
{
title
:
'操作'
,
scopedSlots
:
{
customRender
:
'option'
},
align
:
'center'
,
width
:
12
0
,
},
{
title
:
'操作'
,
scopedSlots
:
{
customRender
:
'option'
},
align
:
'center'
,
fixed
:
'right'
,
width
:
18
0
,
},
],
tableData
:
[],
innerColumns
:
[
...
...
@@ -288,7 +288,7 @@ export default {
this
.
tableData
=
dataList
;
this
.
pagination
.
total
=
total
;
this
.
tableData
.
forEach
(
e
=>
{
e
.
projClassName
=
e
.
projClass
===
1
?
"一般项目"
:
"重点项目"
e
.
projClassName
=
e
.
projClass
===
"1"
?
"一般项目"
:
"重点项目"
e
.
startDate
=
moment
(
e
.
startDate
).
format
(
'YYYY-MM-DD'
)
e
.
endDate
=
moment
(
e
.
endDate
).
format
(
'YYYY-MM-DD'
)
// 技术专家
...
...
src/views/report/project/Index.vue
View file @
8a228b77
...
...
@@ -35,8 +35,8 @@
</
template
>
<
template
slot=
"option"
slot-scope=
"record"
>
<a-button
type=
"link"
size=
"small"
@
click=
"recordClick(record, 'view')"
>
查看
</a-button>
<a-button
type=
"link"
size=
"small"
v-if=
"((record.projState == -10 || record.projState == 10 || record.projState == 30))"
@
click=
"recordClick(record, 'edit')"
>
修改
</a-button>
<a-popconfirm
title=
"确定要上报吗?"
v-if=
"((record.projState == 10 || record.projState == 30))"
ok-text=
"确定"
cancel-text=
"取消"
@
confirm=
"recordClick(record,'report')"
>
<a-button
type=
"link"
size=
"small"
v-if=
"((record.projState == -10 || record.projState == 10 || record.projState == 30
|| record.projState == 35
))"
@
click=
"recordClick(record, 'edit')"
>
修改
</a-button>
<a-popconfirm
title=
"确定要上报吗?"
v-if=
"((record.projState == 10 || record.projState == 30
|| record.projState == 35
))"
ok-text=
"确定"
cancel-text=
"取消"
@
confirm=
"recordClick(record,'report')"
>
<a-button
type=
"link"
size=
"small"
>
上报
</a-button>
</a-popconfirm>
<a-button
type=
"link"
size=
"small"
v-if=
"record.projState
<
=
10
"
@
click=
"recordClick(record,'delete')"
>
删除
</a-button>
...
...
@@ -73,7 +73,7 @@ import axios from 'axios'
export
default
{
name
:
'reportProject'
,
components
:
{
projectView
,
projectCreate
,
previewFile
,
knowledgeSelect
,
personInfoEdit
projectView
,
projectCreate
,
previewFile
,
knowledgeSelect
,
personInfoEdit
},
data
()
{
return
{
...
...
@@ -142,7 +142,7 @@ export default {
this
.
visibleEdit
=
true
},
getYear
()
{
this
.
$api
.
batch
.
getCurrentYearBatch
({
type
:
1
,
projType
:
getType
(),
timeType
:
1
}).
then
(({
data
=
{}
})
=>
{
this
.
$api
.
batch
.
getCurrentYearBatch
({
type
:
1
,
projType
:
getType
(),
timeType
:
1
}).
then
(({
data
=
{}
})
=>
{
if
(
data
)
{
this
.
isButten
=
data
.
disabled
this
.
description
=
data
.
description
...
...
src/views/report/project/components/projectEdit.vue
View file @
8a228b77
...
...
@@ -796,7 +796,7 @@ export default {
var
obj
=
this
.
getObj
(
step
)
obj
.
step
=
step
let
state
=
obj
.
projState
if
(
state
!=
30
&&
step
==
5
)
if
(
(
state
!=
30
||
state
!=
30
)
&&
step
==
5
)
obj
.
projState
=
10
let
pars
=
isEmptyParams
(
obj
)
let
par
=
{
...
pars
}
...
...
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