112 lines
3.9 KiB
Vue
112 lines
3.9 KiB
Vue
<template>
|
|
<div>
|
|
<el-card class="!border-none mb-4" shadow="never">
|
|
<el-form class="mb-[-16px]" :model="queryParams" inline>
|
|
<el-form-item label="消息主题" prop="title">
|
|
<el-input class="w-[280px]" v-model="queryParams.title" clearable placeholder="请输入消息主题" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" @click="resetPage">查询</el-button>
|
|
<el-button @click="resetParams">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-card>
|
|
<el-card class="!border-none" v-loading="pager.loading" shadow="never">
|
|
<div class="mt-4">
|
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
|
<el-table-column label="消息主题" prop="title" show-overflow-tooltip />
|
|
<el-table-column label="消息内容" prop="content" show-overflow-tooltip />
|
|
<el-table-column label="是否已读" prop="is_read" show-overflow-tooltip />
|
|
<el-table-column label="阅读时间" show-overflow-tooltip>
|
|
<template #default="{ row }">
|
|
{{ row.read_time == 0 ? '' : timeFormat(row.read_time, 'yyyy-mm-dd hh:MM') }}
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="创建时间" prop="create_time" show-overflow-tooltip />
|
|
<el-table-column label="操作" width="120" fixed="right">
|
|
<template #default="{ row }">
|
|
<el-button type="primary" link @click="handleEdit(row)">
|
|
详情
|
|
</el-button>
|
|
<el-button type="danger" link @click="handleDelete(row.id)">
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<div class="flex mt-4 justify-end">
|
|
<pagination v-model="pager" @change="getLists" />
|
|
</div>
|
|
</el-card>
|
|
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists"
|
|
@close="showEdit = false, getLists()" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="oaMessageLists">
|
|
import { usePaging } from '@/hooks/usePaging'
|
|
import { useDictData } from '@/hooks/useDictOptions'
|
|
import { apiOaMessageLists, apiOaMessageDelete, apiOaMessageDetail } from '@/api/oa_message'
|
|
import { timeFormat } from '@/utils/util'
|
|
import feedback from '@/utils/feedback'
|
|
import EditPopup from './edit.vue'
|
|
|
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
|
// 是否显示编辑框
|
|
const showEdit = ref(false)
|
|
|
|
|
|
// 查询条件
|
|
const queryParams = reactive({
|
|
title: '',
|
|
from_uid: '',
|
|
to_uid: ''
|
|
})
|
|
|
|
// 选中数据
|
|
const selectData = ref<any[]>([])
|
|
|
|
// 表格选择后回调事件
|
|
const handleSelectionChange = (val: any[]) => {
|
|
selectData.value = val.map(({ id }) => id)
|
|
}
|
|
|
|
// 获取字典数据
|
|
const { dictData } = useDictData('')
|
|
|
|
// 分页相关
|
|
const { pager, getLists, resetParams, resetPage } = usePaging({
|
|
fetchFun: apiOaMessageLists,
|
|
params: queryParams
|
|
})
|
|
|
|
// 添加
|
|
const handleAdd = async () => {
|
|
showEdit.value = true
|
|
await nextTick()
|
|
editRef.value?.open('add')
|
|
}
|
|
|
|
// 编辑
|
|
const handleEdit = async (data: any) => {
|
|
let res = await apiOaMessageDetail({ id: data.id })
|
|
showEdit.value = true
|
|
await nextTick()
|
|
editRef.value?.open('edit')
|
|
editRef.value?.setFormData(res)
|
|
}
|
|
|
|
// 删除
|
|
const handleDelete = async (id: number | any[]) => {
|
|
await feedback.confirm('确定要删除?')
|
|
await apiOaMessageDelete({ id })
|
|
getLists()
|
|
}
|
|
|
|
getLists()
|
|
</script>
|
|
|