GuLiMmo
2023-12-20 699dd0c1cb32a07f08f1378235943476d5f2f978
部分问题修改
3 files modified
34 ■■■■ changed files
src/views/assessment/assessmentTask.vue 2 ●●● patch | view | raw | blame | history
src/views/employee/list.vue 25 ●●●● patch | view | raw | blame | history
src/views/evaluate/evaluateTask.vue 7 ●●●● patch | view | raw | blame | history
src/views/assessment/assessmentTask.vue
@@ -226,7 +226,7 @@
    },
    searchReset() {
      this.query = {};
      this.onLoad(this.page);
      this.onLoad(this.page, { type: this.defaultTaskType });
    },
    searchChange(params, done) {
      params.type = this.defaultTaskType
src/views/employee/list.vue
@@ -17,7 +17,6 @@
  
<script>
import { getList, add, update, remove } from "@/api/system/user.js";
import option from "@/option/assessmentTask/assessmentTask";
import { mapGetters } from "vuex";
import { exportBlob } from "@/api/common";
import { getToken } from '@/utils/auth';
@@ -153,18 +152,18 @@
                            },
                        ],
                    },
                    {
                        label: "人员类型",
                        type: "input"
                    },
                    {
                        label: "合伙类型",
                        type: "input"
                    },
                    {
                        label: '企点(数值)',
                        type: 'input',
                    },
                    // {
                    //     label: "人员类型",
                    //     type: "input"
                    // },
                    // {
                    //     label: "合伙类型",
                    //     type: "input"
                    // },
                    // {
                    //     label: '企点(数值)',
                    //     type: 'input',
                    // },
                    // {
                    //     label: "创建人",
                    //     prop: "createUser",
src/views/evaluate/evaluateTask.vue
@@ -260,10 +260,13 @@
    },
    searchReset() {
      this.query = {};
      this.onLoad(this.page);
      this.onLoad(this.page, { type: this.defaultTaskType });
    },
    searchChange(params, done) {
      this.query = params;
      this.query = {
        ...params,
        type: this.defaultTaskType,
      };
      this.page.currentPage = 1;
      this.onLoad(this.page, params);
      done();