123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <script setup lang="ts">
- import { ref } from 'vue'
- import dayjs from 'dayjs'
- import { DICT_TYPE } from '@/utils/dict'
- import { useTable } from '@/hooks/web/useTable'
- import { useI18n } from '@/hooks/web/useI18n'
- import type { SmsLogVO } from '@/api/system/sms/smsLog/types'
- import { allSchemas } from './sms.log.data'
- import * as SmsLoglApi from '@/api/system/sms/smsLog'
- const { t } = useI18n() // 国际化
- // ========== 列表相关 ==========
- const { register, tableObject, methods } = useTable<SmsLogVO>({
- getListApi: SmsLoglApi.getSmsLogPageApi
- })
- const { getList, setSearchParams } = methods
- // ========== CRUD 相关 ==========
- const actionType = ref('') // 操作按钮的类型
- const dialogVisible = ref(false) // 是否显示弹出层
- const dialogTitle = ref(t('action.detail')) // 弹出层标题
- // ========== 详情相关 ==========
- const detailRef = ref() // 详情 Ref
- const handleDetail = (row: SmsLogVO) => {
- // 设置数据
- detailRef.value = row
- dialogVisible.value = true
- }
- // ========== 初始化 ==========
- getList()
- </script>
- <template>
- <!-- 搜索工作区 -->
- <ContentWrap>
- <Search :schema="allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
- </ContentWrap>
- <ContentWrap>
- <!-- 列表 -->
- <Table
- :columns="allSchemas.tableColumns"
- :selection="false"
- :data="tableObject.tableList"
- :loading="tableObject.loading"
- :pagination="{
- total: tableObject.total
- }"
- v-model:pageSize="tableObject.pageSize"
- v-model:currentPage="tableObject.currentPage"
- @register="register"
- >
- <template #code="{ row }">
- <DictTag :type="DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE" :value="row.code" />
- </template>
- <template #status="{ row }">
- <DictTag :type="DICT_TYPE.COMMON_STATUS" :value="row.status" />
- </template>
- <template #createTime="{ row }">
- <span>{{ dayjs(row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
- </template>
- <template #receiveTime="{ row }">
- <span>{{ dayjs(row.receiveTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
- </template>
- <template #action="{ row }">
- <el-button
- link
- type="primary"
- v-hasPermi="['system:sms-channel:update']"
- @click="handleDetail(row)"
- >
- <Icon icon="ep:view" class="mr-1px" /> {{ t('action.detail') }}
- </el-button>
- </template>
- </Table>
- </ContentWrap>
- <Dialog v-model="dialogVisible" :title="dialogTitle">
- <!-- 对话框(详情) -->
- <Descriptions
- v-if="actionType === 'detail'"
- :schema="allSchemas.detailSchema"
- :data="detailRef"
- >
- <template #code="{ row }">
- <DictTag :type="DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE" :value="row.code" />
- </template>
- <template #status="{ row }">
- <DictTag :type="DICT_TYPE.COMMON_STATUS" :value="row.status" />
- </template>
- <template #createTime="{ row }">
- <span>{{ dayjs(row.createTime).format('YYYY-MM-DD HH:mm:ss') }}</span>
- </template>
- </Descriptions>
- <!-- 操作按钮 -->
- <template #footer>
- <el-button @click="dialogVisible = false">{{ t('dialog.close') }}</el-button>
- </template>
- </Dialog>
- </template>
|