|
@@ -21,7 +21,7 @@
|
|
|
</el-form>
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
<el-col :span="1.5">
|
|
|
- <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-hasPermi="['business:NEWS:add']">新增新闻</el-button>
|
|
|
+ <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-if="checkPermi(['business:NEWS:add'])">新增新闻</el-button>
|
|
|
</el-col>
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
@@ -60,13 +60,15 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="170">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button v-if="scope.row.status == 4" size="mini" type="text" @click="handleDownOrUp(scope.row)" v-hasPermi="['business:NEWS:edit']">下架</el-button>
|
|
|
- <el-button v-if="scope.row.status == 0 || scope.row.status == 2" size="mini" type="text" v-hasPermi="['business:NEWS:audit']" @click="handleCommit(scope.row)">提交审核</el-button>
|
|
|
- <el-button v-if="scope.row.status == 0 || scope.row.status == 2 || scope.row.status == 5" size="mini" type="text" @click="handleUpdate(scope.row)" v-hasPermi="['business:NEWS:audit']">修改</el-button>
|
|
|
- <el-button v-if="scope.row.status == 5 || scope.row.status == 3" size="mini" type="text" @click="handleDownOrUp(scope.row)" v-hasPermi="['business:NEWS:top']">发布</el-button>
|
|
|
- <el-button v-if="scope.row.status == 6" size="mini" type="text" @click="hanleTop(scope.row)" v-hasPermi="['business:NEWS:edit']">取消置顶</el-button>
|
|
|
- <el-button v-else-if="scope.row.status == 4" size="mini" type="text" @click="hanleTop(scope.row)" v-hasPermi="['business:NEWS:edit']">置顶</el-button>
|
|
|
+ <el-button v-if="scope.row.status == 4 && checkPermi(['business:NEWS:edit'])" size="mini" type="text" @click="handleDownOrUp(scope.row)" >下架</el-button>
|
|
|
+ <el-button v-if="(scope.row.status == 0 || scope.row.status == 2) && checkPermi(['business:NEWS:audit'])" size="mini" type="text" @click="handleCommit(scope.row)">提交审核</el-button>
|
|
|
+ <el-button v-if="(scope.row.status == 0 || scope.row.status == 2 || scope.row.status == 5) && checkPermi(['business:NEWS:audit'])" size="mini" type="text" @click="handleUpdate(scope.row)">修改</el-button>
|
|
|
+ <el-button v-if="(scope.row.status == 5 || scope.row.status == 3) && checkPermi(['business:NEWS:top'])" size="mini" type="text" @click="handleDownOrUp(scope.row)">发布</el-button>
|
|
|
+
|
|
|
+ <el-button v-if="(scope.row.status == 6)&& checkPermi(['business:NEWS:edit'])" size="mini" type="text" @click="hanleTop(scope.row)" >取消置顶</el-button>
|
|
|
+ <el-button v-if="scope.row.status == 4 && checkPermi(['business:NEWS:edit'])" size="mini" type="text" @click="hanleTop(scope.row)" >置顶</el-button>
|
|
|
<el-button type="text" size="mini" @click="showDetail(scope.row)">详情</el-button>
|
|
|
+ <el-button v-if="scope.row.status != 1 && checkPermi(['business:NEWS:remove'])" type="text" size="mini" @click="handleDelete(scope.row)" >删除</el-button>
|
|
|
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -79,7 +81,9 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { listNEWS, getNEWS, delNEWS, addNEWS, updateNEWS, upload, setTop, newCommit, updateAndex, downloadpic } from '@/api/portal/news/NEWS.js';
|
|
|
+import { listNEWS,getNEWS, delNEWS, addNEWS, updateNEWS, upload, setTop, newCommit, updateAndex, downloadpic } from '@/api/portal/news/NEWS.js';
|
|
|
+import { checkPermi } from "@/utils/permission"; // 权限判断函数
|
|
|
+
|
|
|
import edit from './edit';
|
|
|
import detail from './detail.vue'
|
|
|
export default {
|
|
@@ -133,6 +137,7 @@ export default {
|
|
|
this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ checkPermi,
|
|
|
showDetail(row){
|
|
|
const id = row.id || this.ids;
|
|
|
this.iframe({ obj: detail, param: { id: id }, title: '网站新闻详情', width: '1050px', height: '750px' });
|
|
@@ -224,7 +229,7 @@ export default {
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|
|
|
this.$modal
|
|
|
- .confirm('是否确认删除网站新闻编号为"' + ids + '"的数据项?')
|
|
|
+ .confirm('是否确认删除网站新闻 "' + row.title + '" 的数据项?')
|
|
|
.then(function () {
|
|
|
return delNEWS(ids);
|
|
|
})
|