CET-cmd-2.0/ant-design-vue-jeecg/src/views/system/SysAnnouncementList.vue

286 lines
8.8 KiB
Java
Raw Normal View History

2019-02-25 15:58:05 +08:00
<template>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
2019-02-25 15:58:05 +08:00
<a-row :gutter="24">
<a-col :span="6">
<a-form-item label="标题">
<a-input placeholder="请输入标题" v-model="queryParam.titile"></a-input>
</a-form-item>
</a-col>
<!--<a-col :span="6">
2019-02-25 15:58:05 +08:00
<a-form-item label="内容">
<a-input placeholder="请输入内容" v-model="queryParam.msgContent"></a-input>
</a-form-item>
</a-col>-->
2019-02-25 15:58:05 +08:00
2019-04-14 16:20:04 +08:00
<a-col :span="8">
2019-02-25 15:58:05 +08:00
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
</span>
</a-col>
</a-row>
</a-form>
</div>
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('系统通告')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
2019-04-14 16:20:04 +08:00
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
2019-02-25 15:58:05 +08:00
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay">
2019-04-14 16:20:04 +08:00
<a-menu-item key="1" @click="batchDel">
<a-icon type="delete"/>
删除
</a-menu-item>
2019-02-25 15:58:05 +08:00
</a-menu>
2019-04-14 16:20:04 +08:00
<a-button style="margin-left: 8px"> 批量操作
<a-icon type="down"/>
</a-button>
2019-02-25 15:58:05 +08:00
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
bordered
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange">
<span slot="action" slot-scope="text, record">
<a v-if="record.sendStatus == 0" @click="handleEdit(record)">编辑</a>
2019-02-25 15:58:05 +08:00
<a-divider type="vertical" v-if="record.sendStatus == 0"/>
2019-02-25 15:58:05 +08:00
<a-dropdown>
2019-04-14 16:20:04 +08:00
<a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
2019-02-25 15:58:05 +08:00
<a-menu slot="overlay">
<a-menu-item v-if="record.sendStatus != 1">
2019-02-25 15:58:05 +08:00
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</a-menu-item>
<a-menu-item v-if="record.sendStatus == 0">
<a-popconfirm title="确定发布吗?" @confirm="() => releaseData(record.id)">
2019-02-25 15:58:05 +08:00
<a>发布</a>
</a-popconfirm>
</a-menu-item>
<a-menu-item v-if="record.sendStatus == 1">
<a-popconfirm title="确定撤销吗?" @confirm="() => reovkeData(record.id)">
2019-02-25 15:58:05 +08:00
<a>撤销</a>
</a-popconfirm>
</a-menu-item>
<a-menu-item>
<a @click="handleDetail(record)">查看</a>
</a-menu-item>
2019-02-25 15:58:05 +08:00
</a-menu>
</a-dropdown>
</span>
</a-table>
</div>
<!-- table区域-end -->
<!-- 表单区域 -->
2019-04-14 16:20:04 +08:00
<sysAnnouncement-modal ref="modalForm" @ok="modalFormOk"></sysAnnouncement-modal>
2019-02-25 15:58:05 +08:00
</a-card>
</template>
<script>
import SysAnnouncementModal from './modules/SysAnnouncementModal'
2019-04-14 16:20:04 +08:00
import {doReleaseData, doReovkeData} from '@/api/api'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
2019-02-25 15:58:05 +08:00
export default {
name: "SysAnnouncementList",
2019-04-14 16:20:04 +08:00
mixins: [JeecgListMixin],
2019-02-25 15:58:05 +08:00
components: {
SysAnnouncementModal
},
2019-04-14 16:20:04 +08:00
data() {
2019-02-25 15:58:05 +08:00
return {
description: '系统通告表管理页面',
// 查询条件
queryParam: {},
// 表头
columns: [
{
title: '#',
dataIndex: '',
2019-04-14 16:20:04 +08:00
key: 'rowIndex',
width: 60,
align: "center",
customRender: function (t, r, index) {
return parseInt(index) + 1;
2019-02-25 15:58:05 +08:00
}
},
2019-04-14 16:20:04 +08:00
{
2019-02-25 15:58:05 +08:00
title: '标题',
2019-04-14 16:20:04 +08:00
align: "center",
2019-02-25 15:58:05 +08:00
dataIndex: 'titile'
},
2019-04-14 16:20:04 +08:00
{
title: '消息类型',
align: "center",
dataIndex: 'msgCategory',
customRender: function (text) {
if (text == '1') {
return "通知公告";
} else if (text == "2") {
return "系统消息";
} else {
return text;
}
}
},
/*{
2019-02-25 15:58:05 +08:00
title: '开始时间',
2019-04-14 16:20:04 +08:00
align: "center",
2019-02-25 15:58:05 +08:00
dataIndex: 'startTime'
},
2019-04-14 16:20:04 +08:00
{
2019-02-25 15:58:05 +08:00
title: '结束时间',
2019-04-14 16:20:04 +08:00
align: "center",
2019-02-25 15:58:05 +08:00
dataIndex: 'endTime'
},*/
2019-04-14 16:20:04 +08:00
{
2019-02-25 15:58:05 +08:00
title: '发布人',
2019-04-14 16:20:04 +08:00
align: "center",
2019-02-25 15:58:05 +08:00
dataIndex: 'sender'
},
2019-04-14 16:20:04 +08:00
{
2019-02-25 15:58:05 +08:00
title: '优先级',
2019-04-14 16:20:04 +08:00
align: "center",
2019-02-25 15:58:05 +08:00
dataIndex: 'priority',
2019-04-14 16:20:04 +08:00
customRender: function (text) {
if (text == 'L') {
2019-02-25 15:58:05 +08:00
return "";
2019-04-14 16:20:04 +08:00
} else if (text == "M") {
2019-02-25 15:58:05 +08:00
return "";
2019-04-14 16:20:04 +08:00
} else if (text == "H") {
2019-02-25 15:58:05 +08:00
return "";
} else {
return text;
}
}
},
2019-04-14 16:20:04 +08:00
{
title: '通告对象',
2019-04-14 16:20:04 +08:00
align: "center",
2019-02-25 15:58:05 +08:00
dataIndex: 'msgType',
2019-04-14 16:20:04 +08:00
customRender: function (text) {
if (text == 'USER') {
2019-02-25 15:58:05 +08:00
return "指定用户";
2019-04-14 16:20:04 +08:00
} else if (text == "ALL") {
2019-02-25 15:58:05 +08:00
return "全体用户";
} else {
return text;
}
}
},
2019-04-14 16:20:04 +08:00
{
2019-02-25 15:58:05 +08:00
title: '发布状态',
2019-04-14 16:20:04 +08:00
align: "center",
2019-02-25 15:58:05 +08:00
dataIndex: 'sendStatus',
2019-04-14 16:20:04 +08:00
customRender: function (text) {
if (text == 0) {
2019-02-25 15:58:05 +08:00
return "未发布";
2019-04-14 16:20:04 +08:00
} else if (text == 1) {
2019-02-25 15:58:05 +08:00
return "已发布";
2019-04-14 16:20:04 +08:00
} else if (text == 2) {
2019-02-25 15:58:05 +08:00
return "已撤销";
} else {
return text;
}
}
},
2019-04-14 16:20:04 +08:00
{
2019-02-25 15:58:05 +08:00
title: '发布时间',
2019-04-14 16:20:04 +08:00
align: "center",
2019-02-25 15:58:05 +08:00
dataIndex: 'sendTime'
},
2019-04-14 16:20:04 +08:00
{
2019-02-25 15:58:05 +08:00
title: '撤销时间',
2019-04-14 16:20:04 +08:00
align: "center",
2019-02-25 15:58:05 +08:00
dataIndex: 'cancelTime'
},
2019-04-14 16:20:04 +08:00
/*{
title: '删除状态0正常1已删除',
align:"center",
dataIndex: 'delFlag'
},*/
2019-02-25 15:58:05 +08:00
{
title: '操作',
dataIndex: 'action',
2019-04-14 16:20:04 +08:00
align: "center",
scopedSlots: {customRender: 'action'},
2019-02-25 15:58:05 +08:00
}
],
2019-04-14 16:20:04 +08:00
url: {
2019-02-25 15:58:05 +08:00
list: "/sys/annountCement/list",
delete: "/sys/annountCement/delete",
deleteBatch: "/sys/annountCement/deleteBatch",
2019-04-14 16:20:04 +08:00
releaseDataUrl: "/sys/annountCement/doReleaseData",
reovkeDataUrl: "sys/annountCement/doReovkeData",
exportXlsUrl: "sys/annountCement/exportXls",
importExcelUrl: "sys/annountCement/importExcel",
2019-02-25 15:58:05 +08:00
},
}
},
2019-04-14 16:20:04 +08:00
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
2019-02-25 15:58:05 +08:00
},
methods: {
//执行发布操作
2019-04-14 16:20:04 +08:00
releaseData: function (id) {
2019-02-25 15:58:05 +08:00
console.log(id);
var that = this;
2019-04-14 16:20:04 +08:00
doReleaseData({id: id}).then((res) => {
if (res.success) {
2019-02-25 15:58:05 +08:00
that.$message.success(res.message);
that.loadData(1);
2019-04-14 16:20:04 +08:00
} else {
2019-02-25 15:58:05 +08:00
that.$message.warning(res.message);
}
});
},
//执行撤销操作
2019-04-14 16:20:04 +08:00
reovkeData: function (id) {
2019-02-25 15:58:05 +08:00
var that = this;
2019-04-14 16:20:04 +08:00
doReovkeData({id: id}).then((res) => {
if (res.success) {
2019-02-25 15:58:05 +08:00
that.$message.success(res.message);
that.loadData(1);
2019-04-14 16:20:04 +08:00
} else {
2019-02-25 15:58:05 +08:00
that.$message.warning(res.message);
}
});
},
}
}
</script>
<style scoped>
@import '~@assets/less/common.less'
2019-02-25 15:58:05 +08:00
</style>