|
@@ -28,11 +28,11 @@
|
|
|
<el-option label="已审核" :value="true"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="通知分类" prop="classify">
|
|
|
+ <!-- <el-form-item label="通知分类" prop="classify">
|
|
|
<el-select v-model="queryModel.classify" filterable placeholder="请选择" size="mini">
|
|
|
<el-option v-for="classify in classifyResult" :key="classify.id" :label="classify.name" :value="classify.value"></el-option>
|
|
|
</el-select>
|
|
|
- </el-form-item>
|
|
|
+ </el-form-item> -->
|
|
|
<el-form-item label="消息类型" prop="type">
|
|
|
<el-select v-model="queryModel.type" filterable placeholder="请选择" size="mini">
|
|
|
<el-option label="站内通告" value="1"></el-option>
|
|
@@ -46,17 +46,17 @@
|
|
|
</el-form>
|
|
|
<el-divider></el-divider>
|
|
|
<el-row class="button-group">
|
|
|
- <el-button type="primary" size="small" plain icon="el-icon-circle-plus" @click="handleAdd">新增</el-button>
|
|
|
+ <el-button type="primary" size="small" plain icon="el-icon-circle-plus" @click="handleAdd">发送站内消息</el-button>
|
|
|
<el-button type="primary" size="small" plain icon="el-icon-circle-plus" :disabled="multipleSelection.length == 0" @click="handleBatchDelete">删除选中项</el-button>
|
|
|
</el-row>
|
|
|
<el-table :data="tableData" style="min-height: 400px" v-loading="loading" stripe @sort-change="sortChange" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
<el-table-column prop="title" label="标题" width="180"></el-table-column>
|
|
|
- <el-table-column prop="recipientId" label="收件人" width="180"></el-table-column>
|
|
|
- <el-table-column prop="status" label="审核状态" width="180"></el-table-column>
|
|
|
- <el-table-column prop="classify" label="通知分类" width="180"></el-table-column>
|
|
|
- <el-table-column prop="type" label="消息类型" width="180"></el-table-column>
|
|
|
- <el-table-column prop="sendWechat" label="微信消息" width="180"></el-table-column>
|
|
|
+ <!-- <el-table-column prop="recipientId" label="收件人" width="180"></el-table-column> -->
|
|
|
+ <el-table-column prop="statusName" label="审核状态" width="180"></el-table-column>
|
|
|
+ <el-table-column prop="classifyName" label="通知分类" width="180"></el-table-column>
|
|
|
+ <el-table-column prop="typeName" label="消息类型" width="180"></el-table-column>
|
|
|
+ <!-- <el-table-column prop="sendWechat" label="微信消息" width="180"></el-table-column> -->
|
|
|
<el-table-column label="操作">
|
|
|
<template slot-scope="{row}">
|
|
|
<el-button size="mini" type="warning" @click="handleEdit(row)">编辑</el-button>
|