lili添加关于页面
continuous-integration/drone/push Build is passing Details

uat_us
DESKTOP-6C3NK6N\WXS 2024-10-16 16:13:19 +08:00
parent 12e1454be4
commit 3b7ea6491e
1 changed files with 29 additions and 6 deletions

View File

@ -155,6 +155,14 @@
<span style="color: #428bca">关于</span> <span style="color: #428bca">关于</span>
</a> </a>
</div> </div>
<div v-if="NODE_ENV === 'usa'" class="login-footer">
<span>
© {{ new Date().getFullYear() }} Elevate lmaging Inc. info@{{ host }}
</span>
<a @click="openAbout">
<span style="color: #428bca">About</span>
</a>
</div>
<Vcode <Vcode
:show="isShow" :show="isShow"
:fail-text="$t('login:button:failText')" :fail-text="$t('login:button:failText')"
@ -179,9 +187,15 @@
text-align: center; text-align: center;
" "
> >
<h1 style="text-align: center; margin-bottom: 20px">关于</h1> <h1
style="text-align: center; margin-bottom: 20px"
v-if="NODE_ENV === 'usa'"
>
About
</h1>
<h1 style="text-align: center; margin-bottom: 20px" v-else></h1>
<p style="margin-bottom: 20px" v-if="NODE_ENV === 'usa'"> <p style="margin-bottom: 20px" v-if="NODE_ENV === 'usa'">
{{ $t('login:title:system_title') }} {{ $t('login:title:system_title_about') }}
</p> </p>
<p style="margin-bottom: 20px" v-else>{{ $t('login:title:system') }}</p> <p style="margin-bottom: 20px" v-else>{{ $t('login:title:system') }}</p>
<p style="margin-bottom: 20px"> <p style="margin-bottom: 20px">
@ -191,18 +205,24 @@
Copyright © {{ new Date().getFullYear() }} 上海展影医疗科技有限公司 Copyright © {{ new Date().getFullYear() }} 上海展影医疗科技有限公司
版权所有 版权所有
</p> </p>
<p style="margin-bottom: 20px" v-else-if="NODE_ENV === 'usa'">
© {{ new Date().getFullYear() }} Elevate Imaging Inc.
</p>
<p style="margin-bottom: 20px" v-else> <p style="margin-bottom: 20px" v-else>
Copyright © {{ new Date().getFullYear() }} Shanghai Extensive Imaging Copyright © {{ new Date().getFullYear() }} Shanghai Extensive Imaging
Inc. Inc.
</p> </p>
<div style="margin-bottom: 20px"> <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="" /> <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">
>关闭</el-button {{ $t('common:button:close') }}
> </el-button>
</div> </div>
</el-dialog> </el-dialog>
<browserTip ref="browserTip" /> <browserTip ref="browserTip" />
@ -263,6 +283,9 @@ export default {
}, },
computed: { computed: {
...mapGetters(['asyncRoutes', 'routes', 'language']), ...mapGetters(['asyncRoutes', 'routes', 'language']),
host() {
return window.location.host
},
}, },
watch: { watch: {
'$i18n.locale': { '$i18n.locale': {