|
|
@@ -98,15 +98,15 @@ const notify = reactive({
|
|
|
|
|
|
// 接收风控通知
|
|
|
eventBus.$on('RiskToWebNtf', (msg, type) => {
|
|
|
- const res = msg as { title: string, content: string }
|
|
|
+ const res = msg as { title: string, content2: string }
|
|
|
if (type === 1) {
|
|
|
notify.title = res.title
|
|
|
- notify.content = res.content
|
|
|
+ notify.content = res.content2
|
|
|
notify.show = true
|
|
|
} else {
|
|
|
dialog({
|
|
|
title: res.title,
|
|
|
- message: res.content,
|
|
|
+ message: res.content2,
|
|
|
confirmButtonText: t('operation.confirm')
|
|
|
})
|
|
|
}
|