commit
969c83a8dc
64
src/views/system/notify/message/detail.vue
Normal file
64
src/views/system/notify/message/detail.vue
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
<template>
|
||||||
|
<Dialog title="详情" v-model="modelVisible" :scroll="true" :max-height="500" width="800">
|
||||||
|
<el-descriptions border :column="1">
|
||||||
|
<el-descriptions-item label="编号" min-width="120">
|
||||||
|
{{ detailData.id }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="用户类型">
|
||||||
|
<dict-tag :type="DICT_TYPE.USER_TYPE" :value="detailData.userType" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="用户编号">
|
||||||
|
{{ detailData.userId }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="模版编号">
|
||||||
|
{{ detailData.templateId }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="模板编码">
|
||||||
|
{{ detailData.templateCode }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="发送人名称">
|
||||||
|
{{ detailData.templateNickname }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="模版内容">
|
||||||
|
{{ detailData.templateContent }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="模版参数">
|
||||||
|
{{ detailData.templateParams }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="模版类型">
|
||||||
|
<dict-tag :type="DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE" :value="detailData.templateType" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="是否已读">
|
||||||
|
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="detailData.readStatus" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="阅读时间">
|
||||||
|
{{ formatDate(detailData.readTime, 'YYYY-MM-DD HH:mm:ss') }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="创建时间">
|
||||||
|
{{ formatDate(detailData.createTime, 'YYYY-MM-DD HH:mm:ss') }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</Dialog>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { DICT_TYPE } from '@/utils/dict'
|
||||||
|
import { formatDate } from '@/utils/formatTime'
|
||||||
|
import * as NotifyMessageApi from '@/api/system/notify/message'
|
||||||
|
|
||||||
|
const modelVisible = ref(false) // 弹窗的是否展示
|
||||||
|
const detailLoading = ref(false) // 表单的加载中
|
||||||
|
const detailData = ref() // 详情数据
|
||||||
|
|
||||||
|
/** 打开弹窗 */
|
||||||
|
const openModal = async (data: NotifyMessageApi.NotifyMessageVO) => {
|
||||||
|
modelVisible.value = true
|
||||||
|
// 设置数据
|
||||||
|
detailLoading.value = true
|
||||||
|
try {
|
||||||
|
detailData.value = data
|
||||||
|
} finally {
|
||||||
|
detailLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defineExpose({ openModal }) // 提供 openModal 方法,用于打开弹窗
|
||||||
|
</script>
|
@ -1,67 +1,217 @@
|
|||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<content-wrap>
|
||||||
|
<!-- 搜索工作栏 -->
|
||||||
|
<el-form
|
||||||
|
class="-mb-15px"
|
||||||
|
:model="queryParams"
|
||||||
|
ref="queryFormRef"
|
||||||
|
:inline="true"
|
||||||
|
label-width="68px"
|
||||||
|
>
|
||||||
|
<el-form-item label="用户编号" prop="userId">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.userId"
|
||||||
|
placeholder="请输入用户编号"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
|
class="!w-240px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="用户类型" prop="userType">
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.userType"
|
||||||
|
placeholder="请选择用户类型"
|
||||||
|
clearable
|
||||||
|
class="!w-240px"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in getDictOptions(DICT_TYPE.USER_TYPE)"
|
||||||
|
:key="parseInt(dict.value)"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="parseInt(dict.value)"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模板编码" prop="templateCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.templateCode"
|
||||||
|
placeholder="请输入模板编码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
|
class="!w-240px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模版类型" prop="templateType">
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.templateType"
|
||||||
|
placeholder="请选择模版类型"
|
||||||
|
clearable
|
||||||
|
class="!w-240px"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in getDictOptions(DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE)"
|
||||||
|
:key="parseInt(dict.value)"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="parseInt(dict.value)"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="创建时间" prop="createTime">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="queryParams.createTime"
|
||||||
|
value-format="YYYY-MM-DD HH:mm:ss"
|
||||||
|
type="daterange"
|
||||||
|
start-placeholder="开始日期"
|
||||||
|
end-placeholder="结束日期"
|
||||||
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||||
|
class="!w-240px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||||||
|
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</content-wrap>
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<XTable @register="registerTable">
|
<content-wrap>
|
||||||
<template #actionbtns_default="{ row }">
|
<el-table ref="tableRef" v-loading="loading" :data="list" :height="tableHeight">
|
||||||
<!-- 操作:详情 -->
|
<el-table-column label="编号" align="center" prop="id" />
|
||||||
<XTextButton
|
<el-table-column label="用户类型" align="center" prop="userType">
|
||||||
preIcon="ep:view"
|
<template #default="scope">
|
||||||
:title="t('action.detail')"
|
<dict-tag :type="DICT_TYPE.USER_TYPE" :value="scope.row.userType" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="用户编号" align="center" prop="userId" width="80" />
|
||||||
|
<el-table-column label="模版编号" align="center" prop="templateId" width="80" />
|
||||||
|
<el-table-column label="模板编码" align="center" prop="templateCode" width="80" />
|
||||||
|
<el-table-column label="发送人名称" align="center" prop="templateNickname" width="180" />
|
||||||
|
<el-table-column
|
||||||
|
label="模版内容"
|
||||||
|
align="center"
|
||||||
|
prop="templateContent"
|
||||||
|
width="200"
|
||||||
|
show-overflow-tooltip
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="模版参数"
|
||||||
|
align="center"
|
||||||
|
prop="templateParams"
|
||||||
|
width="180"
|
||||||
|
show-overflow-tooltip
|
||||||
|
>
|
||||||
|
<template #default="scope"> {{ scope.row.templateParams }}</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="模版类型" align="center" prop="templateType" width="120">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE" :value="scope.row.templateType" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="是否已读" align="center" prop="readStatus" width="100">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.readStatus" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="阅读时间"
|
||||||
|
align="center"
|
||||||
|
prop="readTime"
|
||||||
|
width="180"
|
||||||
|
:formatter="dateFormatter"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="创建时间"
|
||||||
|
align="center"
|
||||||
|
prop="createTime"
|
||||||
|
width="180"
|
||||||
|
:formatter="dateFormatter"
|
||||||
|
/>
|
||||||
|
<el-table-column label="操作" align="center">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button
|
||||||
|
link
|
||||||
|
type="primary"
|
||||||
|
@click="openModal(scope.row)"
|
||||||
v-hasPermi="['system:notify-message:query']"
|
v-hasPermi="['system:notify-message:query']"
|
||||||
@click="handleDetail(row.id)"
|
>
|
||||||
/>
|
详情
|
||||||
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</XTable>
|
</el-table-column>
|
||||||
</ContentWrap>
|
</el-table>
|
||||||
<!-- 弹窗 -->
|
<!-- 分页 -->
|
||||||
<XModal id="messageModel" :loading="modelLoading" v-model="modelVisible" :title="modelTitle">
|
<Pagination
|
||||||
<!-- 表单:详情 -->
|
:total="total"
|
||||||
<Descriptions
|
v-model:page="queryParams.pageNo"
|
||||||
v-if="actionType === 'detail'"
|
v-model:limit="queryParams.pageSize"
|
||||||
:schema="allSchemas.detailSchema"
|
@pagination="getList"
|
||||||
:data="detailData"
|
|
||||||
/>
|
/>
|
||||||
<template #footer>
|
</content-wrap>
|
||||||
<!-- 按钮:关闭 -->
|
|
||||||
<XButton :loading="actionLoading" :title="t('dialog.close')" @click="modelVisible = false" />
|
<!-- 表单弹窗:详情 -->
|
||||||
</template>
|
<notify-message-detail ref="modalRef" />
|
||||||
</XModal>
|
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts" name="NotifyMessage">
|
<script setup lang="ts" name="NotifyMessage">
|
||||||
// 业务相关的 import
|
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
|
||||||
import { allSchemas } from './message.data'
|
import { dateFormatter } from '@/utils/formatTime'
|
||||||
import * as NotifyMessageApi from '@/api/system/notify/message'
|
import * as NotifyMessageApi from '@/api/system/notify/message'
|
||||||
|
import NotifyMessageDetail from './detail.vue'
|
||||||
|
|
||||||
const { t } = useI18n() // 国际化
|
const loading = ref(true) // 列表的加载中
|
||||||
|
const total = ref(0) // 列表的总页数
|
||||||
// 列表相关的变量
|
const list = ref([]) // 列表的数据
|
||||||
const [registerTable] = useXTable({
|
const queryParams = reactive({
|
||||||
allSchemas: allSchemas,
|
pageNo: 1,
|
||||||
topActionSlots: false,
|
pageSize: 10,
|
||||||
getListApi: NotifyMessageApi.getNotifyMessagePageApi
|
userType: undefined,
|
||||||
|
userId: undefined,
|
||||||
|
templateCode: undefined,
|
||||||
|
templateType: undefined,
|
||||||
|
createTime: []
|
||||||
})
|
})
|
||||||
|
const queryFormRef = ref() // 搜索的表单
|
||||||
|
const tableRef = ref()
|
||||||
|
const tableHeight = ref() // table高度
|
||||||
|
|
||||||
// 弹窗相关的变量
|
/** 查询参数列表 */
|
||||||
const modelVisible = ref(false) // 是否显示弹出层
|
const getList = async () => {
|
||||||
const modelTitle = ref('edit') // 弹出层标题
|
loading.value = true
|
||||||
const modelLoading = ref(false) // 弹出层loading
|
try {
|
||||||
const actionType = ref('') // 操作按钮的类型
|
const data = await NotifyMessageApi.getNotifyMessagePageApi(queryParams)
|
||||||
const actionLoading = ref(false) // 按钮 Loading
|
list.value = data.list
|
||||||
const detailData = ref() // 详情 Ref
|
total.value = data.total
|
||||||
|
} finally {
|
||||||
// 设置标题
|
loading.value = false
|
||||||
const setDialogTile = (type: string) => {
|
}
|
||||||
modelLoading.value = true
|
|
||||||
modelTitle.value = t('action.' + type)
|
|
||||||
actionType.value = type
|
|
||||||
modelVisible.value = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 详情操作
|
/** 搜索按钮操作 */
|
||||||
const handleDetail = async (rowId: number) => {
|
const handleQuery = () => {
|
||||||
setDialogTile('detail')
|
queryParams.pageNo = 1
|
||||||
const res = await NotifyMessageApi.getNotifyMessageApi(rowId)
|
getList()
|
||||||
detailData.value = res
|
|
||||||
modelLoading.value = false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value.resetFields()
|
||||||
|
handleQuery()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 详情操作 */
|
||||||
|
const modalRef = ref()
|
||||||
|
const openModal = (data: NotifyMessageApi.NotifyMessageVO) => {
|
||||||
|
modalRef.value.openModal(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 初始化 **/
|
||||||
|
onMounted(() => {
|
||||||
|
getList()
|
||||||
|
// TODO 感觉表格自适应高度体验很好的,目前简单实现 需要进一步优化,如根据筛选条件展开或收缩改变盒子高度时
|
||||||
|
tableHeight.value = window.innerHeight - tableRef.value.$el.offsetTop - 85 - 155
|
||||||
|
// 监听浏览器高度变化
|
||||||
|
window.onresize = () => {
|
||||||
|
tableHeight.value = window.innerHeight - tableRef.value.$el.offsetTop - 85 - 155
|
||||||
|
}
|
||||||
|
})
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,101 +0,0 @@
|
|||||||
import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
|
|
||||||
|
|
||||||
// CrudSchema
|
|
||||||
const crudSchemas = reactive<VxeCrudSchema>({
|
|
||||||
primaryKey: 'id', // 默认的主键ID
|
|
||||||
primaryTitle: '编号', // 默认显示的值
|
|
||||||
primaryType: 'id', // 默认为seq,序号模式
|
|
||||||
action: true,
|
|
||||||
actionWidth: '200', // 3个按钮默认200,如有删减对应增减即可
|
|
||||||
columns: [
|
|
||||||
{
|
|
||||||
title: '用户编号',
|
|
||||||
field: 'userId',
|
|
||||||
isSearch: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '用户类型',
|
|
||||||
field: 'userType',
|
|
||||||
dictType: DICT_TYPE.USER_TYPE,
|
|
||||||
dictClass: 'string',
|
|
||||||
isSearch: true,
|
|
||||||
table: {
|
|
||||||
width: 80
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '模版编号',
|
|
||||||
field: 'templateId'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '模板编码',
|
|
||||||
field: 'templateCode',
|
|
||||||
isSearch: true,
|
|
||||||
table: {
|
|
||||||
width: 80
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '发送人名称',
|
|
||||||
field: 'templateNickname',
|
|
||||||
table: {
|
|
||||||
width: 120
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '模版内容',
|
|
||||||
field: 'templateContent',
|
|
||||||
table: {
|
|
||||||
width: 200
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '模版类型',
|
|
||||||
field: 'templateType',
|
|
||||||
dictType: DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE,
|
|
||||||
dictClass: 'number',
|
|
||||||
isSearch: true,
|
|
||||||
table: {
|
|
||||||
width: 80
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '模版参数',
|
|
||||||
field: 'templateParams',
|
|
||||||
isTable: false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否已读',
|
|
||||||
field: 'readStatus',
|
|
||||||
dictType: DICT_TYPE.INFRA_BOOLEAN_STRING,
|
|
||||||
dictClass: 'boolean',
|
|
||||||
table: {
|
|
||||||
width: 80
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '阅读时间',
|
|
||||||
field: 'readTime',
|
|
||||||
formatter: 'formatDate',
|
|
||||||
table: {
|
|
||||||
width: 180
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '创建时间',
|
|
||||||
field: 'createTime',
|
|
||||||
isForm: false,
|
|
||||||
formatter: 'formatDate',
|
|
||||||
search: {
|
|
||||||
show: true,
|
|
||||||
itemRender: {
|
|
||||||
name: 'XDataTimePicker'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
table: {
|
|
||||||
width: 180
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|
|
46
src/views/system/notify/my/detail.vue
Normal file
46
src/views/system/notify/my/detail.vue
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<template>
|
||||||
|
<Dialog title="消息详情" v-model="modelVisible" :scroll="true" :max-height="500" width="800">
|
||||||
|
<el-descriptions border :column="1">
|
||||||
|
<el-descriptions-item label="发送人">
|
||||||
|
{{ detailData.templateNickname }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="发送时间">
|
||||||
|
{{ formatDate(detailData.createTime, 'YYYY-MM-DD HH:mm:ss') }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="消息类型">
|
||||||
|
<dict-tag :type="DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE" :value="detailData.templateType" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="是否已读">
|
||||||
|
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="detailData.readStatus" />
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="阅读时间" v-if="detailData.readStatus">
|
||||||
|
{{ formatDate(detailData.readTime, 'YYYY-MM-DD HH:mm:ss') }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="内容">
|
||||||
|
{{ detailData.templateContent }}
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</Dialog>
|
||||||
|
</template>
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { DICT_TYPE } from '@/utils/dict'
|
||||||
|
import { formatDate } from '@/utils/formatTime'
|
||||||
|
import * as NotifyMessageApi from '@/api/system/notify/message'
|
||||||
|
|
||||||
|
const modelVisible = ref(false) // 弹窗的是否展示
|
||||||
|
const detailLoading = ref(false) // 表单的加载中
|
||||||
|
const detailData = ref() // 详情数据
|
||||||
|
|
||||||
|
/** 打开弹窗 */
|
||||||
|
const openModal = async (data: NotifyMessageApi.NotifyMessageVO) => {
|
||||||
|
modelVisible.value = true
|
||||||
|
// 设置数据
|
||||||
|
detailLoading.value = true
|
||||||
|
try {
|
||||||
|
detailData.value = data
|
||||||
|
} finally {
|
||||||
|
detailLoading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defineExpose({ openModal }) // 提供 openModal 方法,用于打开弹窗
|
||||||
|
</script>
|
@ -1,58 +1,250 @@
|
|||||||
<template>
|
<template>
|
||||||
<ContentWrap>
|
<content-wrap>
|
||||||
<!-- 列表 -->
|
<!-- 搜索工作栏 -->
|
||||||
<XTable @register="registerTable">
|
<el-form
|
||||||
<template #toolbar_buttons>
|
class="-mb-15px"
|
||||||
<!-- 操作:标记已读 -->
|
:model="queryParams"
|
||||||
<XButton type="primary" preIcon="ep:zoom-in" title="标记已读" @click="handleUpdateList" />
|
ref="queryFormRef"
|
||||||
<!-- 操作:全部已读 -->
|
:inline="true"
|
||||||
<XButton type="primary" preIcon="ep:zoom-in" title="全部已读" @click="handleUpdateAll" />
|
label-width="68px"
|
||||||
</template>
|
>
|
||||||
<template #actionbtns_default="{ row }">
|
<el-form-item label="是否已读" prop="readStatus">
|
||||||
<!-- 操作:已读 -->
|
<el-select
|
||||||
<XTextButton
|
v-model="queryParams.readStatus"
|
||||||
preIcon="ep:view"
|
placeholder="请选择状态"
|
||||||
title="已读"
|
clearable
|
||||||
v-hasPermi="['system:notify-message:query']"
|
class="!w-240px"
|
||||||
v-if="!row.readStatus"
|
>
|
||||||
@click="handleUpdate([row.id])"
|
<el-option
|
||||||
|
v-for="dict in getDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING)"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
/>
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="发送时间" prop="createTime">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="queryParams.createTime"
|
||||||
|
value-format="YYYY-MM-DD HH:mm:ss"
|
||||||
|
type="daterange"
|
||||||
|
start-placeholder="开始日期"
|
||||||
|
end-placeholder="结束日期"
|
||||||
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||||
|
class="!w-240px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||||||
|
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||||||
|
<el-button @click="handleUpdateList"
|
||||||
|
><Icon icon="ep:reading" class="mr-5px" /> 标记已读</el-button
|
||||||
|
>
|
||||||
|
<el-button @click="handleUpdateAll"
|
||||||
|
><Icon icon="ep:reading" class="mr-5px" /> 全部已读</el-button
|
||||||
|
>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<!-- <el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button @click="handleUpdateList"
|
||||||
|
><Icon icon="ep:refresh" class="mr-5px" /> 标记已读</el-button
|
||||||
|
>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button @click="handleUpdateAll"
|
||||||
|
><Icon icon="ep:refresh" class="mr-5px" /> 全部已读</el-button
|
||||||
|
>
|
||||||
|
</el-col>
|
||||||
|
</el-row> -->
|
||||||
|
</content-wrap>
|
||||||
|
|
||||||
|
<content-wrap>
|
||||||
|
<!-- 列表 -->
|
||||||
|
<el-table
|
||||||
|
ref="tableRef"
|
||||||
|
v-loading="loading"
|
||||||
|
:data="list"
|
||||||
|
:height="tableHeight"
|
||||||
|
:row-key="getRowKeys"
|
||||||
|
@selection-change="handleSelectionChange"
|
||||||
|
>
|
||||||
|
<el-table-column type="selection" :selectable="selectable" :reserve-selection="true" />
|
||||||
|
<!-- <el-table-column label="编号" align="center" prop="id" /> -->
|
||||||
|
<el-table-column label="发送人" align="center" prop="templateNickname" width="180" />
|
||||||
|
<el-table-column
|
||||||
|
label="发送时间"
|
||||||
|
align="center"
|
||||||
|
prop="createTime"
|
||||||
|
width="200"
|
||||||
|
:formatter="dateFormatter"
|
||||||
|
/>
|
||||||
|
<el-table-column label="类型" align="center" prop="templateType" width="180">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE" :value="scope.row.templateType" />
|
||||||
</template>
|
</template>
|
||||||
</XTable>
|
</el-table-column>
|
||||||
</ContentWrap>
|
<el-table-column
|
||||||
|
label="消息内容"
|
||||||
|
align="center"
|
||||||
|
prop="templateContent"
|
||||||
|
show-overflow-tooltip
|
||||||
|
/>
|
||||||
|
<el-table-column label="是否已读" align="center" prop="readStatus" width="160">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.INFRA_BOOLEAN_STRING" :value="scope.row.readStatus" />
|
||||||
</template>
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="阅读时间"
|
||||||
|
align="center"
|
||||||
|
prop="readTime"
|
||||||
|
width="200"
|
||||||
|
:formatter="dateFormatter"
|
||||||
|
/>
|
||||||
|
<el-table-column label="操作" align="center" width="160">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button
|
||||||
|
link
|
||||||
|
:type="scope.row.readStatus ? 'primary' : 'warning'"
|
||||||
|
@click="openModal(scope.row)"
|
||||||
|
>
|
||||||
|
{{ scope.row.readStatus ? '详情' : '查阅' }}
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页 -->
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
</content-wrap>
|
||||||
|
|
||||||
|
<!-- 表单弹窗:详情 -->
|
||||||
|
<my-notify-message-detail ref="modalRef" />
|
||||||
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts" name="MyNotifyMessage">
|
<script setup lang="ts" name="MyNotifyMessage">
|
||||||
// 业务相关的 import
|
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
|
||||||
import { allSchemas } from './my.data'
|
import { dateFormatter } from '@/utils/formatTime'
|
||||||
import * as NotifyMessageApi from '@/api/system/notify/message'
|
import * as NotifyMessageApi from '@/api/system/notify/message'
|
||||||
|
import MyNotifyMessageDetail from './detail.vue'
|
||||||
|
|
||||||
const message = useMessage() // 消息
|
const message = useMessage() // 消息
|
||||||
|
|
||||||
// 列表相关的变量
|
const loading = ref(true) // 列表的加载中
|
||||||
const [registerTable, { reload, getCheckboxRecords }] = useXTable({
|
const total = ref(0) // 列表的总页数
|
||||||
allSchemas: allSchemas,
|
const list = ref([]) // 列表的数据
|
||||||
getListApi: NotifyMessageApi.getMyNotifyMessagePage
|
const queryParams = reactive({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
readStatus: undefined,
|
||||||
|
createTime: []
|
||||||
})
|
})
|
||||||
|
const queryFormRef = ref() // 搜索的表单
|
||||||
|
const tableRef = ref()
|
||||||
|
const tableHeight = ref() // table高度
|
||||||
|
const selectedNum = ref(0) //表格select选中的条数
|
||||||
|
const selectedIds = ref([] as any[]) //表格select复选框选中的id
|
||||||
|
const multipleSelection = ref([])
|
||||||
|
|
||||||
const handleUpdateList = async () => {
|
/** 查询参数列表 */
|
||||||
const list = getCheckboxRecords() as any as any[]
|
const getList = async () => {
|
||||||
if (list.length === 0) {
|
loading.value = true
|
||||||
return
|
try {
|
||||||
|
const data = await NotifyMessageApi.getMyNotifyMessagePage(queryParams)
|
||||||
|
list.value = data.list
|
||||||
|
total.value = data.total
|
||||||
|
} finally {
|
||||||
|
loading.value = false
|
||||||
}
|
}
|
||||||
await handleUpdate(list.map((v) => v.id))
|
}
|
||||||
|
|
||||||
|
/** 详情操作 */
|
||||||
|
const modalRef = ref()
|
||||||
|
const openModal = (data: NotifyMessageApi.NotifyMessageVO) => {
|
||||||
|
if (!data.readStatus) {
|
||||||
|
handleUpdate(data.id)
|
||||||
|
}
|
||||||
|
modalRef.value.openModal(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 标记指定 id 已读
|
// 标记指定 id 已读
|
||||||
const handleUpdate = async (ids) => {
|
const handleUpdate = async (ids) => {
|
||||||
await NotifyMessageApi.updateNotifyMessageRead(ids)
|
await NotifyMessageApi.updateNotifyMessageRead(ids)
|
||||||
message.success('标记已读成功!')
|
//message.success('标记已读成功!')
|
||||||
reload()
|
handleQuery()
|
||||||
}
|
}
|
||||||
|
|
||||||
// 标记全部已读
|
// 标记全部已读
|
||||||
const handleUpdateAll = async () => {
|
const handleUpdateAll = async () => {
|
||||||
await NotifyMessageApi.updateAllNotifyMessageRead()
|
await NotifyMessageApi.updateAllNotifyMessageRead()
|
||||||
message.success('全部已读成功!')
|
message.success('全部已读成功!')
|
||||||
reload()
|
handleQuery()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 标记勾选 ids 已读
|
||||||
|
const handleUpdateList = async () => {
|
||||||
|
if (selectedIds.value.length === 0) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
await NotifyMessageApi.updateNotifyMessageRead(selectedIds.value)
|
||||||
|
message.success('批量已读成功!')
|
||||||
|
tableRef.value.clearSelection()
|
||||||
|
handleQuery()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.pageNo = 1
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryFormRef.value.resetFields()
|
||||||
|
tableRef.value.clearSelection()
|
||||||
|
handleQuery()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 初始化 **/
|
||||||
|
onMounted(() => {
|
||||||
|
getList()
|
||||||
|
// TODO 感觉表格自适应高度体验好些,目前简单实现 需要进一步优化
|
||||||
|
tableHeight.value = window.innerHeight - tableRef.value.$el.offsetTop - 85 - 155
|
||||||
|
// 监听浏览器高度变化
|
||||||
|
window.onresize = () => {
|
||||||
|
tableHeight.value = window.innerHeight - tableRef.value.$el.offsetTop - 85 - 155
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// 禁用某行复选框
|
||||||
|
const selectable = (row) => {
|
||||||
|
return !row.readStatus
|
||||||
|
}
|
||||||
|
|
||||||
|
//选中的list
|
||||||
|
const getRowKeys = (row) => {
|
||||||
|
return row.id
|
||||||
|
}
|
||||||
|
//当表格选择项发生变化时会触发该事件
|
||||||
|
const handleSelectionChange = (val) => {
|
||||||
|
// 解决来回切换页面,也无法清除上次选中情况
|
||||||
|
multipleSelection.value = val
|
||||||
|
selectedNum.value = multipleSelection.value.length
|
||||||
|
selectedIds.value = []
|
||||||
|
if (val) {
|
||||||
|
undefined
|
||||||
|
val.forEach((row) => {
|
||||||
|
undefined
|
||||||
|
if (row) {
|
||||||
|
undefined
|
||||||
|
selectedIds.value.push(row.id)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,58 +0,0 @@
|
|||||||
import type { VxeCrudSchema } from '@/hooks/web/useVxeCrudSchemas'
|
|
||||||
|
|
||||||
// CrudSchema
|
|
||||||
const crudSchemas = reactive<VxeCrudSchema>({
|
|
||||||
primaryKey: 'id',
|
|
||||||
primaryTitle: ' ',
|
|
||||||
primaryType: 'checkbox',
|
|
||||||
action: true,
|
|
||||||
actionWidth: '200', // 3个按钮默认200,如有删减对应增减即可
|
|
||||||
columns: [
|
|
||||||
{
|
|
||||||
title: '发送人名称',
|
|
||||||
field: 'templateNickname',
|
|
||||||
table: {
|
|
||||||
width: 120
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '发送时间',
|
|
||||||
field: 'createTime',
|
|
||||||
isForm: false,
|
|
||||||
formatter: 'formatDate',
|
|
||||||
search: {
|
|
||||||
show: true,
|
|
||||||
itemRender: {
|
|
||||||
name: 'XDataTimePicker'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
table: {
|
|
||||||
width: 180
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '类型',
|
|
||||||
field: 'templateType',
|
|
||||||
dictType: DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE,
|
|
||||||
dictClass: 'number',
|
|
||||||
table: {
|
|
||||||
width: 80
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '内容',
|
|
||||||
field: 'templateContent'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '是否已读',
|
|
||||||
field: 'readStatus',
|
|
||||||
dictType: DICT_TYPE.INFRA_BOOLEAN_STRING,
|
|
||||||
dictClass: 'boolean',
|
|
||||||
table: {
|
|
||||||
width: 80
|
|
||||||
},
|
|
||||||
isSearch: true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export const { allSchemas } = useVxeCrudSchemas(crudSchemas)
|
|
Loading…
Reference in New Issue
Block a user