扬州工业展示修改
This commit is contained in:
parent
ba80caeb82
commit
c4e9ab2341
@ -24,7 +24,7 @@
|
||||
>确定</el-button>
|
||||
</div>
|
||||
<div style="width:100%; padding-top: 20px">
|
||||
<span> 版权所有(C)2010-2011 北京玖琏科技有限公司</span>
|
||||
<span v-if="!thirdLogin"> 版权所有(C)2010-2011 北京玖琏科技有限公司</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -40,7 +40,8 @@
|
||||
|
||||
<script>
|
||||
import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler';
|
||||
|
||||
import { NoCopyrightList } from '@/scripts/ProjectConfig';
|
||||
import { getSessionStorage } from '@/utils/auth';
|
||||
export default {
|
||||
name: 'ManageUser',
|
||||
data() {
|
||||
@ -71,6 +72,9 @@ export default {
|
||||
},
|
||||
title() {
|
||||
return '关于ControlMonitor';
|
||||
},
|
||||
thirdLogin() {
|
||||
return NoCopyrightList.includes(getSessionStorage('project'));
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -41,6 +41,7 @@
|
||||
<script>
|
||||
import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler';
|
||||
import { getSessionStorage } from '@/utils/auth';
|
||||
import { NoCopyrightList } from '@/scripts/ProjectConfig';
|
||||
export default {
|
||||
name: 'ManageUser',
|
||||
data() {
|
||||
@ -73,7 +74,7 @@ export default {
|
||||
return this.$t('menu.menuDialog.about');
|
||||
},
|
||||
thirdLogin() {
|
||||
return getSessionStorage('project') == 'richor';
|
||||
return NoCopyrightList.includes(getSessionStorage('project'));
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -761,6 +761,10 @@ export const NoQrcodeList = ['heb', 'designheb', 'cgy', 'designcgy', 'ntyl', 'de
|
||||
/** 综合演练 无二维码 */
|
||||
export const NoSimulationQrCodeList = ['heb', 'bjd'];
|
||||
export const RegisterCodeList = ['cgy', 'designcgy'];
|
||||
/** 展示中航锐创联系我们 */
|
||||
export const RichorContectUsList = ['richor', 'richorygy'];
|
||||
/** 帮助中不展示版权(福州 佛山) */
|
||||
export const NoCopyrightList = ['richor', 'richorygy'];
|
||||
/** 导航栏快速切换平台 */
|
||||
export const goOtherPlatformMenu = {
|
||||
login: '/design/login',
|
||||
|
@ -35,6 +35,7 @@
|
||||
<script>
|
||||
import wchat from '@/assets/wchat.png';
|
||||
import { getSessionStorage } from '@/utils/auth';
|
||||
import { RichorContectUsList } from '@/scripts/ProjectConfig';
|
||||
export default {
|
||||
name:'',
|
||||
data() {
|
||||
@ -45,7 +46,7 @@ export default {
|
||||
},
|
||||
computed:{
|
||||
thirdLogin() {
|
||||
return getSessionStorage('project') == 'richor';
|
||||
return RichorContectUsList.includes(getSessionStorage('project'));
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
|
Loading…
Reference in New Issue
Block a user