Commit 5071f593 by 莫晓莉

没有权限提醒

parent 2379d886
......@@ -1711,6 +1711,11 @@ export default {
if(res.success){
this.manageList = res.data.records
this.pageInfo.total = res.data.total
}else{
this.$message({
type: "error",
message: res.errMsg,
});
}
})
},
......@@ -1852,6 +1857,11 @@ export default {
});
// this.activeName="first"; //跳转到管理
// this.getManageList();//刷新列表
}else{
this.$message({
                type: "error",
                message: res.errMsg,
            });
}
})
},
......@@ -1973,8 +1983,8 @@ export default {
this.curBoardId=boardId;
this.newsForm.boardName=boardName;//当前栏目名
this.getManageList();//获取管理列表
this.getAssInfoList();//获取审核列表
this.getReportList();//获取收报信息列表
// this.getAssInfoList();//获取审核列表
// this.getReportList();//获取收报信息列表
// this.curTreeDeptId=id;
// this.getDeptUserList(this.rowData.sid,id);
......@@ -2113,6 +2123,11 @@ export default {
if(res.success){
this.assList = res.data.records
this.pageInfoAss.total = res.data.total
}else{
this.$message({
                type: "error",
                message: res.errMsg,
            });
}
})
},
......@@ -2137,6 +2152,11 @@ export default {
if(res.success){
this.reportList = res.data.records
this.pageInfoRe.total = res.data.total
}else{
this.$message({
                type: "error",
                message: res.data,
            });
}
})
},
......
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