Blame view

ant-design-vue-jeecg/src/views/system/SysAnnouncementList.vue 8.94 KB
1
2
3
4
5
<template>
  <a-card :bordered="false">

    <!-- 查询区域 -->
    <div class="table-page-search-wrapper">
6
      <a-form layout="inline" @keyup.enter.native="searchQuery">
7
8
9
10
11
12
13
        <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>
14
          <!--<a-col :span="6">
15
16
17
            <a-form-item label="内容">
              <a-input placeholder="请输入内容" v-model="queryParam.msgContent"></a-input>
            </a-form-item>
18
          </a-col>-->
19
20
          <a-col :span="8">
21
22
23
24
25
26
27
28
29
30
31
32
33
            <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>
34
35
      <a-button type="primary" icon="download" @click="handleExportXls('系统通告')">导出</a-button>
      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
36
37
        <a-button type="primary" icon="import">导入</a-button>
      </a-upload>
38
39
      <a-dropdown v-if="selectedRowKeys.length > 0">
        <a-menu slot="overlay">
40
41
42
43
          <a-menu-item key="1" @click="batchDel">
            <a-icon type="delete"/>
            删除
          </a-menu-item>
44
        </a-menu>
45
46
47
        <a-button style="margin-left: 8px"> 批量操作
          <a-icon type="down"/>
        </a-button>
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
      </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">
71
          <a  v-if="record.sendStatus == 0" @click="handleEdit(record)">编辑</a>
72
73
          <a-divider type="vertical" v-if="record.sendStatus == 0"/>
74
          <a-dropdown>
75
            <a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
76
            <a-menu slot="overlay">
77
              <a-menu-item v-if="record.sendStatus != 1">
78
79
80
81
82
83
84
85
86
87
88
89
90
91
                <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)">
                  <a>发布</a>
                </a-popconfirm>
              </a-menu-item>
              <a-menu-item v-if="record.sendStatus == 1">
                <a-popconfirm title="确定撤销吗?" @confirm="() => reovkeData(record.id)">
                  <a>撤销</a>
                </a-popconfirm>
              </a-menu-item>
92
93
94
              <a-menu-item>
                  <a @click="handleDetail(record)">查看</a>
              </a-menu-item>
95
96
97
98
99
100
101
102
103
            </a-menu>
          </a-dropdown>
        </span>

      </a-table>
    </div>
    <!-- table区域-end -->

    <!-- 表单区域 -->
104
    <sysAnnouncement-modal ref="modalForm" @ok="modalFormOk"></sysAnnouncement-modal>
105
106
107
108
109
  </a-card>
</template>

<script>
  import SysAnnouncementModal from './modules/SysAnnouncementModal'
110
  import {doReleaseData, doReovkeData} from '@/api/api'
111
  import {getAction} from '@/api/manage'
112
  import {JeecgListMixin} from '@/mixins/JeecgListMixin'
113
114
115

  export default {
    name: "SysAnnouncementList",
116
    mixins: [JeecgListMixin],
117
118
119
    components: {
      SysAnnouncementModal
    },
120
    data() {
121
122
123
124
125
126
127
128
129
      return {
        description: '系统通告表管理页面',
        // 查询条件
        queryParam: {},
        // 表头
        columns: [
          {
            title: '#',
            dataIndex: '',
130
131
132
133
134
            key: 'rowIndex',
            width: 60,
            align: "center",
            customRender: function (t, r, index) {
              return parseInt(index) + 1;
135
136
            }
          },
137
138

          {
139
            title: '标题',
140
            align: "center",
141
142
            dataIndex: 'titile'
          },
143
          {
144
145
146
147
148
149
150
151
152
153
154
155
156
157
            title: '消息类型',
            align: "center",
            dataIndex: 'msgCategory',
            customRender: function (text) {
              if (text == '1') {
                return "通知公告";
              } else if (text == "2") {
                return "系统消息";
              } else {
                return text;
              }
            }
          },
          /*{
158
            title: '开始时间',
159
            align: "center",
160
161
            dataIndex: 'startTime'
          },
162
          {
163
            title: '结束时间',
164
            align: "center",
165
            dataIndex: 'endTime'
166
          },*/
167
          {
168
            title: '发布人',
169
            align: "center",
170
171
            dataIndex: 'sender'
          },
172
          {
173
            title: '优先级',
174
            align: "center",
175
            dataIndex: 'priority',
176
177
            customRender: function (text) {
              if (text == 'L') {
178
                return "低";
179
              } else if (text == "M") {
180
                return "中";
181
              } else if (text == "H") {
182
183
184
185
186
187
                return "高";
              } else {
                return text;
              }
            }
          },
188
          {
189
            title: '通告对象',
190
            align: "center",
191
            dataIndex: 'msgType',
192
193
            customRender: function (text) {
              if (text == 'USER') {
194
                return "指定用户";
195
              } else if (text == "ALL") {
196
197
198
199
200
201
                return "全体用户";
              } else {
                return text;
              }
            }
          },
202
          {
203
            title: '发布状态',
204
            align: "center",
205
            dataIndex: 'sendStatus',
206
207
            customRender: function (text) {
              if (text == 0) {
208
                return "未发布";
209
              } else if (text == 1) {
210
                return "已发布";
211
              } else if (text == 2) {
212
213
214
215
216
217
                return "已撤销";
              } else {
                return text;
              }
            }
          },
218
          {
219
            title: '发布时间',
220
            align: "center",
221
222
            dataIndex: 'sendTime'
          },
223
          {
224
            title: '撤销时间',
225
            align: "center",
226
227
            dataIndex: 'cancelTime'
          },
228
229
230
231
232
          /*{
                title: '删除状态(0,正常,1已删除)',
                align:"center",
                dataIndex: 'delFlag'
              },*/
233
234
235
          {
            title: '操作',
            dataIndex: 'action',
236
237
            align: "center",
            scopedSlots: {customRender: 'action'},
238
239
          }
        ],
240
        url: {
241
242
243
          list: "/sys/annountCement/list",
          delete: "/sys/annountCement/delete",
          deleteBatch: "/sys/annountCement/deleteBatch",
244
245
246
247
          releaseDataUrl: "/sys/annountCement/doReleaseData",
          reovkeDataUrl: "sys/annountCement/doReovkeData",
          exportXlsUrl: "sys/annountCement/exportXls",
          importExcelUrl: "sys/annountCement/importExcel",
248
249
250
        },
      }
    },
251
252
253
254
    computed: {
      importExcelUrl: function(){
        return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
      }
255
256
257
    },
    methods: {
      //执行发布操作
258
      releaseData: function (id) {
259
260
        console.log(id);
        var that = this;
261
262
        doReleaseData({id: id}).then((res) => {
          if (res.success) {
263
264
            that.$message.success(res.message);
            that.loadData(1);
265
          } else {
266
267
268
269
270
            that.$message.warning(res.message);
          }
        });
      },
      //执行撤销操作
271
      reovkeData: function (id) {
272
        var that = this;
273
274
        doReovkeData({id: id}).then((res) => {
          if (res.success) {
275
276
            that.$message.success(res.message);
            that.loadData(1);
277
            this.syncHeadNotic(id)
278
          } else {
279
280
281
282
            that.$message.warning(res.message);
          }
        });
      },
283
284
285
      syncHeadNotic(anntId){
        getAction("sys/annountCement/syncNotic",{anntId:anntId})
      },
286
287
288
289
    }
  }
</script>
<style scoped>
290
  @import '~@assets/less/common.less'
291
</style>