|
@@ -33,7 +33,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<i
|
|
|
- :class="iconClassMap[scope.row.Type] ? iconClassMap[scope.row.Type] : 'msg-icon el-icon-warning warning-color'"
|
|
|
+ :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>
|
|
@@ -81,7 +81,7 @@
|
|
|
<script lang="ts">
|
|
|
import { messgeQuery, messgeUpdate } from "@/api/messagecenter";
|
|
|
import { Component, Vue } from "vue-property-decorator";
|
|
|
-import Bus from "@/utils/bus.js";
|
|
|
+import Bus from "@/utils/bus.ts";
|
|
|
import { UserModule } from "@/store/modules/user";
|
|
|
|
|
|
@Component({
|
|
@@ -143,7 +143,7 @@ export default class extends Vue {
|
|
|
name: "project",
|
|
|
},
|
|
|
],
|
|
|
- filters: `userId='${this.userId}';type!='refresh'`,
|
|
|
+ filters: `userId='${this.userId}';type!='Refresh'`,
|
|
|
orders: "createTime desc, id asc",
|
|
|
pageNumber: this.page.pageNumber,
|
|
|
pageSize: this.page.pageSize,
|
|
@@ -197,6 +197,7 @@ export default class extends Vue {
|
|
|
|
|
|
<style scoped lang='scss'>
|
|
|
.box {
|
|
|
+ height: 100%;
|
|
|
.condition {
|
|
|
padding: 10px;
|
|
|
display: flex;
|
|
@@ -212,6 +213,11 @@ export default class extends Vue {
|
|
|
text-decoration: none;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ .right {
|
|
|
+ text-align: right;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|