浏览代码

消息详情页修改

zhangyu 4 年之前
父节点
当前提交
c3f743afe5
共有 1 个文件被更改,包括 218 次插入181 次删除
  1. 218 181
      src/layout/components/Navbar/MessageSever/MsgAllDetails.vue

+ 218 - 181
src/layout/components/Navbar/MessageSever/MsgAllDetails.vue

@@ -1,229 +1,266 @@
 <template>
-  <div class="box">
-    <div class="condition">
-      <div class="main"
-           :style="tableData && tableData.length?'height: calc(100% - 50px);':'height: calc(100% - 46px);'">
-        <el-table ref="multipleTable" :data="tableData" v-loading='loading' stripe height="100%"
-                  :header-cell-style="headerStyle"
-                  @expand-change="changeMessageState">
-          <el-table-column type="selection" width="55"></el-table-column>
-          <el-table-column width="25">
-            <template slot-scope="scope">
-              <el-badge class="item" type="warning" is-dot v-if="!scope.row.read"></el-badge>
-            </template>
-          </el-table-column>
-          <el-table-column prop="title" label="标题内容" min-width="300" show-overflow-tooltip></el-table-column>
-          <el-table-column label="项目">
-            <template slot-scope="scope">
-              {{ scope.row.project[0].localName }}
-            </template>
-          </el-table-column>
-          <el-table-column label="模块" width="200">
-            <template slot-scope="scope">
-              {{ moduleMap[scope.row.module] ? moduleMap[scope.row.module] : scope.row.module }}
-            </template>
-          </el-table-column>
-          <el-table-column prop="createTime" label="消息时间">
-          </el-table-column>
-          <el-table-column label="消息类型">
-            <template slot-scope="scope">
-              <div>
-                <i
-                  :class="iconClassMap[scope.row.Type]?iconClassMap[scope.row.Type]:'msg-icon el-icon-warning warning-color'"
-                  style="font-size:14px;"></i>
-                <span>{{ typeMap[scope.row.type] ? typeMap[scope.row.type] : scope.row.type }}</span>
-              </div>
-            </template>
-          </el-table-column>
-          <el-table-column type="expand">
-            <template slot-scope="scope">
-              <p>{{ scope.row.content.message }}</p>
-              <el-link v-for="(btn, index) in scope.row.content.buttonList"
-                       style="float:left;font-size:12px;color:white;"
-                       :key="index" :href="`/image-service/common/file_get?systemId=revit&key=${btn.url}`"
-                       :download="btn.fileName?btn.fileName:''">
-                {{ btn.name }}
-              </el-link>
-            </template>
-          </el-table-column>
-          <template slot="empty">
-            <div style="height: 60%;transform: translateY(50%);">
-              <i class="icon-wushuju iconfont"></i>
-              暂无数据
+    <div class="box">
+        <div class="condition">
+            <div class="main" :style="tableData && tableData.length ? 'height: calc(100% - 50px);' : 'height: calc(100% - 46px);'">
+                <el-table
+                    ref="multipleTable"
+                    :data="tableData"
+                    v-loading="loading"
+                    stripe
+                    height="100%"
+                    :header-cell-style="headerStyle"
+                    @expand-change="changeMessageState"
+                >
+                    <el-table-column type="selection" width="55"></el-table-column>
+                    <el-table-column width="25">
+                        <template slot-scope="scope">
+                            <el-badge class="item" type="warning" is-dot v-if="!scope.row.read"></el-badge>
+                        </template>
+                    </el-table-column>
+                    <el-table-column prop="title" label="标题内容" min-width="300" show-overflow-tooltip></el-table-column>
+                    <el-table-column label="项目">
+                        <template slot-scope="scope">
+                            {{ scope.row.project[0].localName }}
+                        </template>
+                    </el-table-column>
+                    <el-table-column label="模块" width="200">
+                        <template slot-scope="scope">
+                            {{ moduleMap[scope.row.module] ? moduleMap[scope.row.module] : scope.row.module }}
+                        </template>
+                    </el-table-column>
+                    <el-table-column prop="createTime" label="消息时间"> </el-table-column>
+                    <el-table-column label="消息类型">
+                        <template slot-scope="scope">
+                            <div>
+                                <i
+                                    :class="iconClassMap[scope.row.Type] ? iconClassMap[scope.row.Type] : 'msg-icon el-icon-warning warning-color'"
+                                    style="font-size: 14px"
+                                ></i>
+                                <span>{{ typeMap[scope.row.type] ? typeMap[scope.row.type] : scope.row.type }}</span>
+                            </div>
+                        </template>
+                    </el-table-column>
+                    <el-table-column type="expand">
+                        <template slot-scope="scope">
+                            <p>{{ scope.row.content.message }}</p>
+                            <el-link
+                                v-for="(btn, index) in scope.row.content.buttonList"
+                                style="float: left; font-size: 12px; color: white"
+                                :key="index"
+                                :href="`/image-service/common/file_get?systemId=revit&key=${btn.url}`"
+                                :download="btn.fileName ? btn.fileName : ''"
+                            >
+                                {{ btn.name }}
+                            </el-link>
+                        </template>
+                    </el-table-column>
+                    <template slot="empty">
+                        <div style="height: 60%; transform: translateY(50%)">
+                            <i class="icon-wushuju iconfont"></i>
+                            暂无数据
+                        </div>
+                    </template>
+                </el-table>
             </div>
-          </template>
-        </el-table>
-      </div>
-      <el-pagination class="right" v-show="tableData && tableData.length" @size-change="handleSizeChange"
-                     @current-change="handleCurrentChange"
-                     :current-page="page.pageNumber" :page-sizes="page.pageSizes" :page-size="page.pageSize"
-                     layout="total, sizes, prev, pager, next, jumper"
-                     :total="page.total">
-      </el-pagination>
+            <el-pagination
+                class="right"
+                v-show="tableData && tableData.length"
+                @size-change="handleSizeChange"
+                @current-change="handleCurrentChange"
+                :current-page="page.pageNumber"
+                :page-sizes="page.pageSizes"
+                :page-size="page.pageSize"
+                layout="total, sizes, prev, pager, next, jumper"
+                :total="page.total"
+            >
+            </el-pagination>
+        </div>
     </div>
-  </div>
 </template>
 
-<script>
-import { mapGetters } from 'vuex'
-import { messgeQuery, messgeUpdate } from '@/api/msgsever'
-import Bus from '@/utils/bus.js'
-
-export default {
-  data() {
-    return {
-      tableData: [],
-      loading: false,
-      page: {
+<script lang="ts">
+import { messgeQuery, messgeUpdate } from "@/api/messagecenter";
+import { Component, Vue } from "vue-property-decorator";
+import Bus from "@/utils/bus.js";
+import { UserModule } from "@/store/modules/user";
+
+@Component({
+    name: "MsgAllDetails",
+    components: {},
+})
+export default class extends Vue {
+    // 消息数据
+    private tableData: any[] = [];
+    // loading标识
+    private loading = false;
+    // 分页配置
+    private page = {
         pageSize: 50,
         pageSizes: [10, 20, 50, 100],
         pageNumber: 1,
-        total: 0
-      },
-      headerStyle: {// 列表样式
-        backgroundColor: '#e1e4e5',
-        color: '#2b2b2b',
-        lineHeight: '30px'
-      },
-      moduleMap: {//消息模块映射
-        "Model": "模型文件管理"
-      },
-      iconClassMap: { //消息类型图标映射
-        "Success": "msg-icon el-icon-success success-color",
-        "Error": "msg-icon el-icon-error error-color",
-        "Warning": "msg-icon el-icon-warning warning-color",
-        "Info": "msg-icon el-icon-info info-color",
-      },
-      typeMap: { //消息类型文字映射
-        "Success": "成功",
-        "Error": "错误",
-        "Warning": "警告",
-        "Info": "提醒",
-      }
+        total: 0,
+    };
+    // 列表样式
+    private headerStyle = {
+        backgroundColor: "#e1e4e5",
+        color: "#2b2b2b",
+        lineHeight: "30px",
+    };
+    // 消息模块映射
+    private moduleMap = {
+        Model: "模型文件管理",
+    };
+    // 消息类型图标映射
+    private iconClassMap = {
+        Success: "msg-icon el-icon-success success-color",
+        Error: "msg-icon el-icon-error error-color",
+        Warning: "msg-icon el-icon-warning warning-color",
+        Info: "msg-icon el-icon-info info-color",
+    };
+    // 消息类型文字映射
+    private typeMap = {
+        Success: "成功",
+        Error: "错误",
+        Warning: "警告",
+        Info: "提醒",
+    };
+
+    get userId(): string {
+        return UserModule.userId;
     }
-  },
-  computed: {
-    ...mapGetters('layout', ['userId'])
-  },
-  mounted() {
-    this.getTableData();
-  },
-  methods: {
-    // 获取列表数据
-    getTableData() {
-      let params = {
-        cascade: [
-          {
-            name: "project"
-          }
-        ],
-        filters: `userId='${this.userId}';type!='refresh'`,
-        orders: "createTime desc, id asc",
-        pageNumber: this.page.pageNumber,
-        pageSize: this.page.pageSize
-      }
-      this.loading = true;
-      messgeQuery(params, res => {
-        this.tableData = res.content;
-        this.page.total = res.total;
-        this.loading = false;
-      })
-    },
-    // 切换每页显示数量
-    handleSizeChange(val) {
-      this.page.pageSize = val;
-      this.getTableData();
-    },
-    // 切换页码
-    handleCurrentChange(val) {
-      this.page.pageNumber = val;
-      this.getTableData();
-    },
-    // 更新消息状态:已读、未读
-    changeMessageState(val) {
-      if (!val.Read) {
-        val.Read = true;
+
+    mounted() {
+        this.getTableData();
+    }
+
+    /**
+     * 获取列表数据
+     */
+    private async getTableData() {
         let params = {
-          content: [{
-            id: val.id,
-            read: true
-          }]
+            cascade: [
+                {
+                    name: "project",
+                },
+            ],
+            filters: `userId='${this.userId}';type!='refresh'`,
+            orders: "createTime desc, id asc",
+            pageNumber: this.page.pageNumber,
+            pageSize: this.page.pageSize,
+        };
+        this.loading = true;
+        const res = await messgeQuery(params);
+        if (res.result === "success") {
+            this.tableData = res.content;
+            this.page.total = res.total;
+            this.loading = false;
         }
-        messgeUpdate(params, res => {
-          Bus.$emit('getUnreadCountUpdate')
-        });// 展开更新为已读状态,未读数量同步变更
-      }
     }
-  }
-};
+
+    /**
+     * 切换每页显示数量
+     */
+    private handleSizeChange(val: number) {
+        this.page.pageSize = val;
+        this.getTableData();
+    }
+
+    /**
+     * 切换页码
+     */
+    private handleCurrentChange(val: number) {
+        this.page.pageNumber = val;
+        this.getTableData();
+    }
+
+    /**
+     * 更新消息状态:已读、未读
+     */
+    private async changeMessageState(val: any) {
+        if (!val.Read) {
+            val.Read = true;
+            const params = {
+                content: [
+                    {
+                        id: val.id,
+                        read: true,
+                    },
+                ],
+            };
+            const res = await messgeUpdate(params);
+            // 展开更新为已读状态,未读数量同步变更
+            if (res.result === "success") Bus.$emit("getUnreadCountUpdate");
+        }
+    }
+}
 </script>
 
-<style scoped lang='less'>
+<style scoped lang='scss'>
 .box {
-  .condition {
-    padding: 10px;
-    display: flex;
-    height: 100%;
-    flex-direction: column;
-    border: 1px solid #dfe6ec;
-    background: #fff;
-
-    .main {
-      margin-top: 10px;
-
-      a {
-        text-decoration: none;
-      }
+    .condition {
+        padding: 10px;
+        display: flex;
+        height: 100%;
+        flex-direction: column;
+        border: 1px solid #dfe6ec;
+        background: #fff;
+
+        .main {
+            margin-top: 10px;
+
+            a {
+                text-decoration: none;
+            }
+        }
     }
-  }
 }
 
 .el-badge.item {
-  height: 10px;
+    height: 10px;
 }
 
 .el-table__expanded-cell {
-  p {
-    margin-left: 40px;
-  }
+    p {
+        margin-left: 40px;
+    }
 }
 
 .el-link {
-  margin: 20px 0 0 40px;
-  background: #409eff;
-  border-radius: 3px;
-  padding: 3px 15px;
+    margin: 20px 0 0 40px;
+    background: #409eff;
+    border-radius: 3px;
+    padding: 3px 15px;
 }
 
 .demo-table-expand {
-  font-size: 0;
+    font-size: 0;
 }
 
 .demo-table-expand label {
-  width: 90px;
-  color: #99a9bf;
+    width: 90px;
+    color: #99a9bf;
 }
 
 .demo-table-expand .el-form-item {
-  margin-right: 0;
-  margin-bottom: 0;
-  margin-left: 120px;
-  width: 100%;
+    margin-right: 0;
+    margin-bottom: 0;
+    margin-left: 120px;
+    width: 100%;
 }
 
 .success-color {
-  color: #67c23a;
+    color: #67c23a;
 }
 
 .error-color {
-  color: #f56c6c;
+    color: #f56c6c;
 }
 
 .warning-color {
-  color: #e6a23c;
+    color: #e6a23c;
 }
 
 .info-color {
-  color: #909399;
+    color: #909399;
 }
 </style>