|
@@ -59,7 +59,7 @@
|
|
<el-table-column label="填报日期" width="180" align="center" prop="createTime" />
|
|
<el-table-column label="填报日期" width="180" align="center" prop="createTime" />
|
|
<el-table-column label="操作" width="280" align="center" class-name="small-padding fixed-width">
|
|
<el-table-column label="操作" width="280" align="center" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-button size="mini" type="text" style="background: #0669B2;color: #FFF;padding: 7px;" v-hasPermi="['projectInfo:info:edit']">查看/审核</el-button>
|
|
|
|
|
|
+ <el-button size="mini" type="text" style="background: #0669B2;color: #FFF;padding: 7px;" v-hasPermi="['projectInfo:info:edit']" @click="chei(scope.row)" >查看/审核</el-button>
|
|
<el-button size="mini" type="text" style="background: #3FBCEF;color: #FFF;padding: 7px;" v-hasPermi="['projectInfo:info:edit']"
|
|
<el-button size="mini" type="text" style="background: #3FBCEF;color: #FFF;padding: 7px;" v-hasPermi="['projectInfo:info:edit']"
|
|
@click="infoBtn(scope.row)">{{scope.row.projectStatus%2==1?'提交审核':'驳回'}}</el-button>
|
|
@click="infoBtn(scope.row)">{{scope.row.projectStatus%2==1?'提交审核':'驳回'}}</el-button>
|
|
<el-button size="mini" type="text" style="background: #F5A40C;color: #FFF;padding: 7px;" v-hasPermi="['projectInfo:info:edit']">修改</el-button>
|
|
<el-button size="mini" type="text" style="background: #F5A40C;color: #FFF;padding: 7px;" v-hasPermi="['projectInfo:info:edit']">修改</el-button>
|
|
@@ -485,7 +485,19 @@
|
|
}).then(response => {
|
|
}).then(response => {
|
|
this.download(response.msg);
|
|
this.download(response.msg);
|
|
})
|
|
})
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ //查看
|
|
|
|
+ chei(row){
|
|
|
|
+ console.log(row)
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path:'/management/row',
|
|
|
|
+ query:{
|
|
|
|
+ setid:row.id,
|
|
|
|
+ setrd:row.projectStatus
|
|
|
|
+ },
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|