| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <template>
- <view class="yd-page-container">
- <!-- 顶部导航栏 -->
- <wd-navbar
- title="邮件模板详情"
- left-arrow placeholder safe-area-inset-top fixed
- @click-left="handleBack"
- />
- <!-- 详情内容 -->
- <view>
- <wd-cell-group border>
- <wd-cell title="模板编号" :value="String(formData?.id ?? '-')" />
- <wd-cell title="模板名称" :value="String(formData?.name ?? '-')" />
- <wd-cell title="模板编码" :value="String(formData?.code ?? '-')" />
- <wd-cell title="邮箱账号" :value="String(getAccountMail(formData?.accountId) || formData?.accountId || '-')" />
- <wd-cell title="发送人名称" :value="String(formData?.nickname ?? '-')" />
- <wd-cell title="模板标题" :value="String(formData?.title ?? '-')" />
- <wd-cell title="开启状态">
- <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="formData?.status" />
- </wd-cell>
- <wd-cell title="模板内容" :value="String(formData?.content ?? '-')" />
- <wd-cell title="备注" :value="String(formData?.remark ?? '-')" />
- <wd-cell title="创建时间" :value="formatDateTime(formData?.createTime) || '-'" />
- </wd-cell-group>
- </view>
- <!-- 发送测试邮件弹窗 -->
- <SendForm v-model="sendVisible" :template="formData" />
- <!-- 底部操作按钮 -->
- <view class="fixed bottom-0 left-0 right-0 bg-white p-24rpx">
- <view class="w-full flex gap-24rpx">
- <wd-button
- v-if="hasAccessByCodes(['system:mail-template:send-mail'])"
- class="flex-1" type="primary" @click="handleSendTest"
- >
- 测试
- </wd-button>
- <wd-button
- v-if="hasAccessByCodes(['system:mail-template:update'])"
- class="flex-1" type="warning" @click="handleEdit"
- >
- 编辑
- </wd-button>
- <wd-button
- v-if="hasAccessByCodes(['system:mail-template:delete'])"
- class="flex-1" type="error" :loading="deleting" @click="handleDelete"
- >
- 删除
- </wd-button>
- </view>
- </view>
- </view>
- </template>
- <script lang="ts" setup>
- import type { MailAccount } from '@/api/system/mail/account'
- import type { MailTemplate } from '@/api/system/mail/template'
- import { onMounted, ref } from 'vue'
- import { useToast } from 'wot-design-uni'
- import { getSimpleMailAccountList } from '@/api/system/mail/account'
- import { deleteMailTemplate, getMailTemplate } from '@/api/system/mail/template'
- import { useAccess } from '@/hooks/useAccess'
- import { navigateBackPlus } from '@/utils'
- import { DICT_TYPE } from '@/utils/constants'
- import { formatDateTime } from '@/utils/date'
- import SendForm from './components/send-form.vue'
- const props = defineProps<{
- id?: number | any
- }>()
- definePage({
- style: {
- navigationBarTitleText: '',
- navigationStyle: 'custom',
- },
- })
- const { hasAccessByCodes } = useAccess()
- const toast = useToast()
- const formData = ref<MailTemplate>()
- const deleting = ref(false)
- // 发送测试邮件相关
- const sendVisible = ref(false)
- /** 邮箱账号列表 */
- const accountList = ref<MailAccount[]>([])
- /** 获取邮箱账号名称 */
- function getAccountMail(accountId?: number) {
- return accountList.value.find((item: MailAccount) => item.id === accountId)?.mail
- }
- /** 返回上一页 */
- function handleBack() {
- navigateBackPlus('/pages-system/mail/index')
- }
- /** 加载邮箱账号列表 */
- async function loadAccountList() {
- try {
- accountList.value = await getSimpleMailAccountList()
- } catch {
- accountList.value = []
- }
- }
- /** 加载详情 */
- async function getDetail() {
- if (!props.id) {
- return
- }
- try {
- toast.loading('加载中...')
- formData.value = await getMailTemplate(props.id)
- } finally {
- toast.close()
- }
- }
- /** 编辑 */
- function handleEdit() {
- uni.navigateTo({
- url: `/pages-system/mail/template/form/index?id=${props.id}`,
- })
- }
- /** 删除 */
- function handleDelete() {
- if (!props.id) {
- return
- }
- uni.showModal({
- title: '提示',
- content: '确定要删除该邮件模板吗?',
- success: async (res) => {
- if (!res.confirm) {
- return
- }
- deleting.value = true
- try {
- await deleteMailTemplate(props.id)
- toast.success('删除成功')
- setTimeout(() => {
- handleBack()
- }, 500)
- } finally {
- deleting.value = false
- }
- },
- })
- }
- /** 打开发送测试邮件弹窗 */
- function handleSendTest() {
- sendVisible.value = true
- }
- /** 初始化 */
- onMounted(async () => {
- await loadAccountList()
- await getDetail()
- })
- </script>
- <style lang="scss" scoped>
- </style>
|