提交 afe369c1 编写于 作者: chengxiang.li's avatar chengxiang.li

项目管理页面添加审核提示

上级 67ba7598
......@@ -457,15 +457,11 @@ export default {
let status = row.projectStatus;
// 7.待初审 8.初审未通过 9.待复审 10.复审未通过 11.复审通过
if (status == 7 || status == 8) { // 按钮显示 初审
// text = '初审';
this.firstCheckVisible = true;
} else if (status == 9 || status == 10) { // 按钮显示 复审
// text = '复审';
this.secondCheckVisible = true;
this.goToCheckAuth(row);
} else if (status == 11) { // 按钮显示 发布
// text = '发布';
}
},
handleCheckLeft() { // 左边通过
......@@ -481,11 +477,15 @@ export default {
// refuse = 1 : 同意 refuse = 2:拒绝
vm.GET(`portal/cme/verifyProject?projectId=${row.id}&refuse=${refuse}`, req).then(res => {
closeLoading(vm);
// debugger;
if (res.code == "000000") {
vm.tableData = res.data.data;
//console.log(vm.tableData);
vm.totalRows = res.data.totalRows;
}
this.$message({
message: '审核成功',
type: 'success'
});
} else {
this.$message.error(res.message);
}
});
},
searchList() {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册