|
@@ -0,0 +1,334 @@
|
|
|
+<template>
|
|
|
+ <div id="index">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="24" class="main animate__animated animate__backInRight">
|
|
|
+ <el-col :span="24" class="one">
|
|
|
+ <component :is="partsSearch" :is_search="true" :fields="fields" @search="partSearch">
|
|
|
+ <template #status>
|
|
|
+ <el-option v-for="i in statusList" :key="i.model" :label="i.dict_label" :value="i.dict_value"></el-option>
|
|
|
+ </template>
|
|
|
+ </component>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="24" class="thr">
|
|
|
+ <component
|
|
|
+ :is="CTable"
|
|
|
+ :fields="fields"
|
|
|
+ :opera="opera"
|
|
|
+ :select="false"
|
|
|
+ :selected="selected"
|
|
|
+ @handleSelect="handleSelect"
|
|
|
+ @query="search"
|
|
|
+ :data="tableData"
|
|
|
+ :total="total"
|
|
|
+ @view="toView"
|
|
|
+ @exam="toExam"
|
|
|
+ >
|
|
|
+ </component>
|
|
|
+ </el-col>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <component :is="CDialog" :dialog="dialog" @handleClose="handleClose">
|
|
|
+ <template v-slot:info>
|
|
|
+ <component :is="CForm" :fields="infoFields" :rules="rules" :form="form" labelWidth="auto" @save="toSave">
|
|
|
+ <template #status>
|
|
|
+ <el-option v-for="(item, index) in statusList" :key="index" :label="item.dict_label" :value="item.dict_value"></el-option>
|
|
|
+ </template>
|
|
|
+ </component>
|
|
|
+ </template>
|
|
|
+ </component>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script setup lang="ts">
|
|
|
+import store from '@/stores/counter';
|
|
|
+import moment from 'moment';
|
|
|
+// #region 组件
|
|
|
+import partsSearch from '@/components/c-search.vue';
|
|
|
+import CTable from '@/components/c-table.vue';
|
|
|
+import CForm from '@/components/c-form.vue';
|
|
|
+import CDialog from '@/components/c-dialog.vue';
|
|
|
+// #endregion
|
|
|
+import type { Ref } from 'vue';
|
|
|
+import { ref, onMounted, getCurrentInstance, reactive } from 'vue';
|
|
|
+import type { FormRules } from 'element-plus';
|
|
|
+import { ElMessage } from 'element-plus';
|
|
|
+import { useRouter } from 'vue-router';
|
|
|
+// #region 接口
|
|
|
+import { TecholsupportStore } from '@common/src/stores/studio/supplydemand/techolsupport'; // 列表 // 列表
|
|
|
+import { DictDataStore } from '@common/src/stores/users/sysdictdata'; // 字典表
|
|
|
+import { MessageStore } from '@common/src/stores/studio/other/message'; // 系统消息
|
|
|
+import type { IQueryResult } from '@/util/types.util';
|
|
|
+const techolsupport = TecholsupportStore();
|
|
|
+const sysdictdata = DictDataStore();
|
|
|
+const message = MessageStore();
|
|
|
+const { proxy } = getCurrentInstance() as any;
|
|
|
+const router = useRouter();
|
|
|
+// #endregion
|
|
|
+// 列表数据
|
|
|
+let tableData: Ref<any[]> = ref([]);
|
|
|
+// 列表
|
|
|
+let fields: Ref<any[]> = ref([
|
|
|
+ { label: '序号', options: { type: 'index' } },
|
|
|
+ { label: '标题', model: 'title', isSearch: true },
|
|
|
+ { label: '发布时间', model: 'date' },
|
|
|
+ { label: '科学家姓名', model: 'scientist_name', isSearch: true },
|
|
|
+ { label: '联系方式', model: 'phone', isSearch: true },
|
|
|
+ { label: '单位名称', model: 'company_name', isSearch: true },
|
|
|
+ {
|
|
|
+ label: '审核状态',
|
|
|
+ model: 'status',
|
|
|
+ type: 'select',
|
|
|
+ format: (i) => {
|
|
|
+ let data = statusList.value.find((r) => r.dict_value == i);
|
|
|
+ if (data) return data.dict_label;
|
|
|
+ },
|
|
|
+ isSearch: true,
|
|
|
+ },
|
|
|
+]);
|
|
|
+// 操作
|
|
|
+let opera: Ref<any[]> = ref([
|
|
|
+ { label: '详情', method: 'view' },
|
|
|
+ { label: '审核', method: 'exam', type: 'warning', display: (i) => i.status == '0' },
|
|
|
+]);
|
|
|
+// 多选
|
|
|
+let selected: Ref<any[]> = ref([]);
|
|
|
+// 总数
|
|
|
+let total: Ref<number> = ref(0);
|
|
|
+let skip = 0;
|
|
|
+let limit: number = proxy.$limit;
|
|
|
+// 查询数据
|
|
|
+let searchForm: Ref<{}> = ref({});
|
|
|
+// 弹框
|
|
|
+const dialog: Ref<{ type: string; show: boolean; title: string }> = ref({ type: '1', show: false, title: '信息管理' });
|
|
|
+// 审核表单
|
|
|
+let form: Ref<{}> = ref({});
|
|
|
+// 必填项
|
|
|
+const rules = reactive<FormRules>({
|
|
|
+ status: [{ required: true, message: '请选择审核状态', trigger: 'change' }],
|
|
|
+ remark: [{ required: true, message: '请输入审核意见', trigger: 'blur' }],
|
|
|
+});
|
|
|
+// 表单
|
|
|
+let infoFields: Ref<any[]> = ref([
|
|
|
+ { label: '审核状态', model: 'status', type: 'select' },
|
|
|
+ { label: '审核意见', model: 'remark', type: 'textarea' },
|
|
|
+]);
|
|
|
+// 状态
|
|
|
+let statusList: Ref<any[]> = ref([]);
|
|
|
+onMounted(async () => {
|
|
|
+ await searchOther();
|
|
|
+ await search({ skip, limit });
|
|
|
+});
|
|
|
+// 查询
|
|
|
+const search = async (e: { skip: number; limit: number }) => {
|
|
|
+ const { skip, limit } = e;
|
|
|
+ let info = { limit: limit, skip: skip, ...searchForm.value, is_use: 'Y' };
|
|
|
+ const res: IQueryResult = await techolsupport.query(info);
|
|
|
+ tableData.value = res.data as any[];
|
|
|
+ total.value = res.total;
|
|
|
+};
|
|
|
+// 查询
|
|
|
+const partSearch = (form: { [x: string]: any }) => {
|
|
|
+ searchForm.value = form;
|
|
|
+ search({ skip, limit });
|
|
|
+};
|
|
|
+
|
|
|
+// 修改
|
|
|
+const toView = async (data: { _id: string }) => {
|
|
|
+ router.push({ path: '/center/supplydemand/support/info', query: { id: data._id } });
|
|
|
+};
|
|
|
+// 审核
|
|
|
+const toExam = (data: object) => {
|
|
|
+ form.value = data;
|
|
|
+ dialog.value = { title: '信息管理', show: true, type: '1' };
|
|
|
+};
|
|
|
+// 审核保存
|
|
|
+const toSave = async (data: { _id: string; status: string; user_id: string; scientist_name: string; phone: string; title: string; remark: string }) => {
|
|
|
+ let obj = { id: data._id, status: data.status };
|
|
|
+ let res: IQueryResult = await techolsupport.update(obj);
|
|
|
+ if (res.errcode == 0) {
|
|
|
+ ElMessage({ type: 'success', message: '维护信息成功' });
|
|
|
+ createMess(data);
|
|
|
+ } else ElMessage({ type: 'warning', message: `${res.errmsg}` });
|
|
|
+};
|
|
|
+// // 发送系统消息
|
|
|
+const createMess = async (data: { user_id: string; scientist_name: string; phone: string; title: string; status: string; remark: string }) => {
|
|
|
+ let user = store.state.user;
|
|
|
+ let obj = {
|
|
|
+ user_id: user._id,
|
|
|
+ title: '审核通知',
|
|
|
+ send_time: moment().format('YYYY-MM-DD HH:mm:ss'),
|
|
|
+ type: '3',
|
|
|
+ user: [{ id: data.user_id, name: data.scientist_name, phone: data.phone }],
|
|
|
+ content: '您好,您所发布的《' + data.title + '》的申请,' + `${data.status == '1' ? '已通过审核' : '未通过审核'}` + ',原因:' + data.remark,
|
|
|
+ };
|
|
|
+ let arr = await message.create(obj);
|
|
|
+ if (arr.errcode == 0) {
|
|
|
+ ElMessage({ type: 'success', message: '系统信息发送成功' });
|
|
|
+ handleClose();
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+// 关闭弹窗
|
|
|
+const handleClose = () => {
|
|
|
+ form.value = {};
|
|
|
+ search({ skip, limit });
|
|
|
+ dialog.value = { title: '信息管理', show: false, type: '' };
|
|
|
+};
|
|
|
+// 选择
|
|
|
+const handleSelect = () => {};
|
|
|
+// 查询其他信息
|
|
|
+const searchOther = async () => {
|
|
|
+ // 字典表---审核状态
|
|
|
+ const p1: IQueryResult = await sysdictdata.query({ dict_type: 'studio_status' });
|
|
|
+ statusList.value = p1.data as [];
|
|
|
+};
|
|
|
+</script>
|
|
|
+<!-- <script>
|
|
|
+import { mapState, createNamespacedHelpers } from 'vuex';
|
|
|
+const { mapActions } = createNamespacedHelpers('techolsupport');
|
|
|
+const { mapActions: sysdictdata } = createNamespacedHelpers('sysdictdata');
|
|
|
+const { mapActions: message } = createNamespacedHelpers('message');
|
|
|
+const moment = require('moment');
|
|
|
+export default {
|
|
|
+ name: 'index',
|
|
|
+ props: {},
|
|
|
+ components: {},
|
|
|
+ data: function () {
|
|
|
+ return {
|
|
|
+ // 查询
|
|
|
+ searchInfo: {},
|
|
|
+ list: [],
|
|
|
+ total: 0,
|
|
|
+ fields: [
|
|
|
+ { label: '序号', options: { type: 'index' } },
|
|
|
+ { label: '标题', model: 'title', isSearch: true },
|
|
|
+ { label: '发布时间', model: 'date' },
|
|
|
+ { label: '科学家姓名', model: 'scientist_name', isSearch: true },
|
|
|
+ { label: '联系方式', model: 'phone', isSearch: true },
|
|
|
+ { label: '单位名称', model: 'company_name', isSearch: true },
|
|
|
+ {
|
|
|
+ label: '审核状态',
|
|
|
+ model: 'status',
|
|
|
+ type: 'select',
|
|
|
+ format: (i) => {
|
|
|
+ let data = this.statusList.find((r) => r.dict_value == i);
|
|
|
+ if (data) return data.dict_label;
|
|
|
+ },
|
|
|
+ isSearch: true,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ opera: [
|
|
|
+ { label: '对接信息', method: 'dock', display: (i) => i.dock_status == '1' || i.dock_status == '2' },
|
|
|
+ { label: '详情', method: 'view' },
|
|
|
+ { label: '审核', method: 'exam', type: 'warning', display: (i) => i.status == '0' },
|
|
|
+ ],
|
|
|
+ // 是否啓用
|
|
|
+ isuseList: [],
|
|
|
+ // 审核状态
|
|
|
+ statusList: [],
|
|
|
+ dialog: { title: '信息审核', show: false, type: '1' },
|
|
|
+ form: {},
|
|
|
+ rules: {
|
|
|
+ status: [{ required: true, message: '请选择审核状态', trigger: 'change' }],
|
|
|
+ remark: [{ required: true, message: '请输入审核意见', trigger: 'blur' }],
|
|
|
+ },
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.searchOther();
|
|
|
+ this.search();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ ...mapActions(['query', 'update', 'delete']),
|
|
|
+ ...sysdictdata({ dQuery: 'query' }),
|
|
|
+ ...message({ mCreate: 'create' }),
|
|
|
+ async search({ skip = 0, limit = this.$limit, ...info } = {}) {
|
|
|
+ info.is_use = 'Y';
|
|
|
+ let res = await this.query({ skip, limit, ...info, ...this.searchInfo });
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
+ this.$set(this, `list`, res.data);
|
|
|
+ this.$set(this, `total`, res.total);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ btSearch(query) {
|
|
|
+ this.$set(this, `searchInfo`, query);
|
|
|
+ this.search();
|
|
|
+ },
|
|
|
+ // 对接信息
|
|
|
+ toDock({ data }) {
|
|
|
+ this.$router.push({ path: '/center/supplydemand/support/dock', query: { id: data.id } });
|
|
|
+ },
|
|
|
+ // 详细信息
|
|
|
+ toView({ data }) {
|
|
|
+ this.$router.push({ path: '/center/supplydemand/support/info', query: { id: data.id } });
|
|
|
+ },
|
|
|
+ // 信息审核
|
|
|
+ toExam({ data }) {
|
|
|
+ this.$set(this, `form`, data);
|
|
|
+ this.dialog = { title: '信息审核', show: true, type: '1' };
|
|
|
+ },
|
|
|
+ // 提交审核
|
|
|
+ toSubmit(formName) {
|
|
|
+ this.$refs[formName].validate(async (valid) => {
|
|
|
+ if (valid) {
|
|
|
+ let data = this.form;
|
|
|
+ let obj = { id: data.id, status: data.status };
|
|
|
+ let res = await this.update(obj);
|
|
|
+ if (this.$checkRes(res, `信息审核成功`, res.errmsg)) this.createMess(data);
|
|
|
+ } else {
|
|
|
+ console.log('error submit!!');
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 发送系统消息
|
|
|
+ async createMess(data) {
|
|
|
+ let obj = {
|
|
|
+ user_id: this.user._id,
|
|
|
+ title: '审核通知',
|
|
|
+ send_time: moment().format('YYYY-MM-DD HH:mm:ss'),
|
|
|
+ type: '3',
|
|
|
+ user: [{ id: data.user_id, name: data.scientist_name, phone: data.phone }],
|
|
|
+ content: '您好,您所发布的《' + data.title + '》的申请,' + `${data.status == '1' ? '已通过审核' : '未通过审核'}` + ',原因:' + data.remark,
|
|
|
+ };
|
|
|
+ let arr = await this.mCreate(obj);
|
|
|
+ if (this.$checkRes(arr, `系统信息发送成功`, arr.errmsg)) this.toClose();
|
|
|
+ },
|
|
|
+ // 关闭弹框
|
|
|
+ toClose() {
|
|
|
+ this.form = {};
|
|
|
+ this.dialog = { title: '信息审核', show: false, type: '1' };
|
|
|
+ this.searchOther();
|
|
|
+ this.search();
|
|
|
+ },
|
|
|
+ // 查詢其他信息
|
|
|
+ async searchOther() {
|
|
|
+ let res;
|
|
|
+ // 是否启用
|
|
|
+ res = await this.dQuery({ dict_type: 'sys_yes_no' });
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
+ this.$set(this, `isuseList`, res.data);
|
|
|
+ }
|
|
|
+ // 审核状态
|
|
|
+ res = await this.dQuery({ dict_type: 'studio_status' });
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
+ this.$set(this, `statusList`, res.data);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ ...mapState(['user']),
|
|
|
+ },
|
|
|
+ metaInfo() {
|
|
|
+ return { title: this.$route.meta.title };
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ test: {
|
|
|
+ deep: true,
|
|
|
+ immediate: true,
|
|
|
+ handler(val) {},
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script> -->
|
|
|
+
|
|
|
+<style lang="scss" scoped></style>
|