Vue3 重构:REVIEW 公众号账号

This commit is contained in:
YunaiV 2023-03-23 23:16:53 +08:00
parent 202031d42e
commit 8a8154e124
3 changed files with 54 additions and 43 deletions

View File

@ -1,6 +1,12 @@
<template>
<Dialog :title="modelTitle" v-model="modelVisible">
<el-form ref="formRef" :model="formData" :rules="rules" label-width="120px">
<el-form
ref="formRef"
:model="formData"
:rules="rules"
label-width="120px"
v-loading="formLoading"
>
<el-form-item label="名称" prop="name">
<el-input v-model="formData.name" placeholder="请输入名称" />
</el-form-item>
@ -57,16 +63,13 @@
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="modelVisible = false"> </el-button>
</div>
<el-button @click="submitForm" type="primary" :disabled="formLoading"> </el-button>
<el-button @click="modelVisible = false"> </el-button>
</template>
</Dialog>
</template>
<script setup lang="ts">
import * as AccountApi from '@/api/mp/account'
const { t } = useI18n() //
const message = useMessage() //
@ -74,7 +77,6 @@ const modelVisible = ref(false) // 弹窗的是否展示
const modelTitle = ref('') //
const formLoading = ref(false) // 12
const formType = ref('') // create - update -
//
const formData = ref({
id: undefined,
name: '',
@ -85,7 +87,6 @@ const formData = ref({
aesKey: '',
remark: ''
})
//
const rules = reactive({
name: [{ required: true, message: '名称不能为空', trigger: 'blur' }],
account: [{ required: true, message: '公众号账号不能为空', trigger: 'blur' }],
@ -96,7 +97,7 @@ const rules = reactive({
const formRef = ref() // Ref
/** 打开弹窗 */
const openModal = async (type: string, id?: number) => {
const open = async (type: string, id?: number) => {
modelVisible.value = true
modelTitle.value = t('action.' + type)
formType.value = type
@ -111,12 +112,10 @@ const openModal = async (type: string, id?: number) => {
}
}
}
defineExpose({ openModal }) // openModal
defineExpose({ open }) // open
/** 提交表单 */
const emit = defineEmits(['success']) // success
/** 提交按钮 */
const submitForm = async () => {
//
if (!formRef) return

View File

@ -6,7 +6,7 @@
:model="queryParams"
ref="queryFormRef"
:inline="true"
label-width="90px"
label-width="68px"
>
<el-form-item label="名称" prop="name">
<el-input
@ -20,8 +20,8 @@
<el-form-item>
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" />搜索</el-button>
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" />重置</el-button>
<el-button type="primary" @click="openModal('create')" v-hasPermi="['mp:account:create']"
><Icon icon="ep:plus" class="mr-5px" />新增
<el-button type="primary" @click="openForm('create')" v-hasPermi="['mp:account:create']">
<Icon icon="ep:plus" class="mr-5px" /> 新增
</el-button>
</el-form-item>
</el-form>
@ -46,6 +46,14 @@
alt="二维码"
style="height: 100px; display: inline-block"
/>
<el-button
link
type="primary"
@click="handleGenerateQrCode(scope.row)"
v-hasPermi="['mp:account:qr-code']"
>
生成二维码
</el-button>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" />
@ -54,30 +62,26 @@
<el-button
link
type="primary"
@click="openModal('update', scope.row.id)"
@click="openForm('update', scope.row.id)"
v-hasPermi="['mp:account:update']"
>编辑
>
编辑
</el-button>
<el-button
link
type="danger"
@click="handleDelete(scope.row.id)"
v-hasPermi="['mp:account:delete']"
>删除
</el-button>
<el-button
link
type="primary"
@click="handleGenerateQrCode(scope.row)"
v-hasPermi="['mp:account:qr-code']"
>生成二维码
>
删除
</el-button>
<el-button
link
type="danger"
@click="handleCleanQuota(scope.row)"
v-hasPermi="['mp:account:clear-quota']"
>清空 API 配额
>
清空 API 配额
</el-button>
</template>
</el-table-column>
@ -91,23 +95,20 @@
@pagination="getList"
/>
</content-wrap>
<!-- 对话框(添加 / 修改) -->
<account-form ref="modalRef" @success="getList" />
</template>
<!-- 对话框(添加 / 修改) -->
<AccountForm ref="formRef" @success="getList" />
</template>
<script setup lang="ts" name="MpAccount">
import * as AccountApi from '@/api/mp/account'
import AccountForm from './form.vue'
import AccountForm from './AccountForm.vue'
const message = useMessage() //
const { t } = useI18n() //
//
const loading = ref(true)
//
const total = ref(0)
//
const list = ref([])
//
const loading = ref(true) //
const total = ref(0) //
const list = ref([]) //
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
@ -134,6 +135,7 @@ const handleQuery = () => {
queryParams.pageNo = 1
getList()
}
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value.resetFields()
@ -141,9 +143,9 @@ const resetQuery = () => {
}
/** 添加/修改操作 */
const modalRef = ref()
const openModal = (type: string, id?: number) => {
modalRef.value.openModal(type, id)
const formRef = ref()
const openForm = (type: string, id?: number) => {
formRef.value.open(type, id)
}
/** 删除按钮操作 */
@ -158,6 +160,7 @@ const handleDelete = async (id) => {
await getList()
} catch {}
}
/** 生成二维码的按钮操作 */
const handleGenerateQrCode = async (row) => {
try {
@ -170,6 +173,7 @@ const handleGenerateQrCode = async (row) => {
await getList()
} catch {}
}
/** 清空二维码 API 配额的按钮操作 */
const handleCleanQuota = async (row) => {
try {
@ -181,6 +185,7 @@ const handleCleanQuota = async (row) => {
} catch {}
}
/** 初始化 **/
onMounted(() => {
getList()
})

View File

@ -1,7 +1,13 @@
<template>
<!-- 搜索工作栏 -->
<ContentWrap>
<!-- 搜索工作栏 -->
<el-form :model="queryParams" ref="queryFormRef" :inline="true" label-width="68px">
<el-form
class="-mb-15px"
:model="queryParams"
ref="queryFormRef"
:inline="true"
label-width="68px"
>
<el-form-item label="部门名称" prop="title">
<el-input v-model="queryParams.name" placeholder="请输入部门名称" clearable />
</el-form-item>
@ -113,7 +119,7 @@ const isExpandAll = ref(true) // 是否展开,默认全部展开
const refreshTable = ref(true) //
const loading = ref(true) //
//
//
const getUserList = async () => {
const res = await getSimpleUserList()
userOption.value = res
@ -157,6 +163,7 @@ const getList = async () => {
loading.value = false
}
}
/** 重置按钮操作 */
const resetQuery = () => {
queryParams.pageNo = 1