From b4fc5d970fcdefd4f72b269ac66b343b34c33e99 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Fri, 24 Apr 2026 17:06:36 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=88=97=E8=A1=A8=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/trials/trials-list/index.vue | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/views/trials/trials-list/index.vue b/src/views/trials/trials-list/index.vue index b2005121..0ec956a0 100644 --- a/src/views/trials/trials-list/index.vue +++ b/src/views/trials/trials-list/index.vue @@ -17,11 +17,17 @@ - - + + + + + + + + @@ -347,6 +353,7 @@ import { import { getTrialList_Export } from '@/api/export' import store from '@/store' import { mapGetters } from 'vuex' +import { getUser } from '@/api/admin' import BaseContainer from '@/components/BaseContainer' import Pagination from '@/components/Pagination' import TrialForm from './components/TrialForm' @@ -372,6 +379,7 @@ const searchDataDefault = () => { PageSize: 20, Asc: false, SortField: '', + TrialStatusStr: null, CriterionType: null, PM_EMail: null, } @@ -410,6 +418,7 @@ export default { { value: 'III' }, { value: 'IV' }, ], + IsZhiZhun: false, expeditedOption: this.$d.TrialExpeditedState, beginPickerOption: { disabledDate: (time) => { @@ -439,6 +448,7 @@ export default { }, created() { this.initPage() + this.getUser() }, mounted() { this.$EventBus.$on('reload', (data) => { @@ -446,6 +456,11 @@ export default { }) }, methods: { + getUser() { + getUser().then(res => { + this.IsZhiZhun = res.Result.IsZhiZhun + }) + }, initPage() { this.getList() store.dispatch('global/getSponsorList')