Compare commits

...

3 Commits

  1. 1
      src/permission.js
  2. 10
      src/router/modules/remaining.ts
  3. 4
      src/views/Clue/Order/Comp/Reback.vue
  4. 8
      src/views/Profile/NotifyMessage.vue
  5. 65
      src/views/Profile/NotifyMessageDetail.vue

@ -17,6 +17,7 @@ const { loadStart, loadDone } = usePageLoading()
const whiteList = [ const whiteList = [
'/login', '/login',
'/mp-login', '/mp-login',
'/nm-detail',
'/social-login', '/social-login',
'/auth-redirect', '/auth-redirect',
'/bind', '/bind',

@ -181,6 +181,16 @@ const remainingRouter: AppRouteRecordRaw[] = [
noTagsView: true noTagsView: true
} }
}, },
{
path: '/nm-detail',
component: () => import('@/views/Profile/NotifyMessageDetail.vue'),
name: 'NMDetail',
meta: {
hidden: true,
title: '通知详情',
noTagsView: true
}
},
{ {
path: '/403', path: '/403',
component: () => import('@/views/Error/403.vue'), component: () => import('@/views/Error/403.vue'),

@ -312,7 +312,7 @@ import DialogBatchAudit from './DialogBatchAudit.vue'
import { removeNullField } from '@/utils' import { removeNullField } from '@/utils'
import { useAppStore } from '@/store/modules/app' import { useAppStore } from '@/store/modules/app'
import { dateFormatter } from '@/utils/formatTime' import { dateFormatter, formatDate } from '@/utils/formatTime'
const userStore = useUserStore() const userStore = useUserStore()
const message = useMessage() // const message = useMessage() //
@ -454,7 +454,7 @@ async function handleUpdate(row) {
companyProfit: row.companyProfit, companyProfit: row.companyProfit,
personProfit: row.personProfit, personProfit: row.personProfit,
isPayoff: row.isPayoffValue, isPayoff: row.isPayoffValue,
applyTime: row.applyTime applyTime: formatDate(row.applyTime)
}) })
.then(() => { .then(() => {
message.success('修改成功') message.success('修改成功')

@ -80,6 +80,8 @@ import * as NotifyMessageApi from '@/api/system/notify/message'
import { useUserStore } from '@/store/modules/user' import { useUserStore } from '@/store/modules/user'
import { getGeneralSysDictData } from '@/api/system/dict/dict.data' import { getGeneralSysDictData } from '@/api/system/dict/dict.data'
const router = useRouter()
const userStore = useUserStore() const userStore = useUserStore()
const message = useMessage() // const message = useMessage() //
@ -121,6 +123,12 @@ function handleDetail(row: any) {
if (!row.readStatus) { if (!row.readStatus) {
handleReadOne(row.id) handleReadOne(row.id)
} }
const url = router.resolve({
path: '/nm-detail',
query: { id: row.id }
})
window.open(url.href, '_blank')
} }
const tableRef = ref() // Ref const tableRef = ref() // Ref

@ -0,0 +1,65 @@
<template>
<div class="p-20px">
<ContentWrap style="max-width: 1000px; margin: 0 auto">
<div class="text-center">
<div class="mb-10px" style="font-size: 24px; letter-spacing: 2px">
{{ info.title }}
</div>
<el-text>
{{ formatDate(info.createTime, 'YYYY-MM-DD hh:mm:ss') }}
</el-text>
</div>
<el-divider direction="horizontal" />
<div v-dompurify-html="info.content"></div>
</ContentWrap>
</div>
</template>
<script setup name="NMDetail">
import { getNotifyMessageDetail } from '@/api/system/notify/message'
import { formatDate } from '@/utils/formatTime'
const route = useRoute()
const info = ref({})
function init() {
getNotifyMessageDetail(route.query.id).then((data) => {
info.value = data
})
}
onMounted(() => {
init()
})
</script>
<style lang="scss" scoped>
:deep(p) {
font-size: 14px;
}
:deep(table) {
margin-top: 10px;
border-collapse: separate;
text-indent: initial;
border-spacing: 1px;
text-align: left;
border-width: 1px;
box-sizing: border-box;
}
:deep(th) {
font-size: 14px;
text-align: left;
border-width: 1px;
box-sizing: border-box;
}
:deep(td) {
font-size: 12px;
text-align: left;
border-width: 1px;
box-sizing: border-box;
}
:deep(.el-card__body) {
padding: 20px 10px;
}
</style>
Loading…
Cancel
Save