Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
intelligent_station_web
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
张伯涛
intelligent_station_web
Commits
419e9f33
Commit
419e9f33
authored
Dec 13, 2024
by
zxw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
课题列表分步流程-立项评审结果页面完成
parent
3a36438d
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
279 additions
and
181 deletions
+279
-181
index.vue
src/views/myTopic/newTopic/index.vue
+252
-174
index.vue
src/views/myTopic/topicList/index.vue
+27
-7
No files found.
src/views/myTopic/newTopic/index.vue
View file @
419e9f33
This diff is collapsed.
Click to expand it.
src/views/myTopic/topicList/index.vue
View file @
419e9f33
...
...
@@ -74,8 +74,12 @@
<el-table-column
label=
"操作"
class-name=
"small-padding fixed-width"
width=
"70"
>
<
template
slot-scope=
"scope"
>
<el-button
v-if=
"scope.row.state === '验收完成' || scope.row.state === '立项评审中'"
icon=
"el-icon-search"
/>
<el-button
v-else
icon=
"el-icon-edit-outline"
/>
<el-button
v-if=
"scope.row.state === '验收完成' || scope.row.state === '立项评审中'"
icon=
"el-icon-search"
@
click=
"handleProject(scope.row)"
/>
<el-button
v-else
icon=
"el-icon-edit-outline"
@
click=
"handleProject(scope.row)"
/>
</
template
>
</el-table-column>
</el-table>
...
...
@@ -99,6 +103,16 @@ export default {
total
:
100
,
loading
:
false
,
busStudentInfoList
:
[
{
topicType
:
'2024YB01036'
,
topicName
:
'测试课题190530'
,
declarationType
:
'一般课题'
,
nameOfThePersonInCharge
:
'于力'
,
phoneNumber
:
'15821163326'
,
creationTime
:
'2024-05-28 10:10'
,
stage
:
'中期'
,
state
:
'中期申请中'
},
{
topicType
:
'2024YB01033'
,
topicName
:
'text123456190528'
,
...
...
@@ -262,13 +276,9 @@ export default {
},
methods
:
{
handleNewProject
()
{
// 先跳转到TabPage页面
this
.
$router
.
push
({
name
:
'TabPage'
,
params
:
{
tab
:
'申报信息'
}})
// 然后发送事件通知TabPage页面显示月报标签页
this
.
$emit
(
'showMonthlyReport'
)
this
.
$router
.
push
({
path
:
'/myTopic/newTopic'
,
query
:
{}
query
:
{
activeTab
:
'first'
}
})
},
/** 查询按钮操作 */
...
...
@@ -276,6 +286,16 @@ export default {
this
.
queryParams
.
page
=
1
this
.
getList
()
},
/** 评审中操作按钮*/
handleProject
(
row
)
{
console
.
log
(
'row'
,
row
)
this
.
$router
.
push
({
path
:
'/myTopic/newTopic'
,
query
:
{
state
:
row
.
state
}
})
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
queryParams
=
{
...
...
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