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