|
@@ -1,84 +1,111 @@
|
|
|
<template>
|
|
|
- <div class="app-container">
|
|
|
- <el-row :gutter="20">
|
|
|
- <el-col :lg="4" :xs="24" style="">
|
|
|
- <el-input v-model="deptName" placeholder="请输入部门名称" prefix-icon="Search" clearable />
|
|
|
- <el-tree
|
|
|
- ref="deptTreeRef"
|
|
|
- class="mt-2"
|
|
|
- node-key="id"
|
|
|
- :data="deptOptions"
|
|
|
- :props="{ label: 'label', children: 'children' }"
|
|
|
- :expand-on-click-node="false"
|
|
|
- :filter-node-method="filterNode"
|
|
|
- highlight-current
|
|
|
- default-expand-all
|
|
|
- @node-click="handleNodeClick"
|
|
|
- />
|
|
|
- </el-col>
|
|
|
- <el-col :lg="20" :xs="24">
|
|
|
- <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
|
|
- <div v-show="showSearch" class="mb-[10px]">
|
|
|
- <h1>茂名市责任人列表</h1>
|
|
|
- <el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary">批量导出</el-button>
|
|
|
- <el-button type="primary" @click="handleUpload">批量导入</el-button>
|
|
|
- <el-button type="primary">新增责任人</el-button>
|
|
|
- <el-button type="primary" @click="handleShowUploadDetails">查看导入情况</el-button>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="姓名:" prop="userName" label-width="auto">
|
|
|
- <el-input v-model="queryParams.userName" placeholder="请输入联系人" clearable @keyup.enter="handleQuery" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
- <el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- </transition>
|
|
|
-
|
|
|
- <el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column type="selection" width="50" align="center" />
|
|
|
- <el-table-column v-if="columns[0].visible" key="userId" label="用户编号" align="center" prop="userId" />
|
|
|
- <el-table-column
|
|
|
- v-if="columns[1].visible"
|
|
|
- key="userName"
|
|
|
- label="姓名"
|
|
|
- align="center"
|
|
|
- prop="userName"
|
|
|
- :show-overflow-tooltip="true"
|
|
|
- width="120"
|
|
|
- />
|
|
|
- <el-table-column v-if="columns[2].visible" key="nickName" label="行政区划" align="center" prop="deptName" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column v-if="columns[3].visible" key="deptName" label="所属单位" align="center" prop="deptName" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column v-if="columns[4].visible" key="phonenumber" label="职务" align="center" prop="phonenumber" width="120" />
|
|
|
- <el-table-column v-if="columns[5].visible" key="status" label="电话号码" align="center" prop="phonenumber" width="120" />
|
|
|
- <el-table-column v-if="columns[6].visible" label="责任类型" align="center" prop="createTime" width="160">
|
|
|
- <template #default="scope">
|
|
|
- <span>{{ scope.row.createTime }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
- <template #default="scope">
|
|
|
- <el-text v-hasPermi="['system:menu:resetPwd']" class="common-btn-text-primary" @click="handleResetPwd(scope.row)">查看详情</el-text>
|
|
|
- <el-text v-hasPermi="['system:menu:edit']" class="common-btn-text-primary" @click="handleUpdate(scope.row)">修改</el-text>
|
|
|
- <el-text v-hasPermi="['system:menu:remove']" class="common-btn-text-danger" @click="handleDelete(scope.row)">删除</el-text>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
-
|
|
|
- <pagination v-show="total > 0" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" :total="total" @pagination="getList" />
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <DataImport v-model="uploadShow" url="" file-name="责任人信息批量导入模板" stepsText="责任人信息" />
|
|
|
- <DataImportDetail v-model="showUploadDetails" />
|
|
|
+ <div>
|
|
|
+ <div class="app-container">
|
|
|
+ <div v-show="!dialog.visible && !detailState.show && !addState.show">
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col :lg="4" :xs="24" style="">
|
|
|
+ <el-input v-model="deptName" placeholder="请输入部门名称" prefix-icon="Search" clearable />
|
|
|
+ <el-tree
|
|
|
+ ref="deptTreeRef"
|
|
|
+ class="mt-2"
|
|
|
+ node-key="id"
|
|
|
+ :data="deptOptions"
|
|
|
+ :props="{ label: 'label', children: 'children' }"
|
|
|
+ :expand-on-click-node="false"
|
|
|
+ :filter-node-method="filterNode"
|
|
|
+ highlight-current
|
|
|
+ default-expand-all
|
|
|
+ @node-click="handleNodeClick"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ <el-col :lg="20" :xs="24">
|
|
|
+ <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
|
|
+ <div v-show="showSearch" class="mb-[10px]">
|
|
|
+ <h1>茂名市责任人列表</h1>
|
|
|
+ <el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary">批量导出</el-button>
|
|
|
+ <el-button type="primary" @click="handleUpload">批量导入</el-button>
|
|
|
+ <el-button type="primary" @click="handleAdd">新建责任人</el-button>
|
|
|
+ <el-button type="primary" @click="handleShowUploadDetails">查看导入情况</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="姓名:" prop="Name" label-width="auto">
|
|
|
+ <el-input v-model="queryParams.Name" placeholder="请输入联系人" clearable @keyup.enter="handleQuery" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+ </transition>
|
|
|
+ <el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="50" align="center" />
|
|
|
+ <el-table-column v-if="columns[0].visible" key="userId" label="用户编号" align="center" prop="userId" />
|
|
|
+ <el-table-column
|
|
|
+ v-if="columns[1].visible"
|
|
|
+ key="name"
|
|
|
+ label="姓名"
|
|
|
+ align="center"
|
|
|
+ prop="name"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ width="120"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ v-if="columns[2].visible"
|
|
|
+ key="area_code"
|
|
|
+ label="行政区划"
|
|
|
+ align="center"
|
|
|
+ prop="area_code"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ v-if="columns[3].visible"
|
|
|
+ key="unit_name"
|
|
|
+ label="所属单位"
|
|
|
+ align="center"
|
|
|
+ prop="unit_name"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
+ />
|
|
|
+ <el-table-column v-if="columns[4].visible" key="position" label="职务" align="center" prop="position" width="120" />
|
|
|
+ <el-table-column v-if="columns[5].visible" key="phone" label="电话号码" align="center" prop="phone" width="120" />
|
|
|
+ <el-table-column v-if="columns[6].visible" label="责任类型" align="center" prop="type_parent_list" width="160">
|
|
|
+ <template #default="scope">
|
|
|
+ <span v-for="(typeParent, index) in scope.row.type_parent_list" :key="index">
|
|
|
+ {{ typeParent.type_parent }}
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-text v-hasPermi="['system:menu:resetPwd']" class="common-btn-text-primary" @click="handleView(scope.row)">查看详情</el-text>
|
|
|
+ <el-text v-hasPermi="['system:menu:edit']" class="common-btn-text-primary" @click="handleUpdate(scope.row)">修改</el-text>
|
|
|
+ <el-text v-hasPermi="['system:menu:remove']" class="common-btn-text-danger" @click="handleDelete(scope.row)">删除</el-text>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <pagination
|
|
|
+ v-show="total > 0"
|
|
|
+ v-model:page="queryParams.page"
|
|
|
+ v-model:limit="queryParams.pageSize"
|
|
|
+ :total="total"
|
|
|
+ @pagination="getList"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+ <DataImport v-model="uploadShow" url="" file-name="责任人信息批量导入模板" steps-text="责任人信息" />
|
|
|
+ <DataImportDetail v-model="showUploadDetails" />
|
|
|
+ <detail v-if="detailState.show" :id="detailState.id" @close="handledetailClose"></detail>
|
|
|
+ <add v-if="addState.show" :id="addState.id" @close="handleAddClose"></add>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
import api from '@/api/system/user';
|
|
|
import { UserForm, UserQuery, UserVO } from '@/api/system/user/types';
|
|
|
+import { deleteData, getTableList } from '@/api/PreventionResponsible/index';
|
|
|
import { DeptVO } from '@/api/system/dept/types';
|
|
|
import { RoleVO } from '@/api/system/role/types';
|
|
|
import { PostQuery, PostVO } from '@/api/system/post/types';
|
|
@@ -86,6 +113,9 @@ import { treeselect } from '@/api/system/dept';
|
|
|
import { globalHeaders } from '@/utils/request';
|
|
|
import { to } from 'await-to-js';
|
|
|
import { optionselect } from '@/api/system/post';
|
|
|
+import detail from '@/views/setting/PreventionResponsible/detail.vue';
|
|
|
+import { reactive, ref } from 'vue';
|
|
|
+import { deleteMaterialRoot } from '@/api/comprehensiveGuarantee/materialReserveManagement/warehouseManagement';
|
|
|
|
|
|
const router = useRouter();
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
@@ -102,37 +132,20 @@ const deptOptions = ref<DeptVO[]>([]);
|
|
|
const initPassword = ref<string>('');
|
|
|
const postOptions = ref<PostVO[]>([]);
|
|
|
const roleOptions = ref<RoleVO[]>([]);
|
|
|
-/*** 用户导入参数 */
|
|
|
-const upload = reactive<ImportOption>({
|
|
|
- // 是否显示弹出层(用户导入)
|
|
|
- open: false,
|
|
|
- // 弹出层标题(用户导入)
|
|
|
- title: '',
|
|
|
- // 是否禁用上传
|
|
|
- isUploading: false,
|
|
|
- // 是否更新已经存在的用户数据
|
|
|
- updateSupport: 0,
|
|
|
- // 设置上传的请求头部
|
|
|
- headers: globalHeaders(),
|
|
|
- // 上传的地址
|
|
|
- url: import.meta.env.VITE_APP_BASE_API + '/system/user/importData'
|
|
|
-});
|
|
|
// 列显隐信息
|
|
|
const columns = ref<FieldOption[]>([
|
|
|
{ key: 0, label: `用户编号`, visible: false, children: [] },
|
|
|
- { key: 1, label: `用户名称`, visible: true, children: [] },
|
|
|
- { key: 2, label: `用户昵称`, visible: true, children: [] },
|
|
|
- { key: 3, label: `部门`, visible: true, children: [] },
|
|
|
- { key: 4, label: `手机号码`, visible: true, children: [] },
|
|
|
- { key: 5, label: `状态`, visible: true, children: [] },
|
|
|
- { key: 6, label: `创建时间`, visible: true, children: [] }
|
|
|
+ { key: 1, label: `姓名`, visible: true, children: [] },
|
|
|
+ { key: 2, label: `行政区划`, visible: true, children: [] },
|
|
|
+ { key: 3, label: `所属单位`, visible: true, children: [] },
|
|
|
+ { key: 4, label: `职务`, visible: true, children: [] },
|
|
|
+ { key: 5, label: `电话号码`, visible: true, children: [] },
|
|
|
+ { key: 6, label: `责任类型`, visible: true, children: [] }
|
|
|
]);
|
|
|
|
|
|
const deptTreeRef = ref<ElTreeInstance>();
|
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
|
const userFormRef = ref<ElFormInstance>();
|
|
|
-const uploadRef = ref<ElUploadInstance>();
|
|
|
-const formDialogRef = ref<ElDialogInstance>();
|
|
|
|
|
|
const dialog = reactive<DialogOption>({
|
|
|
visible: false,
|
|
@@ -140,30 +153,21 @@ const dialog = reactive<DialogOption>({
|
|
|
});
|
|
|
|
|
|
const initFormData: UserForm = {
|
|
|
- userId: undefined,
|
|
|
- deptId: undefined,
|
|
|
- userName: '',
|
|
|
- nickName: undefined,
|
|
|
- password: '',
|
|
|
- phonenumber: undefined,
|
|
|
- email: undefined,
|
|
|
- sex: undefined,
|
|
|
- status: '0',
|
|
|
- remark: '',
|
|
|
- postIds: [],
|
|
|
- roleIds: []
|
|
|
+ id: undefined,
|
|
|
+ name: '',
|
|
|
+ area_code: '',
|
|
|
+ unit_name: '',
|
|
|
+ position: '',
|
|
|
+ phone: '',
|
|
|
+ type_parent_list: []
|
|
|
};
|
|
|
|
|
|
const initData: PageData<UserForm, UserQuery> = {
|
|
|
form: { ...initFormData },
|
|
|
queryParams: {
|
|
|
- pageNum: 1,
|
|
|
+ page: 1,
|
|
|
pageSize: 10,
|
|
|
- userName: '',
|
|
|
- phonenumber: '',
|
|
|
- status: '',
|
|
|
- deptId: '',
|
|
|
- roleId: ''
|
|
|
+ Name: ''
|
|
|
},
|
|
|
rules: {
|
|
|
userName: [
|
|
@@ -231,10 +235,14 @@ const getTreeSelect = async () => {
|
|
|
/** 查询用户列表 */
|
|
|
const getList = async () => {
|
|
|
loading.value = true;
|
|
|
- const res = await api.listUser(proxy?.addDateRange(queryParams.value, dateRange.value));
|
|
|
- loading.value = false;
|
|
|
- userList.value = res.rows;
|
|
|
- total.value = res.total;
|
|
|
+ getTableList(queryParams.value)
|
|
|
+ .then((res) => {
|
|
|
+ userList.value = res.data;
|
|
|
+ total.value = res.total;
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ loading.value = false;
|
|
|
+ });
|
|
|
};
|
|
|
|
|
|
/** 节点单击事件 */
|
|
@@ -248,64 +256,48 @@ const handleQuery = () => {
|
|
|
queryParams.value.pageNum = 1;
|
|
|
getList();
|
|
|
};
|
|
|
+
|
|
|
/** 重置按钮操作 */
|
|
|
const resetQuery = () => {
|
|
|
- dateRange.value = ['', ''];
|
|
|
queryFormRef.value?.resetFields();
|
|
|
queryParams.value.pageNum = 1;
|
|
|
- queryParams.value.deptId = undefined;
|
|
|
deptTreeRef.value?.setCurrentKey(undefined);
|
|
|
handleQuery();
|
|
|
};
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
-const handleDelete = async (row?: UserVO) => {
|
|
|
- const userIds = row?.userId || ids.value;
|
|
|
- const [err] = await to(proxy?.$modal.confirm('是否确认删除用户编号为"' + userIds + '"的数据项?') as any);
|
|
|
- if (!err) {
|
|
|
- await api.delUser(userIds);
|
|
|
- await getList();
|
|
|
+const handleDelete = (row?: UserVO) => {
|
|
|
+ const userIds = row?.id || ids.value;
|
|
|
+ proxy?.$modal.confirm('是否确认删除用户编号为"' + userIds + '"的数据项?').then(() => {
|
|
|
+ deleteData(userIds);
|
|
|
+ getList();
|
|
|
proxy?.$modal.msgSuccess('删除成功');
|
|
|
- }
|
|
|
+ });
|
|
|
};
|
|
|
|
|
|
-/** 用户状态修改 */
|
|
|
-const handleStatusChange = async (row: UserVO) => {
|
|
|
- let text = row.status === '0' ? '启用' : '停用';
|
|
|
- try {
|
|
|
- await proxy?.$modal.confirm('确认要"' + text + '""' + row.userName + '"用户吗?');
|
|
|
- await api.changeUserStatus(row.userId, row.status);
|
|
|
- proxy?.$modal.msgSuccess(text + '成功');
|
|
|
- } catch (err) {
|
|
|
- row.status = row.status === '0' ? '1' : '0';
|
|
|
- }
|
|
|
+let detailState = reactive({
|
|
|
+ show: false,
|
|
|
+ id: ''
|
|
|
+});
|
|
|
+/** 查看详情按钮操作 */
|
|
|
+const handleView = async (row: UserVO) => {
|
|
|
+ detailState.show = true;
|
|
|
+ detailState.id = row.id;
|
|
|
};
|
|
|
-/** 跳转角色分配 */
|
|
|
-const handleAuthRole = (row: UserVO) => {
|
|
|
- const userId = row.userId;
|
|
|
- router.push('/system/user-auth/role/' + userId);
|
|
|
+const handledetailClose = () => {
|
|
|
+ detailState.show = false;
|
|
|
};
|
|
|
-
|
|
|
-/** 重置密码按钮操作 */
|
|
|
-const handleResetPwd = async (row: UserVO) => {
|
|
|
- const [err, res] = await to(
|
|
|
- ElMessageBox.prompt('请输入"' + row.userName + '"的新密码', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- closeOnClickModal: false,
|
|
|
- inputPattern: /^.{5,20}$/,
|
|
|
- inputErrorMessage: '用户密码长度必须介于 5 和 20 之间',
|
|
|
- inputValidator: (value) => {
|
|
|
- if (/<|>|"|'|\||\\/.test(value)) {
|
|
|
- return '不能包含非法字符:< > " \' \\\ |';
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- );
|
|
|
- if (!err && res) {
|
|
|
- await api.resetUserPwd(row.userId, res.value);
|
|
|
- proxy?.$modal.msgSuccess('修改成功,新密码是:' + res.value);
|
|
|
- }
|
|
|
+let addState = reactive({
|
|
|
+ show: false,
|
|
|
+ id: ''
|
|
|
+});
|
|
|
+// 新建责任人按钮操作
|
|
|
+const handleAddClose = () => {
|
|
|
+ addState.show = false;
|
|
|
+};
|
|
|
+const handleAdd = () => {
|
|
|
+ addState.show = true;
|
|
|
+ addState.id = row.id;
|
|
|
};
|
|
|
|
|
|
/** 选择条数 */
|
|
@@ -315,11 +307,6 @@ const handleSelectionChange = (selection: UserVO[]) => {
|
|
|
multiple.value = !selection.length;
|
|
|
};
|
|
|
|
|
|
-/** 导入按钮操作 */
|
|
|
-const handleImport = () => {
|
|
|
- upload.title = '用户导入';
|
|
|
- upload.open = true;
|
|
|
-};
|
|
|
/** 导出按钮操作 */
|
|
|
const handleExport = () => {
|
|
|
proxy?.download(
|
|
@@ -330,30 +317,6 @@ const handleExport = () => {
|
|
|
`user_${new Date().getTime()}.xlsx`
|
|
|
);
|
|
|
};
|
|
|
-/** 下载模板操作 */
|
|
|
-const importTemplate = () => {
|
|
|
- proxy?.download('system/user/importTemplate', {}, `user_template_${new Date().getTime()}.xlsx`);
|
|
|
-};
|
|
|
-
|
|
|
-/**文件上传中处理 */
|
|
|
-const handleFileUploadProgress = () => {
|
|
|
- upload.isUploading = true;
|
|
|
-};
|
|
|
-/** 文件上传成功处理 */
|
|
|
-const handleFileSuccess = (response: any, file: UploadFile) => {
|
|
|
- upload.open = false;
|
|
|
- upload.isUploading = false;
|
|
|
- uploadRef.value?.handleRemove(file);
|
|
|
- ElMessageBox.alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + '</div>', '导入结果', {
|
|
|
- dangerouslyUseHTMLString: true
|
|
|
- });
|
|
|
- getList();
|
|
|
-};
|
|
|
-
|
|
|
-/** 提交上传文件 */
|
|
|
-function submitFileForm() {
|
|
|
- uploadRef.value?.submit();
|
|
|
-}
|
|
|
|
|
|
/** 初始化部门数据 */
|
|
|
const initTreeData = async () => {
|
|
@@ -376,16 +339,16 @@ const cancel = () => {
|
|
|
};
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
-const handleAdd = async () => {
|
|
|
- reset();
|
|
|
- const { data } = await api.getUser();
|
|
|
- dialog.visible = true;
|
|
|
- dialog.title = '新增用户';
|
|
|
- await initTreeData();
|
|
|
- postOptions.value = data.posts;
|
|
|
- roleOptions.value = data.roles;
|
|
|
- form.value.password = initPassword.value.toString();
|
|
|
-};
|
|
|
+// const handleAdd = async () => {
|
|
|
+// reset();
|
|
|
+// const { data } = await api.getUser();
|
|
|
+// dialog.visible = true;
|
|
|
+// dialog.title = '新增用户';
|
|
|
+// await initTreeData();
|
|
|
+// postOptions.value = data.posts;
|
|
|
+// roleOptions.value = data.roles;
|
|
|
+// // form.value.password = initPassword.value.toString();
|
|
|
+// };
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
const handleUpdate = async (row?: UserForm) => {
|
|
@@ -402,27 +365,6 @@ const handleUpdate = async (row?: UserForm) => {
|
|
|
form.value.roleIds = data.roleIds;
|
|
|
form.value.password = '';
|
|
|
};
|
|
|
-
|
|
|
-/** 提交按钮 */
|
|
|
-const submitForm = () => {
|
|
|
- userFormRef.value?.validate(async (valid: boolean) => {
|
|
|
- if (valid) {
|
|
|
- form.value.userId ? await api.updateUser(form.value) : await api.addUser(form.value);
|
|
|
- proxy?.$modal.msgSuccess('操作成功');
|
|
|
- dialog.visible = false;
|
|
|
- await getList();
|
|
|
- }
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
-/**
|
|
|
- * 关闭用户弹窗
|
|
|
- */
|
|
|
-const closeDialog = () => {
|
|
|
- dialog.visible = false;
|
|
|
- resetForm();
|
|
|
-};
|
|
|
-
|
|
|
/**
|
|
|
* 重置表单
|
|
|
*/
|