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