12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <doc-alert title="邮件配置" url="https://doc.iocoder.cn/mail" />
- <!-- 搜索工作栏 -->
- <ContentWrap>
- <Search :schema="allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
- </ContentWrap>
- <!-- 列表 -->
- <ContentWrap>
- <Table
- :columns="allSchemas.tableColumns"
- :data="tableObject.tableList"
- :loading="tableObject.loading"
- :pagination="{
- total: tableObject.total
- }"
- v-model:pageSize="tableObject.pageSize"
- v-model:currentPage="tableObject.currentPage"
- >
- <template #action="{ row }">
- <el-button
- link
- type="primary"
- @click="openDetail(row.id)"
- v-hasPermi="['system:mail-log:query']"
- >
- 详情
- </el-button>
- </template>
- </Table>
- </ContentWrap>
- <!-- 表单弹窗:详情 -->
- <mail-log-detail ref="detailRef" />
- </template>
- <script setup lang="ts" name="SystemMailLog">
- import { allSchemas } from './log.data'
- import * as MailLogApi from '@/api/system/mail/log'
- import MailLogDetail from './MailLogDetail.vue'
- // tableObject:表格的属性对象,可获得分页大小、条数等属性
- // tableMethods:表格的操作对象,可进行获得分页、删除记录等操作
- // 详细可见:https://doc.iocoder.cn/vue3/crud-schema/
- const { tableObject, tableMethods } = useTable({
- getListApi: MailLogApi.getMailLogPage // 分页接口
- })
- // 获得表格的各种操作
- const { getList, setSearchParams } = tableMethods
- /** 详情操作 */
- const detailRef = ref()
- const openDetail = (id: number) => {
- detailRef.value.open(id)
- }
- /** 初始化 **/
- onMounted(() => {
- getList()
- })
- </script>
|