MsgAllDetails.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <template>
  2. <div class="box">
  3. <div class="condition">
  4. <div class="main" :style="tableData && tableData.length ? 'height: calc(100% - 50px);' : 'height: calc(100% - 46px);'">
  5. <el-table
  6. ref="multipleTable"
  7. :data="tableData"
  8. v-loading="loading"
  9. stripe
  10. height="100%"
  11. :header-cell-style="headerStyle"
  12. @expand-change="changeMessageState"
  13. >
  14. <el-table-column type="selection" width="55"></el-table-column>
  15. <el-table-column width="25">
  16. <template slot-scope="scope">
  17. <el-badge class="item" type="warning" is-dot v-if="!scope.row.read"></el-badge>
  18. </template>
  19. </el-table-column>
  20. <el-table-column prop="title" label="标题内容" min-width="300" show-overflow-tooltip></el-table-column>
  21. <el-table-column label="项目">
  22. <template slot-scope="scope">
  23. {{ scope.row.project[0].localName }}
  24. </template>
  25. </el-table-column>
  26. <el-table-column label="模块" width="200">
  27. <template slot-scope="scope">
  28. {{ moduleMap[scope.row.module] ? moduleMap[scope.row.module] : scope.row.module }}
  29. </template>
  30. </el-table-column>
  31. <el-table-column prop="createTime" label="消息时间"> </el-table-column>
  32. <el-table-column label="消息类型">
  33. <template slot-scope="scope">
  34. <div>
  35. <i
  36. :class="iconClassMap[scope.row.type] ? iconClassMap[scope.row.type] : 'msg-icon el-icon-warning warning-color'"
  37. style="font-size: 14px"
  38. ></i>
  39. <span>{{ typeMap[scope.row.type] ? typeMap[scope.row.type] : scope.row.type }}</span>
  40. </div>
  41. </template>
  42. </el-table-column>
  43. <el-table-column type="expand">
  44. <template slot-scope="scope">
  45. <p>{{ scope.row.content.message }}</p>
  46. <el-link
  47. v-for="(btn, index) in scope.row.content.buttonList"
  48. style="float: left; font-size: 12px; color: white"
  49. :key="index"
  50. :href="`/image-service/common/file_get?systemId=revit&key=${btn.url}`"
  51. :download="btn.fileName ? btn.fileName : ''"
  52. >
  53. {{ btn.name }}
  54. </el-link>
  55. </template>
  56. </el-table-column>
  57. <template slot="empty">
  58. <div style="height: 60%; transform: translateY(50%)">
  59. <i class="icon-wushuju iconfont"></i>
  60. 暂无数据
  61. </div>
  62. </template>
  63. </el-table>
  64. </div>
  65. <el-pagination
  66. class="right"
  67. v-show="tableData && tableData.length"
  68. @size-change="handleSizeChange"
  69. @current-change="handleCurrentChange"
  70. :current-page="page.pageNumber"
  71. :page-sizes="page.pageSizes"
  72. :page-size="page.pageSize"
  73. layout="total, sizes, prev, pager, next, jumper"
  74. :total="page.total"
  75. >
  76. </el-pagination>
  77. </div>
  78. </div>
  79. </template>
  80. <script lang="ts">
  81. import { messgeQuery, messgeUpdate } from "@/api/messagecenter";
  82. import { Component, Vue } from "vue-property-decorator";
  83. import Bus from "@/utils/bus.ts";
  84. import { UserModule } from "@/store/modules/user";
  85. @Component({
  86. name: "MsgAllDetails",
  87. components: {},
  88. })
  89. export default class extends Vue {
  90. // 消息数据
  91. private tableData: any[] = [];
  92. // loading标识
  93. private loading = false;
  94. // 分页配置
  95. private page = {
  96. pageSize: 50,
  97. pageSizes: [10, 20, 50, 100],
  98. pageNumber: 1,
  99. total: 0,
  100. };
  101. // 列表样式
  102. private headerStyle = {
  103. backgroundColor: "#e1e4e5",
  104. color: "#2b2b2b",
  105. lineHeight: "30px",
  106. };
  107. // 消息模块映射
  108. private moduleMap = {
  109. Model: "模型文件管理",
  110. };
  111. // 消息类型图标映射
  112. private iconClassMap = {
  113. Success: "msg-icon el-icon-success success-color",
  114. Error: "msg-icon el-icon-error error-color",
  115. Warning: "msg-icon el-icon-warning warning-color",
  116. Info: "msg-icon el-icon-info info-color",
  117. };
  118. // 消息类型文字映射
  119. private typeMap = {
  120. Success: "成功",
  121. Error: "错误",
  122. Warning: "警告",
  123. Info: "提醒",
  124. };
  125. get userId(): string {
  126. return UserModule.userId;
  127. }
  128. mounted() {
  129. this.getTableData();
  130. }
  131. /**
  132. * 获取列表数据
  133. */
  134. private async getTableData() {
  135. let params = {
  136. cascade: [
  137. {
  138. name: "project",
  139. },
  140. ],
  141. filters: `userId='${this.userId}';type!='Refresh'`,
  142. orders: "createTime desc, id asc",
  143. pageNumber: this.page.pageNumber,
  144. pageSize: this.page.pageSize,
  145. };
  146. this.loading = true;
  147. const res = await messgeQuery(params);
  148. if (res.result === "success") {
  149. this.tableData = res.content;
  150. this.page.total = res.total;
  151. this.loading = false;
  152. }
  153. }
  154. /**
  155. * 切换每页显示数量
  156. */
  157. private handleSizeChange(val: number) {
  158. this.page.pageSize = val;
  159. this.getTableData();
  160. }
  161. /**
  162. * 切换页码
  163. */
  164. private handleCurrentChange(val: number) {
  165. this.page.pageNumber = val;
  166. this.getTableData();
  167. }
  168. /**
  169. * 更新消息状态:已读、未读
  170. */
  171. private async changeMessageState(val: any) {
  172. if (!val.Read) {
  173. val.Read = true;
  174. const params = {
  175. content: [
  176. {
  177. id: val.id,
  178. read: true,
  179. },
  180. ],
  181. };
  182. const res = await messgeUpdate(params);
  183. // 展开更新为已读状态,未读数量同步变更
  184. if (res.result === "success") Bus.$emit("getUnreadCountUpdate");
  185. }
  186. }
  187. }
  188. </script>
  189. <style scoped lang='scss'>
  190. .box {
  191. height: 100%;
  192. .condition {
  193. padding: 10px;
  194. display: flex;
  195. height: 100%;
  196. flex-direction: column;
  197. border: 1px solid #dfe6ec;
  198. background: #fff;
  199. .main {
  200. margin-top: 10px;
  201. a {
  202. text-decoration: none;
  203. }
  204. }
  205. .right {
  206. text-align: right;
  207. margin-top: 10px;
  208. }
  209. }
  210. }
  211. .el-badge.item {
  212. height: 10px;
  213. }
  214. .el-table__expanded-cell {
  215. p {
  216. margin-left: 40px;
  217. }
  218. }
  219. .el-link {
  220. margin: 20px 0 0 40px;
  221. background: #409eff;
  222. border-radius: 3px;
  223. padding: 3px 15px;
  224. }
  225. .demo-table-expand {
  226. font-size: 0;
  227. }
  228. .demo-table-expand label {
  229. width: 90px;
  230. color: #99a9bf;
  231. }
  232. .demo-table-expand .el-form-item {
  233. margin-right: 0;
  234. margin-bottom: 0;
  235. margin-left: 120px;
  236. width: 100%;
  237. }
  238. .success-color {
  239. color: #67c23a;
  240. }
  241. .error-color {
  242. color: #f56c6c;
  243. }
  244. .warning-color {
  245. color: #e6a23c;
  246. }
  247. .info-color {
  248. color: #909399;
  249. }
  250. </style>