index.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" size="small" label-width="100px">
  4. <el-form-item label="内容关键字" prop="noticeContent">
  5. <el-input v-model="queryParams.noticeContent" clearable style="width: 200px;" placeholder="请输入内容关键字"></el-input>
  6. </el-form-item>
  7. <el-form-item>
  8. <el-button type="primary" @click="handleQuery">搜索</el-button>
  9. <el-button @click="resetQuery">重置</el-button>
  10. </el-form-item>
  11. </el-form>
  12. <h3 class="toolbar">
  13. <span class="title">列表</span>
  14. </h3>
  15. <el-table v-loading="loading" :data="list" border>
  16. <el-table-column label="通知类型" prop="noticeType" width="120" align="center" :formatter="noticeTypeFormat"/>
  17. <el-table-column label="通知标题" prop="noticeTitle" align="center"></el-table-column>
  18. <el-table-column label="内容" prop="noticeContent" align="center">
  19. <template slot-scope="scope" >
  20. <span class="content_msg"> {{scope.row.noticeContent}}</span> <el-button @click="handleView(scope.row)" type="text" size="small">查看详情</el-button>
  21. </template>
  22. </el-table-column>
  23. <el-table-column label="状态" prop="status" align="center" width="120" :formatter="statusFormat"/>
  24. <el-table-column label="发送时间" align="center" prop="createTime" width="170"></el-table-column>
  25. </el-table>
  26. <pagination
  27. v-show="total>0"
  28. :total="total"
  29. :page.sync="queryParams.pageNum"
  30. :limit.sync="queryParams.pageSize"
  31. @pagination="getList"/>
  32. </div>
  33. </template>
  34. <script>
  35. import {listMsgApi,noticeByIdApi} from "@/api/admin/msg/msg"
  36. import {entStateOptions, getLabel, authStateOptions} from '@/utils/dataFormat'
  37. export default {
  38. data () {
  39. return {
  40. loading: false,
  41. addTaxVisible: false,
  42. type: '',
  43. provinceDataList: [],
  44. cityDataList: [],
  45. districtDataList: [],
  46. msgTypeOptions: [], //通知类型
  47. statusOptions: [], //通知状态
  48. entStateOptions: entStateOptions,
  49. authStateOptions: authStateOptions,
  50. // 模板状态
  51. // statusOptions: accessStatus,
  52. dateRange: [],
  53. queryParams: {
  54. pageNum: 1,
  55. pageSize: 10,
  56. noticeContent: ''
  57. },
  58. list: [],
  59. total: 0,
  60. open: false,
  61. openInfo: false,
  62. }
  63. },
  64. created() {
  65. this.getList()
  66. //通知类型
  67. this.getDicts("sys_notice_type").then(response => {
  68. this.msgTypeOptions = response.data;
  69. });
  70. //通知状态 sys_notice_status
  71. this.getDicts("msg_type").then(response => {
  72. this.statusOptions = response.data;
  73. });
  74. },
  75. methods: {
  76. getList() {
  77. this.loading = true;
  78. listMsgApi(this.queryParams).then(response => {
  79. this.list = response.data.records;
  80. this.total = response.data.total;
  81. this.loading = false;
  82. });
  83. },
  84. /** 查看 */
  85. handleView(row){
  86. const id = row.noticeId;
  87. noticeByIdApi(id).then(response => {
  88. this.$alert(response.data.noticeContent, "消息内容");
  89. });
  90. this.getList()
  91. },
  92. // 重置
  93. resetQuery() {
  94. this.resetForm("queryForm");
  95. this.handleQuery();
  96. },
  97. // 搜索
  98. handleQuery() {
  99. this.queryParams.pageNum = 1;
  100. this.getList();
  101. },
  102. noticeTypeFormat(row, col) {
  103. return this.selectDictLabel(this.msgTypeOptions, row.noticeType);
  104. },
  105. statusFormat(row, col) {
  106. return this.selectDictLabel(this.statusOptions, row.status)
  107. }
  108. }
  109. }
  110. </script>
  111. <style scoped>
  112. .content_msg{
  113. white-space: nowrap;
  114. text-overflow: ellipsis;
  115. overflow: hidden;
  116. }
  117. </style>