62 lines
2.0 KiB
Vue
62 lines
2.0 KiB
Vue
<template>
|
||
<div class="w-full lg:w-9/12 ma-content-block rounded-xs p-3 mt-3 bg-color">
|
||
<div class="flex justify-between">
|
||
系统公告
|
||
<a-link>更多</a-link>
|
||
</div>
|
||
<a-table :data="data" :columns="columns" class="mt-2" :pagination="false">
|
||
<template #title="{ record }">
|
||
<a-link @click="viewDetail(record)">{{ record.title }}</a-link>
|
||
</template>
|
||
</a-table>
|
||
<a-modal v-model:visible="detailVisible" width="80%" draggable :footer="false">
|
||
<template #title>公告详情</template>
|
||
<a-typography :style="{ marginTop: '-30px' }">
|
||
<a-typography-title class="text-center">
|
||
{{ row?.title }}
|
||
</a-typography-title>
|
||
<a-typography-paragraph class="text-right" style="font-size: 13px; color: var(--color-text-3)">
|
||
<a-space size="large">
|
||
<span>创建时间:{{ row?.created_at }}</span>
|
||
</a-space>
|
||
</a-typography-paragraph>
|
||
<a-typography-paragraph>
|
||
<div v-html="row?.content"></div>
|
||
</a-typography-paragraph>
|
||
</a-typography>
|
||
</a-modal>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
// 主要是首页-工作台-系统公告
|
||
import { ref, reactive } from "vue"
|
||
import commonApi from "@/api/common"
|
||
|
||
const data = ref([])
|
||
const columns = reactive([
|
||
{ title: "标题", dataIndex: "title", slotName: "title" },
|
||
{ title: "发布时间", dataIndex: "created_at", width: 180, align: "right" }
|
||
])
|
||
|
||
const row = ref({})
|
||
const detailVisible = ref(false)
|
||
const viewDetail = async (record) => {
|
||
row.value = record
|
||
detailVisible.value = true
|
||
}
|
||
const getNoticeList = async () => {
|
||
// 获取后台公告
|
||
const res = await commonApi.getNoticeList({ pageSize: 5, orderBy: "id", orderType: "desc" })
|
||
data.value = res.data
|
||
}
|
||
|
||
getNoticeList()
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
.bg-color {
|
||
background-color: var(--color-bg-1);
|
||
}
|
||
</style>
|