134 lines
3.3 KiB
Vue
134 lines
3.3 KiB
Vue
<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="formData?.id" />
|
|
<wd-cell title="短信签名" :value="formData?.signature" />
|
|
<wd-cell title="渠道编码">
|
|
<dict-tag :type="DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE" :value="formData?.code" />
|
|
</wd-cell>
|
|
<wd-cell title="启用状态">
|
|
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="formData?.status" />
|
|
</wd-cell>
|
|
<wd-cell title="短信 API 账号" :value="formData?.apiKey" />
|
|
<wd-cell title="短信 API 密钥" :value="formData?.apiSecret" />
|
|
<wd-cell title="回调 URL" :value="formData?.callbackUrl" />
|
|
<wd-cell title="备注" :value="formData?.remark ?? '-'" />
|
|
<wd-cell title="创建时间" :value="formatDateTime(formData?.createTime)" />
|
|
</wd-cell-group>
|
|
</view>
|
|
|
|
<!-- 底部操作按钮 -->
|
|
<view class="yd-detail-footer">
|
|
<view class="yd-detail-footer-actions">
|
|
<wd-button
|
|
v-if="hasAccessByCodes(['system:sms-channel:update'])"
|
|
class="flex-1" type="warning" @click="handleEdit"
|
|
>
|
|
编辑
|
|
</wd-button>
|
|
<wd-button
|
|
v-if="hasAccessByCodes(['system:sms-channel:delete'])"
|
|
class="flex-1" type="error" :loading="deleting" @click="handleDelete"
|
|
>
|
|
删除
|
|
</wd-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { SmsChannel } from '@/api/system/sms/channel'
|
|
import { onMounted, ref } from 'vue'
|
|
import { useToast } from 'wot-design-uni'
|
|
import { deleteSmsChannel, getSmsChannel } from '@/api/system/sms/channel'
|
|
import { useAccess } from '@/hooks/useAccess'
|
|
import { navigateBackPlus } from '@/utils'
|
|
import { DICT_TYPE } from '@/utils/constants'
|
|
import { formatDateTime } from '@/utils/date'
|
|
|
|
const props = defineProps<{
|
|
id?: number | any
|
|
}>()
|
|
|
|
definePage({
|
|
style: {
|
|
navigationBarTitleText: '',
|
|
navigationStyle: 'custom',
|
|
},
|
|
})
|
|
|
|
const { hasAccessByCodes } = useAccess()
|
|
const toast = useToast()
|
|
const formData = ref<SmsChannel>()
|
|
const deleting = ref(false)
|
|
|
|
/** 返回上一页 */
|
|
function handleBack() {
|
|
navigateBackPlus('/pages-system/sms/index')
|
|
}
|
|
|
|
/** 加载详情 */
|
|
async function getDetail() {
|
|
if (!props.id) {
|
|
return
|
|
}
|
|
try {
|
|
toast.loading('加载中...')
|
|
formData.value = await getSmsChannel(props.id)
|
|
} finally {
|
|
toast.close()
|
|
}
|
|
}
|
|
|
|
/** 编辑 */
|
|
function handleEdit() {
|
|
uni.navigateTo({
|
|
url: `/pages-system/sms/channel/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 deleteSmsChannel(props.id)
|
|
toast.success('删除成功')
|
|
setTimeout(() => {
|
|
handleBack()
|
|
}, 500)
|
|
} finally {
|
|
deleting.value = false
|
|
}
|
|
},
|
|
})
|
|
}
|
|
|
|
/** 初始化 */
|
|
onMounted(() => {
|
|
getDetail()
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|