Commit 33f704f5 authored by liangjingpeng's avatar liangjingpeng

评审专家-申报信息3

评审专家-步骤条
parent 9264d7bf
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
<!-- @click="handleUpdate(scope.row)"--> <!-- @click="handleUpdate(scope.row)"-->
<!-- >修改--> <!-- >修改-->
<!-- </el-button>--> <!-- </el-button>-->
<el-button v-if="scope.row.state === '验收评审中'" icon="el-icon-edit-outline" @click="handleAcceptance(scope.row)" /> <el-button v-if="scope.row.state === '验收评审中' ||scope.row.state === '立项评审中'" icon="el-icon-edit-outline" @click="handleProject(scope.row)" />
<el-button v-if="scope.row.state === '立项评审中'" icon="el-icon-edit-outline" @click="handleProject(scope.row)" /> <el-button v-if="scope.row.state === '立项评审中'" icon="el-icon-edit-outline" @click="handleProject(scope.row)" />
<el-button v-else icon="el-icon-search" /> <el-button v-else icon="el-icon-search" />
<!-- <el-button--> <!-- <el-button-->
...@@ -436,20 +436,14 @@ export default { ...@@ -436,20 +436,14 @@ export default {
this.title = '修改标签信息' this.title = '修改标签信息'
}) })
}, },
/** 验收评审中操作按钮*/ /** 评审中操作按钮*/
handleAcceptance(row) {
console.log('row', row)
this.$router.push({
path: '/myTopic/newTopic',
query: {}
})
},
/** 立项评审中操作按钮*/
handleProject(row) { handleProject(row) {
console.log('row', row) console.log('row', row)
this.$router.push({ this.$router.push({
path: '/reviewExperts/topicList/reviewPage', path: '/reviewExperts/topicList/reviewPage',
query: {} query: {
state: row.state,
}
}) })
}, },
// 改变状态 // 改变状态
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment