+
+
+
+
+
{{ $t('goHandle') }}
+
@@ -43,12 +49,24 @@ export default {
}).finally(() => {
this.loading = false
})
+ },
+ goHandle () {
+ if (this.model.openType === 'url') {
+ this.$router.push({ path: this.model.openPage })
+ // 如果是跳转其他页面请求详情(作用是为了标记已读)
+ // getMsgDetail({ id: this.model.id })
+ } else if (this.model.openType === 'page') {
+ this.$openPageNewSheet({ path: this.model.openPage })
+ // 如果是跳转其他页面请求详情(作用是为了标记已读)
+ // getMsgDetail({ id: record.id })
+ }
}
}
}