Vue3 重构:邮件账号的重构部分提交

This commit is contained in:
YunaiV 2023-03-17 22:33:30 +08:00
parent 96e0ce9866
commit 3f2a77f2d2
6 changed files with 46 additions and 38 deletions

View File

@ -11,31 +11,31 @@ export interface MailAccountVO {
} }
// 查询邮箱账号列表 // 查询邮箱账号列表
export const getMailAccountPageApi = async (params: PageParam) => { export const getMailAccountPage = async (params: PageParam) => {
return await request.get({ url: '/system/mail-account/page', params }) return await request.get({ url: '/system/mail-account/page', params })
} }
// 查询邮箱账号详情 // 查询邮箱账号详情
export const getMailAccountApi = async (id: number) => { export const getMailAccount = async (id: number) => {
return await request.get({ url: '/system/mail-account/get?id=' + id }) return await request.get({ url: '/system/mail-account/get?id=' + id })
} }
// 新增邮箱账号 // 新增邮箱账号
export const createMailAccountApi = async (data: MailAccountVO) => { export const createMailAccount = async (data: MailAccountVO) => {
return await request.post({ url: '/system/mail-account/create', data }) return await request.post({ url: '/system/mail-account/create', data })
} }
// 修改邮箱账号 // 修改邮箱账号
export const updateMailAccountApi = async (data: MailAccountVO) => { export const updateMailAccount = async (data: MailAccountVO) => {
return await request.put({ url: '/system/mail-account/update', data }) return await request.put({ url: '/system/mail-account/update', data })
} }
// 删除邮箱账号 // 删除邮箱账号
export const deleteMailAccountApi = async (id: number) => { export const deleteMailAccount = async (id: number) => {
return await request.delete({ url: '/system/mail-account/delete?id=' + id }) return await request.delete({ url: '/system/mail-account/delete?id=' + id })
} }
// 获得邮箱账号精简列表 // 获得邮箱账号精简列表
export const getSimpleMailAccounts = async () => { export const getSimpleMailAccountList = async () => {
return request.get({ url: '/system/mail-account/list-all-simple' }) return request.get({ url: '/system/mail-account/list-all-simple' })
} }

View File

@ -77,7 +77,6 @@ const crudSchemas = reactive<CrudSchema[]>([
{ {
label: '操作', label: '操作',
field: 'action', field: 'action',
width: '260px',
form: { form: {
show: false show: false
} }

View File

@ -31,7 +31,7 @@ const openModal = async (type: string, id?: number) => {
if (id) { if (id) {
formLoading.value = true formLoading.value = true
try { try {
const data = await MailAccountApi.getMailAccountApi(id) const data = await MailAccountApi.getMailAccount(id)
formRef.value.setValues(data) formRef.value.setValues(data)
} finally { } finally {
formLoading.value = false formLoading.value = false
@ -52,10 +52,10 @@ const submitForm = async () => {
try { try {
const data = formRef.value.formModel as MailAccountApi.MailAccountVO const data = formRef.value.formModel as MailAccountApi.MailAccountVO
if (formType.value === 'create') { if (formType.value === 'create') {
await MailAccountApi.createMailAccountApi(data) await MailAccountApi.createMailAccount(data)
message.success(t('common.createSuccess')) message.success(t('common.createSuccess'))
} else { } else {
await MailAccountApi.updateMailAccountApi(data) await MailAccountApi.updateMailAccount(data)
message.success(t('common.updateSuccess')) message.success(t('common.updateSuccess'))
} }
modelVisible.value = false modelVisible.value = false

View File

@ -1,28 +1,31 @@
<template> <template>
<!-- 搜索工作栏 -->
<ContentWrap> <ContentWrap>
<!-- TODO @芋艿setSearchParams --> <Search :schema="allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams">
<Search :schema="allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> <!-- 新增等操作按钮 -->
<template #actionMore>
<el-button
type="primary"
@click="openModal('create')"
v-hasPermi="['system:mail-account:create']"
>
<Icon icon="ep:plus" class="mr-5px" /> 新增
</el-button>
</template>
</Search>
</ContentWrap> </ContentWrap>
<el-button <!-- 列表 -->
type="primary"
@click="openModal('create')"
v-hasPermi="['system:mail-account:create']"
>
<Icon icon="ep:plus" class="mr-5px" /> 新增
</el-button>
<ContentWrap> <ContentWrap>
<Table <Table
v-model:pageSize="tableObject.pageSize"
v-model:currentPage="tableObject.currentPage"
:columns="allSchemas.tableColumns" :columns="allSchemas.tableColumns"
:data="tableObject.tableList" :data="tableObject.tableList"
:loading="tableObject.loading" :loading="tableObject.loading"
:pagination="{ :pagination="{
total: tableObject.total total: tableObject.total
}" }"
@register="register" v-model:pageSize="tableObject.pageSize"
v-model:currentPage="tableObject.currentPage"
> >
<template #action="{ row }"> <template #action="{ row }">
<el-button <el-button
@ -37,7 +40,7 @@
link link
type="danger" type="danger"
v-hasPermi="['system:mail-account:delete']" v-hasPermi="['system:mail-account:delete']"
@click="delList(row.id, false)" @click="handleDelete(row.id)"
> >
删除 删除
</el-button> </el-button>
@ -46,7 +49,7 @@
</ContentWrap> </ContentWrap>
<!-- 表单弹窗添加/修改 --> <!-- 表单弹窗添加/修改 -->
<mail-account-form ref="modalRef" @success="getList" /> <MailAccountForm ref="modalRef" @success="getList" />
</template> </template>
<script setup lang="ts" name="MailAccount"> <script setup lang="ts" name="MailAccount">
import { allSchemas } from './account.data' import { allSchemas } from './account.data'
@ -54,17 +57,15 @@ import { useTable } from '@/hooks/web/useTable'
import * as MailAccountApi from '@/api/system/mail/account' import * as MailAccountApi from '@/api/system/mail/account'
import MailAccountForm from './form.vue' import MailAccountForm from './form.vue'
// const { t } = useI18n() // // https://kailong110120130.gitee.io/vue-element-plus-admin-doc/components/table.html#usetable
// const message = useMessage() // // tableObject
// tableMethods
const { register, tableObject, methods } = useTable<MailAccountApi.MailAccountVO>({ const { tableObject, tableMethods } = useTable({
getListApi: MailAccountApi.getMailAccountPageApi, getListApi: MailAccountApi.getMailAccountPage, //
delListApi: MailAccountApi.deleteMailAccountApi delListApi: MailAccountApi.deleteMailAccount //
}) })
//
const { getList, setSearchParams } = methods const { getList, setSearchParams } = tableMethods
const { delList } = methods
/** 添加/修改操作 */ /** 添加/修改操作 */
const modalRef = ref() const modalRef = ref()
@ -72,5 +73,13 @@ const openModal = (type: string, id?: number) => {
modalRef.value.openModal(type, id) modalRef.value.openModal(type, id)
} }
getList() /** 删除按钮操作 */
const handleDelete = (id: number) => {
tableMethods.delList(id, false)
}
/** 初始化 **/
onMounted(() => {
getList()
})
</script> </script>

View File

@ -91,7 +91,7 @@ const handleDetail = async (rowId: number) => {
// ========== ========== // ========== ==========
onMounted(() => { onMounted(() => {
MailAccountApi.getSimpleMailAccounts().then((data) => { MailAccountApi.getSimpleMailAccountList().then((data) => {
accountOptions.value = data accountOptions.value = data
}) })
}) })

View File

@ -266,7 +266,7 @@ const sendTest = async () => {
// ========== ========== // ========== ==========
onMounted(() => { onMounted(() => {
MailAccountApi.getSimpleMailAccounts().then((data) => { MailAccountApi.getSimpleMailAccountList().then((data) => {
accountOptions.value = data accountOptions.value = data
}) })
}) })