|
@@ -0,0 +1,185 @@
|
|
|
|
+<template>
|
|
|
|
+ <div id="goods">
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col
|
|
|
|
+ :span="24"
|
|
|
|
+ class="main animate__animated animate__backInRight"
|
|
|
|
+ v-loading="loadings"
|
|
|
|
+ element-loading-text="拼命加载中"
|
|
|
|
+ element-loading-spinner="el-icon-loading"
|
|
|
|
+ >
|
|
|
|
+ <span v-if="view === 'list'">
|
|
|
|
+ <el-col :span="24" class="one"> <span>团长管理</span> </el-col>
|
|
|
|
+ <data-search :fields="searchFields" v-model="searchInfo" @query="search">
|
|
|
|
+ <template #source>
|
|
|
|
+ <el-option v-for="i in statusList" :key="i.label" :label="i.label" :value="i.value"></el-option>
|
|
|
|
+ </template>
|
|
|
|
+ </data-search>
|
|
|
|
+ <el-col :span="24" class="two">
|
|
|
|
+ <data-table ref="dataTable" :fields="fields" :opera="opera" :data="list" :total="total" @query="search" @view="toView" @exam="toExam"></data-table>
|
|
|
|
+ </el-col>
|
|
|
|
+ </span>
|
|
|
|
+ <detail v-if="view === 'info'" :id="id" @goBack="toBack"></detail>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <e-dialog :dialog="dialog" @toClose="toClose">
|
|
|
|
+ <template v-slot:info>
|
|
|
|
+ <data-form :fields="infoFields" :rules="rules" v-model="form" labelWidth="auto" @save="toSave">
|
|
|
|
+ <template #status>
|
|
|
|
+ <el-option v-for="i in statusList" :key="i.value" :label="i.label" :value="i.value"></el-option>
|
|
|
|
+ </template>
|
|
|
|
+ </data-form>
|
|
|
|
+ </template>
|
|
|
|
+ </e-dialog>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+const _ = require('lodash');
|
|
|
|
+import { mapState, createNamespacedHelpers } from 'vuex';
|
|
|
|
+const { mapActions: userleader } = createNamespacedHelpers('userleader');
|
|
|
|
+const { mapActions: dictData } = createNamespacedHelpers('dictData'); // 字典
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: 'index',
|
|
|
|
+ props: {},
|
|
|
|
+ components: {
|
|
|
|
+ detail: () => import('./detail.vue'),
|
|
|
|
+ },
|
|
|
|
+ data: function () {
|
|
|
|
+ return {
|
|
|
|
+ loadings: true,
|
|
|
|
+ loading: false,
|
|
|
|
+ view: 'list',
|
|
|
|
+ fields: [
|
|
|
|
+ { label: 'openid', model: 'openid' },
|
|
|
|
+ { label: '姓名', model: 'name' },
|
|
|
|
+ { label: '身份证号', model: 'card' },
|
|
|
|
+ { label: '手机号', model: 'phone' },
|
|
|
|
+ { label: '审核结果', model: 'cause' },
|
|
|
|
+ {
|
|
|
|
+ label: '状态',
|
|
|
|
+ model: 'status',
|
|
|
|
+ format: (i) => {
|
|
|
|
+ let data = this.statusList.find((f) => f.value == i);
|
|
|
|
+ if (data) return data.label;
|
|
|
|
+ else return '暂无';
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ opera: [
|
|
|
|
+ { label: '查看', method: 'view' },
|
|
|
|
+ { label: '审核', method: 'exam', type: 'warning', display: (i) => i.status == '0' },
|
|
|
|
+ ],
|
|
|
|
+ searchFields: [
|
|
|
|
+ { label: '姓名', model: 'name' },
|
|
|
|
+ { label: '身份证号', model: 'card' },
|
|
|
|
+ { label: '手机号', model: 'phone' },
|
|
|
|
+ { label: '状态', model: 'status', type: 'select' },
|
|
|
|
+ ],
|
|
|
|
+ searchInfo: {},
|
|
|
|
+ list: [],
|
|
|
|
+ total: 0,
|
|
|
|
+ id: '',
|
|
|
|
+ // 审核
|
|
|
|
+ statusList: [],
|
|
|
|
+ // 弹框
|
|
|
|
+ dialog: { title: '信息管理', show: false, type: '1' },
|
|
|
|
+ form: {},
|
|
|
|
+ // info部分
|
|
|
|
+ infoFields: [
|
|
|
|
+ { label: '审核状态', model: 'status', type: 'select' },
|
|
|
|
+ { label: '审核结果', model: 'cause', type: 'textarea' },
|
|
|
|
+ ],
|
|
|
|
+
|
|
|
|
+ rules: {
|
|
|
|
+ status: [{ required: true, message: '请选择审核状态', trigger: 'change' }],
|
|
|
|
+ cause: [{ required: true, message: '请输入审核原因', trigger: 'blur' }],
|
|
|
|
+ },
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ this.searchOthers();
|
|
|
|
+ this.search();
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ ...dictData({ dictQuery: 'query' }),
|
|
|
|
+ ...userleader(['query', 'delete', 'fetch', 'update', 'create']),
|
|
|
|
+
|
|
|
|
+ // 查询
|
|
|
|
+ async search({ skip = 0, limit = this.$limit, ...others } = {}) {
|
|
|
|
+ let query = { skip, limit, ...others };
|
|
|
|
+ if (Object.keys(this.searchInfo).length > 0) query = { ...query, ...this.searchInfo };
|
|
|
|
+ const res = await this.query(query);
|
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
|
+ this.$set(this, `list`, res.data);
|
|
|
|
+ this.$set(this, `total`, res.total);
|
|
|
|
+ }
|
|
|
|
+ this.loadings = false;
|
|
|
|
+ },
|
|
|
|
+ // 查看
|
|
|
|
+ async toView({ data }) {
|
|
|
|
+ this.$set(this, `id`, data._id);
|
|
|
|
+ this.$set(this, `view`, 'info');
|
|
|
|
+ },
|
|
|
|
+ // 审核
|
|
|
|
+ async toExam({ data }) {
|
|
|
|
+ const res = await this.fetch(data.id);
|
|
|
|
+ if (this.$checkRes(res)) this.$set(this, `form`, res.data);
|
|
|
|
+ this.dialog = { title: '信息管理', show: true, type: '1' };
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 保存
|
|
|
|
+ async toSave({ data }) {
|
|
|
|
+ let res = await this.update(data);
|
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
|
+ this.$message({ type: `success`, message: `审核成功` });
|
|
|
|
+ this.toClose();
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 关闭
|
|
|
|
+ toClose() {
|
|
|
|
+ this.form = {};
|
|
|
|
+ this.dialog = { title: '信息管理', show: false, type: '1' };
|
|
|
|
+ this.search();
|
|
|
|
+ },
|
|
|
|
+ // 执行返回
|
|
|
|
+ toBack() {
|
|
|
|
+ this.view = 'list';
|
|
|
|
+ },
|
|
|
|
+ // 查询其他信息
|
|
|
|
+ async searchOthers() {
|
|
|
|
+ let res;
|
|
|
|
+ // 信息来源
|
|
|
|
+ res = await this.dictQuery({ code: 'exam_status' });
|
|
|
|
+ if (this.$checkRes(res)) this.$set(this, `statusList`, res.data);
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ computed: {
|
|
|
|
+ ...mapState(['user']),
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style lang="less" scoped>
|
|
|
|
+.main {
|
|
|
|
+ .one {
|
|
|
|
+ margin: 0 0 10px 0;
|
|
|
|
+
|
|
|
|
+ span:nth-child(1) {
|
|
|
|
+ font-size: 20px;
|
|
|
|
+ font-weight: 700;
|
|
|
|
+ margin-right: 10px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .two {
|
|
|
|
+ margin: 20px 0 10px 0;
|
|
|
|
+ }
|
|
|
|
+ .thr {
|
|
|
|
+ margin: 0 0 10px 0;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+.el-col {
|
|
|
|
+ margin: 10px 0;
|
|
|
|
+}
|
|
|
|
+</style>
|