Commit b7114190 authored by Your Name's avatar Your Name

修改删除项目提示语

parent 4141f861
...@@ -62,7 +62,7 @@ export const menuList = [ ...@@ -62,7 +62,7 @@ export const menuList = [
children: [ children: [
{ name: '视频审核', icon: 'icon-video', color: 'index-blue', url: '/checkVideo' }, { name: '视频审核', icon: 'icon-video', color: 'index-blue', url: '/checkVideo' },
{ name: '展板审核', icon: 'icon-screen', color: 'index-green', url: '/checkDisplay' }, { name: '展板审核', icon: 'icon-screen', color: 'index-green', url: '/checkDisplay' },
{ name: '学习内容审核', icon: 'icon-magnifier', color: 'index-pink', url: '/checkLearn' }, { name: '学习项目及学习内容审核', icon: 'icon-magnifier', color: 'index-pink', url: '/checkLearn' },
{ name: '账号禁用审核', icon: 'icon-disable', color: 'index-red', url: '/recheck' } { name: '账号禁用审核', icon: 'icon-disable', color: 'index-red', url: '/recheck' }
] ]
} }
......
...@@ -359,8 +359,8 @@ export default { ...@@ -359,8 +359,8 @@ export default {
}, },
getExhibitionBoardTable() { getExhibitionBoardTable() {
const param = { const param = {
boardCopyrightOwnerIdList: this.ruleForm.copyrightOwnerIdList, boardCopyrightOwnerIdList: this.ruleForm.copyrightOwnerIdList.toString(),
exhibitionBoardCatIdList: this.ruleForm.exhibitionBoardCatIdList exhibitionBoardCatIdList: this.ruleForm.exhibitionBoardCatIdList.toString()
}; };
this.getTableData(param, "update"); this.getTableData(param, "update");
}, },
...@@ -480,7 +480,7 @@ export default { ...@@ -480,7 +480,7 @@ export default {
.then(res => { .then(res => {
if(res.data.resultCode === "200"){ if(res.data.resultCode === "200"){
if(this.userType === '1'){ if(this.userType === '1'){
this.$message({ type: "success", message: "新增学习内容申请已提交,待审核!" }); this.$message({ type: "success", message: "新增学习项目申请已提交,待审核!" });
}else{ }else{
this.$message({ type: "success", message: "新增成功!" }); this.$message({ type: "success", message: "新增成功!" });
} }
...@@ -514,7 +514,7 @@ export default { ...@@ -514,7 +514,7 @@ export default {
.then(res => { .then(res => {
if(res.data.resultCode === "200"){ if(res.data.resultCode === "200"){
if(this.userType === '1'){ if(this.userType === '1'){
this.$message({ type: "success", message: "修改学习内容申请已提交,待审核!" }); this.$message({ type: "success", message: res.data.message });
}else{ }else{
this.$message({ type: "success", message: "修改成功!" }); this.$message({ type: "success", message: "修改成功!" });
} }
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
<template slot-scope="scope" width="220"> <template slot-scope="scope" width="220">
<div class="table-btn-group"> <div class="table-btn-group">
<el-tooltip content="修改" placement="top"> <el-tooltip content="修改" placement="top">
<el-button circle @click="openEdit(scope.row)"> <el-button circle :disabled="scope.row.auditStatus !== 'APPROVED_FINAL' && scope.row.auditStatus !== 'REFUSED'" @click="openEdit(scope.row)">
<i class="icon-table icon-edit"></i> <i class="icon-table icon-edit"></i>
</el-button> </el-button>
</el-tooltip> </el-tooltip>
...@@ -358,7 +358,7 @@ export default { ...@@ -358,7 +358,7 @@ export default {
// 删除 // 删除
handleDelete(row) { handleDelete(row) {
let _this = this; let _this = this;
this.$confirm("此操作将永久删除, 是否继续?", "提示", { this.$confirm("删除项目后对应的学习内容也会被删除!", "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
......
...@@ -236,11 +236,11 @@ export let learnRoute = [ ...@@ -236,11 +236,11 @@ export let learnRoute = [
}, },
{ {
path: '/checkLearn', path: '/checkLearn',
name: '平台学习内容审核', name: '学习项目及学习内容审核',
component: () => import('@/page/check/learn/index'), component: () => import('@/page/check/learn/index'),
meta: { meta: {
showBreadcrumb: true, showBreadcrumb: true,
title: '平台学习内容审核', title: '学习项目及学习内容审核',
} }
}, },
{ {
......
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