Compare commits
No commits in common. "b4fc5d970fcdefd4f72b269ac66b343b34c33e99" and "38ea9ddb0bcb61a51f524f38deb51e7e93182ce2" have entirely different histories.
b4fc5d970f
...
38ea9ddb0b
|
|
@ -152,12 +152,7 @@
|
|||
<!-- {{ $t('login:title:system_title_about') }} -->
|
||||
<svg-icon icon-class="login-logo" style="width: 250px; height: 71px" />
|
||||
</p>
|
||||
<p style="margin-bottom: 0px" v-else>
|
||||
<!-- {{ $t('login:title:system_title_about') }} -->
|
||||
<img src="@/assets/system.png" alt=""
|
||||
:style="{ width: isEN ? '180px' : '200px', height: isEN ? '60px' : '65px' }">
|
||||
<p style="margin-bottom: 0px">{{ $t('login:title:system') }}</p>
|
||||
</p>
|
||||
<p style="margin-bottom: 0px" v-else>{{ $t('login:title:system') }}</p>
|
||||
<p style="margin-bottom: 20px; margin-top: 0">
|
||||
V{{ $version.IsEnv_US ? $version.Version_US : $version.Version }}
|
||||
</p>
|
||||
|
|
@ -172,12 +167,12 @@
|
|||
Copyright © {{ new Date().getFullYear() }} Shanghai Extensive Imaging
|
||||
Inc.
|
||||
</p>
|
||||
<!-- <div style="margin-bottom: 20px" v-if="NODE_ENV === 'usa'">
|
||||
<div style="margin-bottom: 20px" v-if="NODE_ENV === 'usa'">
|
||||
<img style="width: 180px" src="@/assets/zzlogo-usa.png" alt="" />
|
||||
</div>
|
||||
<div style="margin-bottom: 20px" v-else>
|
||||
<img style="width: 180px" src="@/assets/zzlogo2.png" alt="" />
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" size="mini" @click="aboutVisible = false">
|
||||
|
|
|
|||
|
|
@ -17,17 +17,11 @@
|
|||
</el-form-item>
|
||||
|
||||
<!-- Sponsor -->
|
||||
<el-form-item :label="$t('trials:trials-list:table:sponsor')" v-if="IsZhiZhun">
|
||||
<el-select v-model="searchData.SponsorId" style="width: 150px" clearable filterable>
|
||||
<el-form-item :label="$t('trials:trials-list:table:sponsor')">
|
||||
<el-select v-model="searchData.SponsorId" style="width: 150px" clearable>
|
||||
<el-option v-for="item in sponsorList" :key="item.Id" :label="item.SponsorName" :value="item.Id" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<!-- 状态 -->
|
||||
<el-form-item :label="$t('trials:trials-list:table:TrialStatusStr')" v-if="IsZhiZhun">
|
||||
<el-select v-model="searchData.TrialStatusStr" style="width: 150px" clearable>
|
||||
<el-option v-for="item in $d.TrialStatusEnum" :key="item.id" :label="item.label" :value="item.value" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<!-- 阅片标准 -->
|
||||
<el-form-item v-if="hasPermi(['role:ir'])" :label="$t('trials:trials-list:table:IR_ReadingCriterionList')">
|
||||
<el-select v-model="searchData.CriterionType" style="width: 150px" clearable>
|
||||
|
|
@ -353,7 +347,6 @@ 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'
|
||||
|
|
@ -379,7 +372,6 @@ const searchDataDefault = () => {
|
|||
PageSize: 20,
|
||||
Asc: false,
|
||||
SortField: '',
|
||||
TrialStatusStr: null,
|
||||
CriterionType: null,
|
||||
PM_EMail: null,
|
||||
}
|
||||
|
|
@ -418,7 +410,6 @@ export default {
|
|||
{ value: 'III' },
|
||||
{ value: 'IV' },
|
||||
],
|
||||
IsZhiZhun: false,
|
||||
expeditedOption: this.$d.TrialExpeditedState,
|
||||
beginPickerOption: {
|
||||
disabledDate: (time) => {
|
||||
|
|
@ -448,7 +439,6 @@ export default {
|
|||
},
|
||||
created() {
|
||||
this.initPage()
|
||||
this.getUser()
|
||||
},
|
||||
mounted() {
|
||||
this.$EventBus.$on('reload', (data) => {
|
||||
|
|
@ -456,11 +446,6 @@ export default {
|
|||
})
|
||||
},
|
||||
methods: {
|
||||
getUser() {
|
||||
getUser().then(res => {
|
||||
this.IsZhiZhun = res.Result.IsZhiZhun
|
||||
})
|
||||
},
|
||||
initPage() {
|
||||
this.getList()
|
||||
store.dispatch('global/getSponsorList')
|
||||
|
|
|
|||
Loading…
Reference in New Issue