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

View File

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

View File

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