index.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <!-- <doc-alert title="站内信配置" url="https://doc.iocoder.cn/notify/" /> -->
  3. <ContentWrap>
  4. <!-- 搜索工作栏 -->
  5. <el-form
  6. class="-mb-15px"
  7. :model="queryParams"
  8. ref="queryFormRef"
  9. :inline="true"
  10. label-width="68px"
  11. >
  12. <el-form-item label="是否已读" prop="readStatus">
  13. <el-select
  14. v-model="queryParams.readStatus"
  15. placeholder="请选择状态"
  16. clearable
  17. class="!w-240px"
  18. >
  19. <el-option
  20. v-for="dict in getBoolDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING)"
  21. :key="dict.value"
  22. :label="dict.label"
  23. :value="dict.value"
  24. />
  25. </el-select>
  26. </el-form-item>
  27. <el-form-item label="发送时间" prop="createTime">
  28. <el-date-picker
  29. v-model="queryParams.createTime"
  30. value-format="YYYY-MM-DD HH:mm:ss"
  31. type="daterange"
  32. start-placeholder="开始日期"
  33. end-placeholder="结束日期"
  34. :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
  35. class="!w-240px"
  36. />
  37. </el-form-item>
  38. <el-form-item>
  39. <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
  40. <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
  41. <el-button @click="handleUpdateList">
  42. <Icon icon="ep:reading" class="mr-5px" /> 标记已读
  43. </el-button>
  44. <el-button @click="handleUpdateAll">
  45. <Icon icon="ep:reading" class="mr-5px" /> 全部已读
  46. </el-button>
  47. </el-form-item>
  48. </el-form>
  49. </ContentWrap>
  50. <!-- 列表 -->
  51. <ContentWrap>
  52. <el-table
  53. v-loading="loading"
  54. :data="list"
  55. ref="tableRef"
  56. row-key="id"
  57. @selection-change="handleSelectionChange"
  58. >
  59. <el-table-column type="selection" :selectable="selectable" :reserve-selection="true" />
  60. <el-table-column label="发送人" align="center" prop="templateNickname" width="180" />
  61. <el-table-column
  62. label="发送时间"
  63. align="center"
  64. prop="createTime"
  65. width="200"
  66. :formatter="dateFormatter"
  67. />
  68. <el-table-column label="类型" align="center" prop="templateType" width="180">
  69. <template #default="scope">
  70. <dict-tag :type="DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE" :value="scope.row.templateType" />
  71. </template>
  72. </el-table-column>
  73. <el-table-column
  74. label="消息内容"
  75. align="center"
  76. prop="templateContent"
  77. show-overflow-tooltip
  78. />
  79. <el-table-column label="是否已读" align="center" prop="readStatus" width="160">
  80. <template #default="scope">
  81. <dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.readStatus" />
  82. </template>
  83. </el-table-column>
  84. <el-table-column
  85. label="阅读时间"
  86. align="center"
  87. prop="readTime"
  88. width="200"
  89. :formatter="dateFormatter"
  90. />
  91. <el-table-column label="操作" align="center" width="160">
  92. <template #default="scope">
  93. <el-button
  94. link
  95. :type="scope.row.readStatus ? 'primary' : 'warning'"
  96. @click="openDetail(scope.row)"
  97. >
  98. {{ scope.row.readStatus ? '详情' : '已读' }}
  99. </el-button>
  100. </template>
  101. </el-table-column>
  102. </el-table>
  103. <!-- 分页 -->
  104. <Pagination
  105. :total="total"
  106. v-model:page="queryParams.pageNo"
  107. v-model:limit="queryParams.pageSize"
  108. @pagination="getList"
  109. />
  110. </ContentWrap>
  111. <!-- 表单弹窗:详情 -->
  112. <MyNotifyMessageDetail ref="detailRef" />
  113. </template>
  114. <script lang="ts" setup>
  115. import { DICT_TYPE, getBoolDictOptions } from '@/utils/dict'
  116. import { dateFormatter } from '@/utils/formatTime'
  117. import * as NotifyMessageApi from '@/api/system/notify/message'
  118. import MyNotifyMessageDetail from './MyNotifyMessageDetail.vue'
  119. defineOptions({ name: 'SystemMyNotify' })
  120. const message = useMessage() // 消息
  121. const loading = ref(true) // 列表的加载中
  122. const total = ref(0) // 列表的总页数
  123. const list = ref([]) // 列表的数据
  124. const queryParams = reactive({
  125. pageNo: 1,
  126. pageSize: 10,
  127. readStatus: undefined,
  128. createTime: []
  129. })
  130. const queryFormRef = ref() // 搜索的表单
  131. const tableRef = ref() // 表格的 Ref
  132. const selectedIds = ref<number[]>([]) // 表格的选中 ID 数组
  133. /** 查询列表 */
  134. const getList = async () => {
  135. loading.value = true
  136. try {
  137. const data = await NotifyMessageApi.getMyNotifyMessagePage(queryParams)
  138. list.value = data.list
  139. total.value = data.total
  140. } finally {
  141. loading.value = false
  142. }
  143. }
  144. /** 搜索按钮操作 */
  145. const handleQuery = () => {
  146. queryParams.pageNo = 1
  147. getList()
  148. }
  149. /** 重置按钮操作 */
  150. const resetQuery = () => {
  151. queryFormRef.value.resetFields()
  152. tableRef.value.clearSelection()
  153. handleQuery()
  154. }
  155. /** 详情操作 */
  156. const detailRef = ref()
  157. const openDetail = (data: NotifyMessageApi.NotifyMessageVO) => {
  158. if (!data.readStatus) {
  159. handleReadOne(data.id)
  160. }
  161. detailRef.value.open(data)
  162. }
  163. /** 标记一条站内信已读 */
  164. const handleReadOne = async (id) => {
  165. await NotifyMessageApi.updateNotifyMessageRead(id)
  166. await getList()
  167. }
  168. /** 标记全部站内信已读 **/
  169. const handleUpdateAll = async () => {
  170. await NotifyMessageApi.updateAllNotifyMessageRead()
  171. message.success('全部已读成功!')
  172. tableRef.value.clearSelection()
  173. await getList()
  174. }
  175. /** 标记一些站内信已读 **/
  176. const handleUpdateList = async () => {
  177. if (selectedIds.value.length === 0) {
  178. return
  179. }
  180. await NotifyMessageApi.updateNotifyMessageRead(selectedIds.value)
  181. message.success('批量已读成功!')
  182. tableRef.value.clearSelection()
  183. await getList()
  184. }
  185. /** 某一行,是否允许选中 */
  186. const selectable = (row) => {
  187. return !row.readStatus
  188. }
  189. /** 当表格选择项发生变化时会触发该事件 */
  190. const handleSelectionChange = (array: NotifyMessageApi.NotifyMessageVO[]) => {
  191. selectedIds.value = []
  192. if (!array) {
  193. return
  194. }
  195. array.forEach((row) => selectedIds.value.push(row.id))
  196. }
  197. /** 初始化 **/
  198. onMounted(() => {
  199. getList()
  200. })
  201. </script>