123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- <template>
- <div id="index">
- <el-row>
- <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
- <el-col :span="24" class="one">
- <cSearch :is_title="false" :is_search="true" :fields="fields" @search="toSearch">
- <template #status>
- <el-option v-for="i in statusList" :key="i.value" :label="i.label" :value="i.value"></el-option>
- </template>
- </cSearch>
- </el-col>
- <el-col :span="24" class="two">
- <cTable :fields="fields" :opera="opera" :list="list" @query="search" :total="total" @exam="toExam" @edit="toEdit" @del="toDel"> </cTable>
- </el-col>
- </el-col>
- </el-row>
- <cDialog :dialog="dialog" @toClose="toClose">
- <template v-slot:info>
- <el-col :span="24" class="dialog_one" v-if="dialog.type == '1'">
- <cForm :span="24" :fields="formFields" :form="form" :rules="{}" @save="toSave" label-width="auto">
- <template #status>
- <el-option v-for="i in statusList" :key="i.value" :label="i.label" :value="i.value"></el-option>
- </template>
- </cForm>
- </el-col>
- </template>
- </cDialog>
- </div>
- </template>
- <script setup lang="ts">
- // 基础
- import type { Ref } from 'vue';
- import { onMounted, ref, getCurrentInstance } from 'vue';
- import { ElMessage } from 'element-plus';
- import { useRouter } from 'vue-router';
- // 接口
- import { AdminStore } from '@/stores/users/admin';
- import { RoleStore } from '@/stores/basic/role'; // 角色
- import { DictDataStore } from '@/stores/basic/dictData'; // 字典表
- import type { IQueryResult } from '@/util/types.util';
- const adminAxios = AdminStore();
- const dictAxios = DictDataStore();
- const roleAxios = RoleStore();
- const { proxy } = getCurrentInstance() as any;
- // 路由
- const router = useRouter();
- // 加载中
- const loading: Ref<any> = ref(false);
- let list: Ref<any> = ref([]);
- let total: Ref<number> = ref(0);
- let skip = 0;
- let limit: number = proxy.$limit;
- let fields: Ref<any[]> = ref([
- { label: '账号', model: 'account', isSearch: true },
- { label: '昵称', model: 'name', isSearch: true },
- { label: '手机号', model: 'phone', isSearch: true },
- { label: '角色', model: 'role', format: (i: any) => getDict(i, roleList.value, 'role') },
- { label: '状态', model: 'status', format: (i: any) => getDict(i, statusList.value, 'status'), type: 'select', isSearch: true }
- ]);
- // 操作
- let opera: Ref<any[]> = ref([
- { label: '审核', method: 'exam', type: 'warning', display: (i: any) => i.status == '0' },
- { label: '修改', method: 'edit' },
- { label: '删除', method: 'del', confirm: true, type: 'danger' }
- ]);
- // 查询数据
- let searchForm: Ref<any> = ref({});
- // 字典表
- const roleList: Ref<any> = ref([]);
- const statusList: Ref<any> = ref([]);
- // 弹框
- const dialog: Ref<any> = ref({ title: '审核管理', show: false, type: '1' });
- const form: Ref<any> = ref({ file: [] });
- const formFields: Ref<any> = ref([{ label: '状态', model: 'status', type: 'select' }]);
- // 请求
- onMounted(async () => {
- loading.value = true;
- await searchOther();
- await search({ skip, limit });
- loading.value = false;
- });
- const search = async (e: { skip: number; limit: number }) => {
- const info = { skip: e.skip, limit: e.limit, ...searchForm.value };
- const res: IQueryResult = await adminAxios.query(info);
- if (res.errcode == '0') {
- list.value = res.data;
- total.value = res.total;
- }
- };
- const toSearch = (query: any) => {
- searchForm.value = query;
- search({ skip, limit });
- };
- const getDict = (e: any, model: any, type: any) => {
- if (type == 'role') {
- let data: any = model.find((i: any) => i._id == e);
- if (data) return data.name;
- else return '暂无';
- } else if (type == 'status') {
- let data: any = model.find((i: any) => i.value == e);
- if (data) return data.label;
- else return '暂无';
- }
- };
- // 审核
- const toExam = async (data: any) => {
- let res: IQueryResult = await adminAxios.fetch(data._id);
- if (res.errcode == '0') {
- form.value = res.data;
- dialog.value = { title: '审核管理', show: true, type: '1' };
- }
- };
- // 提交保存
- const toSave = async (data: any) => {
- let res: IQueryResult = await adminAxios.update(data);
- if (res.errcode == '0') {
- ElMessage({ message: '信息审核成功', type: 'success' });
- toClose();
- } else {
- ElMessage({ message: `${res.errmsg}`, type: 'error' });
- }
- };
- // 修改
- const toEdit = (data: any) => {
- router.push({ path: '/admin/detail', query: { id: data._id } });
- };
- // 删除
- const toDel = async (data: any) => {
- let res: IQueryResult = await adminAxios.del(data._id);
- if (res.errcode == 0) {
- ElMessage({ type: `success`, message: `刪除信息成功` });
- search({ skip, limit });
- }
- };
- // 关闭弹框
- const toClose = () => {
- form.value = {};
- dialog.value = { show: false };
- search({ skip, limit });
- };
- // 查询其他信息
- const searchOther = async () => {
- let res: IQueryResult;
- // 角色
- res = await roleAxios.query({ is_use: '0' });
- if (res.errcode == '0') roleList.value = res.data;
- // 状态
- res = await dictAxios.query({ type: 'exam_status', is_use: '0' });
- if (res.errcode == '0') statusList.value = res.data;
- };
- </script>
- <style scoped lang="scss">
- .main {
- .two {
- margin: 0 0 10px 0;
- }
- }
- </style>
|