|
@@ -2,37 +2,166 @@
|
|
|
<div id="index">
|
|
|
<el-row>
|
|
|
<el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
|
|
|
- <el-col :span="24" class="one">系统首页</el-col>
|
|
|
+ <el-col :span="24" class="one">
|
|
|
+ <cSearch :is_title="false" :is_search="true" :fields="fields" @search="toSearch"> </cSearch>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="two">
|
|
|
+ <cTable :fields="fields" :opera="opera" :list="list" @query="search" :total="total" @view="toView" @exam="toExam" @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';
|
|
|
-// reactive,
|
|
|
import { onMounted, ref, getCurrentInstance } from 'vue';
|
|
|
+import { ElMessage } from 'element-plus';
|
|
|
+import { useRouter } from 'vue-router';
|
|
|
// 接口
|
|
|
-//import { TestStore } from '@common/src/stores/test';
|
|
|
-//import type { IQueryResult } from '@/util/types.util';
|
|
|
-//const testAxios = TestStore();
|
|
|
+import { TeamStore } from '@/stores/team/team';
|
|
|
+import { UserStore } from '@/stores/users/user';
|
|
|
+import { DictDataStore } from '@/stores/dict/dictData'; // 字典表
|
|
|
+import type { IQueryResult } from '@/util/types.util';
|
|
|
+const teamAxios = TeamStore();
|
|
|
+const userAxios = UserStore();
|
|
|
+const dictAxios = DictDataStore();
|
|
|
const { proxy } = getCurrentInstance() as any;
|
|
|
+// 路由
|
|
|
+const router = useRouter();
|
|
|
// 加载中
|
|
|
const loading: Ref<any> = ref(false);
|
|
|
-// 分页数据
|
|
|
-// const skip = 0;
|
|
|
-// const limit = proxy.limit;;
|
|
|
+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: 'administrator', format: (i: any) => getDict(i, 'administrator') },
|
|
|
+ { label: '团队名称', model: 'name', isSearch: true },
|
|
|
+ { label: '单位地址', model: 'address' },
|
|
|
+ { label: '手机号', model: 'phone', isSearch: true },
|
|
|
+ { label: '团队人数', model: 'number' },
|
|
|
+ { label: '成立时间', model: 'create_time' },
|
|
|
+ { label: '状态', model: 'status', format: (i: any) => getDict(i, 'status') }
|
|
|
+]);
|
|
|
+// 操作
|
|
|
+let opera: Ref<any[]> = ref([
|
|
|
+ { label: '查看', method: 'view', tpye: 'Info' },
|
|
|
+ { label: '审核', method: 'exam', type: 'warning' },
|
|
|
+ { label: '删除', method: 'del', confirm: true, type: 'danger' }
|
|
|
+]);
|
|
|
+// 查询数据
|
|
|
+let searchForm: Ref<any> = ref({});
|
|
|
+// 字典表
|
|
|
+const genderList: Ref<any> = ref([]);
|
|
|
+const typeList: Ref<any> = ref([]);
|
|
|
+const statusList: Ref<any> = ref([]);
|
|
|
+const userList: 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 search({ skip, limit });
|
|
|
+ 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, ...searchInfo.value };
|
|
|
-// const res: IQueryResult = await testAxios.query(info);
|
|
|
-// console.log(res);
|
|
|
-//};
|
|
|
+const search = async (e: { skip: number; limit: number }) => {
|
|
|
+ const info = { skip: e.skip, limit: e.limit, ...searchForm.value, status: '0' };
|
|
|
+ const res: IQueryResult = await teamAxios.query(info);
|
|
|
+ if (res.errcode == '0') {
|
|
|
+ list.value = res.data;
|
|
|
+ total.value = res.total;
|
|
|
+ }
|
|
|
+};
|
|
|
+const toSearch = (query) => {
|
|
|
+ searchForm.value = query;
|
|
|
+ search({ skip, limit });
|
|
|
+};
|
|
|
+const getDict = (e, model) => {
|
|
|
+ if (model == 'administrator') {
|
|
|
+ let data: any = userList.value.find((i: any) => i._id == e);
|
|
|
+ if (data) return data.name;
|
|
|
+ else return '暂无';
|
|
|
+ } else if (model == 'status') {
|
|
|
+ let data: any = statusList.value.find((i: any) => i.value == e);
|
|
|
+ if (data) return data.label;
|
|
|
+ else return '暂无';
|
|
|
+ }
|
|
|
+};
|
|
|
+// 查看
|
|
|
+const toView = (data) => {
|
|
|
+ router.push({ path: '/team/examine/detail', query: { id: data._id } });
|
|
|
+};
|
|
|
+// 审核
|
|
|
+const toExam = async (data) => {
|
|
|
+ let res: IQueryResult = await teamAxios.fetch(data.openid);
|
|
|
+ if (res.errcode == '0') {
|
|
|
+ form.value = res.data;
|
|
|
+ dialog.value = { title: '审核管理', show: true, type: '1' };
|
|
|
+ }
|
|
|
+};
|
|
|
+// 提交保存
|
|
|
+const toSave = async (data) => {
|
|
|
+ let res: IQueryResult = await teamAxios.update(data);
|
|
|
+ if (res.errcode == '0') {
|
|
|
+ ElMessage({ message: '信息审核成功', type: 'success' });
|
|
|
+ toClose();
|
|
|
+ } else {
|
|
|
+ ElMessage({ message: `${res.errmsg}`, type: 'error' });
|
|
|
+ }
|
|
|
+};
|
|
|
+// 删除
|
|
|
+const toDel = async (data: any) => {
|
|
|
+ let res: IQueryResult = await teamAxios.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 dictAxios.query({ type: 'gender' });
|
|
|
+ if (res.errcode == '0') genderList.value = res.data;
|
|
|
+ // 类别
|
|
|
+ res = await dictAxios.query({ type: 'type' });
|
|
|
+ if (res.errcode == '0') typeList.value = res.data;
|
|
|
+ // 状态
|
|
|
+ res = await dictAxios.query({ type: 'ststus' });
|
|
|
+ if (res.errcode == '0') statusList.value = res.data;
|
|
|
+ // 管理员
|
|
|
+ res = await userAxios.query({ status: '1' });
|
|
|
+ if (res.errcode == '0') userList.value = res.data;
|
|
|
+};
|
|
|
</script>
|
|
|
-<style scoped lang="scss"></style>
|
|
|
+<style scoped lang="scss">
|
|
|
+.main {
|
|
|
+ .two {
|
|
|
+ margin: 0 0 10px 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|