|
@@ -38,7 +38,7 @@
|
|
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M16.7344 15.4904L15.2941 12.9564V7.84847C15.2941 5.89142 13.8231 3.77337 11.6786 2.99732C11.5741 1.96012 10.8811 1.20374 9.97287 1.20374C9.06595 1.20374 8.37036 1.96014 8.26717 2.99732C6.12392 3.77337 4.65292 5.8914 4.65292 7.84847V12.9564L3.14258 15.6146C3.04183 15.7903 3.04429 16.0054 3.14504 16.1799C3.24581 16.3544 3.43263 16.4601 3.63415 16.4601H7.22871C7.49293 17.7357 8.62233 18.6967 9.97289 18.6967C11.3247 18.6967 12.4541 17.7357 12.7171 16.4601H16.3116C16.3215 16.4601 16.3288 16.4601 16.3374 16.4601C16.6508 16.4601 16.904 16.2082 16.904 15.8948C16.904 15.7362 16.8401 15.5925 16.7344 15.4904ZM9.97287 2.33803C10.1769 2.33803 10.3415 2.49286 10.4472 2.7239C10.2899 2.70792 10.1375 2.67106 9.97287 2.67106C9.8082 2.67106 9.65583 2.70792 9.49851 2.7239C9.60422 2.49284 9.76889 2.33803 9.97287 2.33803ZM9.97287 17.5636C9.25396 17.5636 8.65303 17.1016 8.41951 16.4601H11.5262C11.2927 17.1015 10.693 17.5636 9.97287 17.5636ZM4.60745 15.3282L5.71102 13.3853C5.76015 13.3017 5.78719 13.2034 5.78719 13.1051V7.84847C5.78719 5.93934 7.57648 3.80413 9.97287 3.80413C12.3692 3.80413 14.161 5.93934 14.161 7.84847V13.1051C14.161 13.2034 14.1868 13.3017 14.2347 13.3853L15.3395 15.3282H4.60745Z" fill="currentColor"/>
|
|
|
</svg>
|
|
|
- <div class="unread" v-if="UnreadTotal">{{UnreadTotal>99?'99+':UnreadTotal}}</div>
|
|
|
+ <div class="unread" v-if="allUnreadTotal">{{allUnreadTotal>99?'99+':allUnreadTotal}}</div>
|
|
|
</span>
|
|
|
</el-popover>
|
|
|
|
|
@@ -129,6 +129,8 @@ export default {
|
|
|
msgList:[],
|
|
|
UnreadTotal:0,
|
|
|
|
|
|
+ allUnreadTotal: 0,
|
|
|
+
|
|
|
//详情弹窗
|
|
|
isOpenAuthDia: false,
|
|
|
tableData: [],
|
|
@@ -204,13 +206,14 @@ export default {
|
|
|
const {ApproveState,ReportApproveId,Id,DataPermissionMessageId} = msg
|
|
|
|
|
|
const res = this.activeName === 'first'
|
|
|
- ? approveInterence.readApproveMsg({
|
|
|
+ ? await approveInterence.readApproveMsg({
|
|
|
MessageId:Id
|
|
|
})
|
|
|
- : operateAuthInterface.redMessage({ MessageId: DataPermissionMessageId })
|
|
|
+ : await operateAuthInterface.redMessage({ MessageId: DataPermissionMessageId })
|
|
|
|
|
|
if(res.Ret!==200) return
|
|
|
this.getMsgList()
|
|
|
+ this.getUnreadNum()
|
|
|
|
|
|
if(this.activeName === 'first' ) {
|
|
|
const type = ApproveState===1?'approve':ApproveState===4?'detail':'myself'
|
|
@@ -229,13 +232,24 @@ export default {
|
|
|
CurrentIndex:1,
|
|
|
PageSize:1000
|
|
|
})
|
|
|
- : await operateAuthInterface.getNoticeList()
|
|
|
+ : await operateAuthInterface.getNoticeList({
|
|
|
+ CurrentIndex:1,
|
|
|
+ PageSize:1000
|
|
|
+ })
|
|
|
|
|
|
if(res.Ret!==200) return
|
|
|
this.msgList = res.Data.List||[]
|
|
|
this.UnreadTotal = res.Data.UnreadTotal||0
|
|
|
},
|
|
|
|
|
|
+ async getUnreadNum() {
|
|
|
+ const res = await operateAuthInterface.getAllUnread()
|
|
|
+
|
|
|
+ if(res.Ret !== 200) return
|
|
|
+
|
|
|
+ this.allUnreadTotal = res.Data
|
|
|
+ },
|
|
|
+
|
|
|
openAuthDetail(item) {
|
|
|
this.detailInfo.MessageId = item.DataPermissionMessageId;
|
|
|
this.detailInfo.isAuthSet = [3,4].includes(item.OpType);
|
|
@@ -281,6 +295,10 @@ export default {
|
|
|
this.getAuthMsgDetail();
|
|
|
}
|
|
|
},300),
|
|
|
+ },
|
|
|
+
|
|
|
+ mounted() {
|
|
|
+ this.getUnreadNum()
|
|
|
}
|
|
|
};
|
|
|
</script>
|