2022-06-08 14:51:11 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="header-btn">
|
|
|
|
|
|
<el-popover
|
|
|
|
|
|
placement="bottom"
|
|
|
|
|
|
width="234"
|
|
|
|
|
|
trigger="click"
|
|
|
|
|
|
class="popover"
|
|
|
|
|
|
@show="sendMsg"
|
|
|
|
|
|
@hide="sendMsg2"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div class="accountBox">
|
|
|
|
|
|
<div class="flex2" v-show="$store.state.userInfo.accountType != 1">
|
|
|
|
|
|
<!-- <i class="el-icon-user-solid"></i> -->
|
|
|
|
|
|
<el-avatar size="large" icon="el-icon-user-solid"></el-avatar>
|
2023-03-13 10:59:36 +08:00
|
|
|
|
<div style="margin-left: 10px">
|
2022-06-08 14:51:11 +08:00
|
|
|
|
<p>{{ $store.state.userInfo.companyName }}</p>
|
2022-06-24 14:58:54 +08:00
|
|
|
|
<!-- 横琴和鹤洲不需要客服电话-->
|
2023-03-13 10:59:36 +08:00
|
|
|
|
<p v-if="projectType == 'common' || projectType == 'zjsj'">
|
|
|
|
|
|
客服电话:{{ $store.state.userInfo.customerServicePhone }}
|
|
|
|
|
|
</p>
|
2022-08-17 18:56:39 +08:00
|
|
|
|
<p
|
2023-03-13 10:59:36 +08:00
|
|
|
|
v-if="
|
|
|
|
|
|
projectType == 'hengqin' &&
|
|
|
|
|
|
$store.state.currentProDetail != null
|
|
|
|
|
|
"
|
|
|
|
|
|
>
|
|
|
|
|
|
入场码:{{ $store.state.currentProDetail.placeCode }}
|
|
|
|
|
|
</p>
|
2022-06-08 14:51:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2022-09-01 10:53:36 +08:00
|
|
|
|
<!-- <div class="flex2" style="margin-top:20px">
|
2022-06-08 14:51:11 +08:00
|
|
|
|
客服电话:{{$store.state.userInfo.customerServicePhone}}
|
2022-09-01 10:53:36 +08:00
|
|
|
|
</div> -->
|
2022-06-08 14:51:11 +08:00
|
|
|
|
<div class="flex2 wrap" v-if="$store.state.userInfo.accountType != 1">
|
|
|
|
|
|
<!-- <div class="width_100">
|
|
|
|
|
|
<img src="@/assets/images/sjzx.png" width="15px" height="15px" />
|
|
|
|
|
|
<span>数据中心</span>
|
2022-08-17 18:56:39 +08:00
|
|
|
|
</div>-->
|
2022-06-21 15:26:23 +08:00
|
|
|
|
|
2022-06-20 13:36:29 +08:00
|
|
|
|
<!-- 企业前台 -->
|
2022-06-21 15:26:23 +08:00
|
|
|
|
<div
|
2022-06-20 13:36:29 +08:00
|
|
|
|
class="width_100"
|
2022-06-21 15:26:23 +08:00
|
|
|
|
@click="goto5()"
|
2023-03-13 10:59:36 +08:00
|
|
|
|
v-if="
|
|
|
|
|
|
$route.path.indexOf('/firm/projectManage') == -1 &&
|
|
|
|
|
|
$store.state.userInfo.accountType != 5 &&
|
|
|
|
|
|
$store.state.userInfo.accountType != 6
|
|
|
|
|
|
"
|
2022-08-17 18:56:39 +08:00
|
|
|
|
>
|
2022-06-20 13:36:29 +08:00
|
|
|
|
<img src="@/assets/images/xmht.png" width="15px" height="15px" />
|
2023-03-13 10:59:36 +08:00
|
|
|
|
<span>{{ enterpriseFront }}</span>
|
2022-06-21 15:26:23 +08:00
|
|
|
|
</div>
|
2022-06-20 13:36:29 +08:00
|
|
|
|
<!-- // 企业后台 -->
|
2022-06-08 14:51:11 +08:00
|
|
|
|
<div
|
|
|
|
|
|
class="width_100"
|
|
|
|
|
|
@click="goto2"
|
|
|
|
|
|
v-if="
|
2023-03-13 10:59:36 +08:00
|
|
|
|
$route.path.indexOf('/companyAdmin/companyDiagram') == -1 &&
|
2022-06-08 14:51:11 +08:00
|
|
|
|
$store.state.userInfo.accountType != 5 &&
|
|
|
|
|
|
$store.state.userInfo.accountType != 6
|
|
|
|
|
|
"
|
|
|
|
|
|
>
|
|
|
|
|
|
<img src="@/assets/images/yyht.png" width="15px" height="15px" />
|
|
|
|
|
|
<!-- <span>{{$t('message.companyDiagram.operatingCenter')}}</span> -->
|
2022-06-23 16:29:13 +08:00
|
|
|
|
<!-- <span>企业后台</span> -->
|
|
|
|
|
|
<span>{{ enterpriseBackground }}</span>
|
2022-06-08 14:51:11 +08:00
|
|
|
|
</div>
|
2022-06-21 15:26:23 +08:00
|
|
|
|
<!-- 项目后台 -->
|
|
|
|
|
|
<div
|
|
|
|
|
|
class="width_100"
|
|
|
|
|
|
@click="goProjectBackstage"
|
|
|
|
|
|
v-if="
|
2023-03-13 10:59:36 +08:00
|
|
|
|
$route.path.indexOf('/projectIndex') == -1 ||
|
|
|
|
|
|
($route.path.indexOf('/equipmentCenterIndx') == -1 &&
|
2022-06-21 15:26:23 +08:00
|
|
|
|
$store.state.userInfo.accountType != 5 &&
|
2023-03-13 10:59:36 +08:00
|
|
|
|
$store.state.userInfo.accountType != 6 &&
|
|
|
|
|
|
$store.state.userInfo.enterProjectBackType == 0)
|
2022-06-21 15:26:23 +08:00
|
|
|
|
"
|
|
|
|
|
|
>
|
|
|
|
|
|
<img src="@/assets/images/xmht.png" width="15px" height="15px" />
|
2022-06-23 16:29:13 +08:00
|
|
|
|
<!-- $t("message.companyDiagram.projectBackEnd") -->
|
2023-03-13 10:59:36 +08:00
|
|
|
|
<span>{{ projectBackground }}</span>
|
2022-06-21 15:26:23 +08:00
|
|
|
|
</div>
|
2022-08-17 18:56:39 +08:00
|
|
|
|
<!-- 设备中台 -->
|
2022-06-08 14:51:11 +08:00
|
|
|
|
<div
|
2022-06-21 15:26:23 +08:00
|
|
|
|
class="width_100"
|
|
|
|
|
|
@click="goDevcenter"
|
2023-03-13 10:59:36 +08:00
|
|
|
|
v-if="
|
|
|
|
|
|
$route.path.indexOf('/equipmentCenterIndx') == -1 ||
|
|
|
|
|
|
($route.path.indexOf('/equipmentCenterIndx') == -1 &&
|
|
|
|
|
|
$route.path.indexOf('/projectIndex') == -1)
|
2022-06-21 15:26:23 +08:00
|
|
|
|
"
|
2022-08-17 18:56:39 +08:00
|
|
|
|
>
|
2022-06-21 15:26:23 +08:00
|
|
|
|
<img src="@/assets/images/xmht.png" width="15px" height="15px" />
|
2022-06-23 16:29:13 +08:00
|
|
|
|
<!-- <span>{{ $t("message.companyDiagram.devCenter") }}</span> -->
|
2023-03-13 10:59:36 +08:00
|
|
|
|
<span>{{ equipmentChina }}</span>
|
2022-06-21 15:26:23 +08:00
|
|
|
|
</div>
|
2022-08-17 18:56:39 +08:00
|
|
|
|
|
2022-06-21 15:26:23 +08:00
|
|
|
|
<!-- <div
|
2022-06-08 14:51:11 +08:00
|
|
|
|
class="width_100"
|
|
|
|
|
|
@click="goto4"
|
|
|
|
|
|
v-if="
|
|
|
|
|
|
($store.state.userInfo.accountType == 5 ||
|
|
|
|
|
|
$store.state.userInfo.accountType == 6) &&
|
|
|
|
|
|
seeEquipment == 0&&$store.state.userInfo.styleType != 2
|
|
|
|
|
|
"
|
|
|
|
|
|
>
|
|
|
|
|
|
<img src="@/assets/images/sbzt.png" width="15px" height="15px" />
|
|
|
|
|
|
<span>{{ $t("message.companyDiagram.devCenter") }}</span>
|
2022-08-17 18:56:39 +08:00
|
|
|
|
</div>-->
|
2022-06-21 15:26:23 +08:00
|
|
|
|
<!-- // 资料中心 -->
|
2022-06-23 16:29:13 +08:00
|
|
|
|
<div class="width_100" @click="goto3" v-if="dataCenter1 != 1">
|
2022-06-08 14:51:11 +08:00
|
|
|
|
<img src="@/assets/images/zlzx.png" width="15px" height="15px" />
|
2022-06-23 16:29:13 +08:00
|
|
|
|
<!-- <span>{{ $t("message.docManage.fileCenter") }}</span> -->
|
|
|
|
|
|
<span>{{ dataCenter }}</span>
|
2022-06-08 14:51:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2022-08-17 18:56:39 +08:00
|
|
|
|
|
2023-03-13 10:59:36 +08:00
|
|
|
|
<div class="flex2 logout" @click="loginOut">
|
|
|
|
|
|
{{ $t('message.login.logout') }}
|
|
|
|
|
|
</div>
|
2022-06-08 14:51:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<span slot="reference" class="flex3">
|
|
|
|
|
|
<div style="margin-right: 8px">
|
2023-03-13 10:59:36 +08:00
|
|
|
|
<p class="color_fff" style="margin-bottom: 0">
|
|
|
|
|
|
{{ $store.state.userInfo.account }}
|
|
|
|
|
|
</p>
|
2022-06-08 14:51:11 +08:00
|
|
|
|
<!-- <p class="color_fff">{{$store.state.ACCOUNTTYPE[$store.state.userInfo.accountType-1]}}</p> -->
|
2023-03-13 10:59:36 +08:00
|
|
|
|
<p class="color_fff" v-if="COMPANY == 'hengtong'">
|
|
|
|
|
|
{{ $store.state.userInfo.menuAuthority.roleName }}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p class="color_fff" v-else>
|
|
|
|
|
|
{{ headerConfiguration }}
|
2022-06-08 14:51:11 +08:00
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<i class="el-icon-arrow-down" style="color: #fff"></i>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</el-popover>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
export default {
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
COMPANY: COMPANY,
|
|
|
|
|
|
projectType: '',
|
|
|
|
|
|
loginData: '',
|
|
|
|
|
|
dataCenter1: '',
|
|
|
|
|
|
projectBackground: '项目后台',
|
|
|
|
|
|
enterpriseBackground: '企业后台',
|
|
|
|
|
|
headerConfiguration: '公司管理员', //标头配置
|
|
|
|
|
|
enterpriseFront: '企业前台', //企业前台
|
|
|
|
|
|
equipmentChina: '设备中台', //设备中台
|
|
|
|
|
|
dataCenter: '资料中心' //资料中心
|
|
|
|
|
|
}
|
2022-06-08 14:51:11 +08:00
|
|
|
|
},
|
2022-07-28 19:18:08 +08:00
|
|
|
|
created() {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
this.projectType = PROJECT_TYPE
|
2022-07-28 19:18:08 +08:00
|
|
|
|
},
|
2022-06-08 14:51:11 +08:00
|
|
|
|
mounted() {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
this.seeEquipment = this.$store.state.userInfo.seeEquipment
|
|
|
|
|
|
this.loginData = JSON.parse(localStorage.getItem('systemInfo'))
|
|
|
|
|
|
console.log(' this.loginData===================', this.loginData)
|
|
|
|
|
|
if (this.loginData.headerConfiguration != '') {
|
|
|
|
|
|
this.headerConfiguration = this.loginData.headerConfiguration
|
2022-07-21 14:21:23 +08:00
|
|
|
|
}
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (this.loginData.projectBackground != '') {
|
|
|
|
|
|
this.projectBackground = this.loginData.projectBackground
|
2022-07-21 14:21:23 +08:00
|
|
|
|
}
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (this.loginData.enterpriseBackground != '') {
|
|
|
|
|
|
this.enterpriseBackground = this.loginData.enterpriseBackground
|
2022-07-21 14:21:23 +08:00
|
|
|
|
}
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (this.loginData.equipmentChina != '') {
|
|
|
|
|
|
this.equipmentChina = this.loginData.equipmentChina
|
2022-07-21 14:21:23 +08:00
|
|
|
|
}
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (this.loginData.dataCenter != '') {
|
|
|
|
|
|
this.dataCenter1 = this.loginData.dataCenter
|
2022-07-21 14:21:23 +08:00
|
|
|
|
}
|
2022-06-23 16:29:13 +08:00
|
|
|
|
// console.log('项目后台',this.projectBackground)
|
|
|
|
|
|
// console.log('企业后台',this.enterpriseBackground)
|
2022-06-08 14:51:11 +08:00
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
sendMsg2() {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
this.$EventBus.$emit('controlVideoShowOrHide', 'show')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
},
|
|
|
|
|
|
sendMsg() {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
this.$EventBus.$emit('controlVideoShowOrHide', 'hide')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
},
|
|
|
|
|
|
goto2() {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
let menuList = []
|
|
|
|
|
|
var half = this.$store.state.userInfo.menuAuthority.moduleList
|
|
|
|
|
|
half.forEach((element) => {
|
2022-06-08 14:51:11 +08:00
|
|
|
|
if (element.moduleType == 3) {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
menuList.push(element)
|
2022-06-08 14:51:11 +08:00
|
|
|
|
}
|
2023-03-13 10:59:36 +08:00
|
|
|
|
})
|
2022-06-08 14:51:11 +08:00
|
|
|
|
if (menuList.length > 0) {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
this.$store.commit('setIsShowBackIndex', false)
|
2022-06-08 14:51:11 +08:00
|
|
|
|
// let routeUrl = this.$router.resolve({
|
|
|
|
|
|
// path: menuList[0].modulePath,
|
|
|
|
|
|
// });
|
2023-03-13 10:59:36 +08:00
|
|
|
|
var url = window.location.href
|
|
|
|
|
|
let routeUrl = ''
|
2022-06-08 14:51:11 +08:00
|
|
|
|
// 判断当前页面是不是设备中台
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (url.indexOf('equipmentCenter.html') != -1) {
|
|
|
|
|
|
window.open('/#' + menuList[0].modulePath, '_self')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
// 南昌项目打开的是/index.html#/ 的页面
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (COMPANY == 'nanchang') {
|
|
|
|
|
|
window.open('/index.html#' + menuList[0].modulePath, '_self')
|
2022-08-17 18:56:39 +08:00
|
|
|
|
} else {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open('/#' + menuList[0].modulePath, '_self')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
routeUrl = this.$router.resolve({
|
2022-08-17 18:56:39 +08:00
|
|
|
|
path: menuList[0].modulePath
|
2023-03-13 10:59:36 +08:00
|
|
|
|
})
|
2022-06-08 14:51:11 +08:00
|
|
|
|
}
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open(routeUrl.href, '_self')
|
|
|
|
|
|
window._paq.push(['trackEvent', '点击', '企业后台', '进入企业后台'])
|
2022-06-08 14:51:11 +08:00
|
|
|
|
} else {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
this.$message.warning('您没有企业后台的权限!')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
goto3() {
|
|
|
|
|
|
// this.$router.push('/fileCenter')
|
|
|
|
|
|
// let routeUrl = this.$router.resolve({
|
|
|
|
|
|
// path: "/fileCenter",
|
|
|
|
|
|
// });
|
2023-03-13 10:59:36 +08:00
|
|
|
|
var url = window.location.href
|
|
|
|
|
|
let routeUrl = ''
|
2022-06-08 14:51:11 +08:00
|
|
|
|
// 判断当前页面是不是设备中台
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (url.indexOf('equipmentCenter.html') != -1) {
|
2022-06-08 14:51:11 +08:00
|
|
|
|
// 南昌项目打开的是/index.html#/ 的页面
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (COMPANY == 'nanchang') {
|
|
|
|
|
|
window.open('/index.html#/fileCenter', '_self')
|
2022-08-17 18:56:39 +08:00
|
|
|
|
} else {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open('/#/fileCenter', '_self')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
routeUrl = this.$router.resolve({
|
2023-03-13 10:59:36 +08:00
|
|
|
|
path: '/fileCenter'
|
|
|
|
|
|
})
|
2022-06-08 14:51:11 +08:00
|
|
|
|
}
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open(routeUrl.href, '_self')
|
|
|
|
|
|
window._paq.push(['trackEvent', '点击', '资料中心', '进入资料中心'])
|
2022-06-08 14:51:11 +08:00
|
|
|
|
},
|
|
|
|
|
|
goto4() {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open('/equipmentCenter.html#/equipmentCenterIndx', '_blank')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
},
|
2022-08-17 18:56:39 +08:00
|
|
|
|
goto5() {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open('/index.html#/firm/projectManage', '_self')
|
2022-06-21 15:26:23 +08:00
|
|
|
|
},
|
2022-06-08 14:51:11 +08:00
|
|
|
|
loginOut() {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
this.$store.commit('setUserInfo', null)
|
|
|
|
|
|
this.$store.commit('setMapBackArr', [])
|
|
|
|
|
|
this.$store.commit('setMoudle', null)
|
|
|
|
|
|
this.$store.commit('setProDetail', null)
|
|
|
|
|
|
window.localStorage.removeItem('isIframe')
|
|
|
|
|
|
window.localStorage.removeItem('soundList')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
let json = {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
name: '工作站',
|
2022-08-17 18:56:39 +08:00
|
|
|
|
id: 1,
|
2023-03-13 10:59:36 +08:00
|
|
|
|
url: '/projectV2/taskList',
|
2022-08-17 18:56:39 +08:00
|
|
|
|
menuList: [
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 100000,
|
2023-03-13 10:59:36 +08:00
|
|
|
|
menuName: '任务清单',
|
|
|
|
|
|
path: '/projectV2/taskList'
|
2022-08-17 18:56:39 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 100001,
|
2023-03-13 10:59:36 +08:00
|
|
|
|
menuName: '通知公告',
|
|
|
|
|
|
path: '/projectV2/noticeList'
|
2022-08-17 18:56:39 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
id: 100002,
|
2023-03-13 10:59:36 +08:00
|
|
|
|
menuName: '工作日程',
|
|
|
|
|
|
path: '/projectV2/workerSchedule'
|
2022-08-17 18:56:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
]
|
2023-03-13 10:59:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
this.$store.commit('setCurModule', json)
|
2022-07-22 20:00:46 +08:00
|
|
|
|
// sessionStorage.clear();
|
2022-06-08 14:51:11 +08:00
|
|
|
|
// this.$router.push('/login')
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (COMPANY == 'nanchang' || COMPANY == '') {
|
|
|
|
|
|
window.open('/index.html#/login', '_self')
|
2022-08-17 18:56:39 +08:00
|
|
|
|
} else {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open('/#/login', '_self')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
// this.$router.push('/')
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window._paq.push(['trackEvent', '点击', '退出登录', '退出登录'])
|
2022-06-08 14:51:11 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
//去项目后台
|
|
|
|
|
|
goProjectBackstage() {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
var url = window.location.href
|
|
|
|
|
|
let routeUrl = ''
|
|
|
|
|
|
let type = this.$store.state.userInfo.accountType
|
2022-06-08 14:51:11 +08:00
|
|
|
|
// 判断当前页面是不是设备中台
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (url.indexOf('equipmentCenter.html') != -1) {
|
2022-06-08 14:51:11 +08:00
|
|
|
|
// 南昌项目打开的是/index.html#/ 的页面
|
2023-03-13 10:59:36 +08:00
|
|
|
|
if (COMPANY == 'nanchang') {
|
|
|
|
|
|
window.open('/index.html#/projectList', '_self')
|
2022-08-17 18:56:39 +08:00
|
|
|
|
} else {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open('/#/projectList', '_self')
|
2022-06-08 14:51:11 +08:00
|
|
|
|
}
|
2022-08-17 18:56:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (type == 5 || type == 6) {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open('/index.html#/projectIndex', '_self')
|
2022-08-17 18:56:39 +08:00
|
|
|
|
} else {
|
2022-06-08 14:51:11 +08:00
|
|
|
|
routeUrl = this.$router.resolve({
|
2023-03-13 10:59:36 +08:00
|
|
|
|
path: '/projectList'
|
|
|
|
|
|
})
|
2022-06-08 14:51:11 +08:00
|
|
|
|
}
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open(routeUrl.href, '_self')
|
|
|
|
|
|
window._paq.push(['trackEvent', '点击', '项目后台', '进入项目后台'])
|
2022-06-08 14:51:11 +08:00
|
|
|
|
},
|
2022-06-21 17:38:52 +08:00
|
|
|
|
//去设备中台
|
2022-08-17 18:56:39 +08:00
|
|
|
|
goDevcenter(value) {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
let routeUrl = ''
|
|
|
|
|
|
let type = this.$store.state.userInfo.accountType
|
2022-06-23 16:29:13 +08:00
|
|
|
|
// this.$store.commit("setProjectSn", value.projectSn);
|
2022-08-17 18:56:39 +08:00
|
|
|
|
if (type == 5 || type == 6) {
|
2023-03-13 10:59:36 +08:00
|
|
|
|
window.open('/equipmentCenter.html#/equipmentCenterIndx', '_self')
|
|
|
|
|
|
window._paq.push(['trackEvent', '点击', '设备中台', '进入设备中台'])
|
2022-08-17 18:56:39 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
routeUrl = this.$router.resolve({
|
2023-03-13 10:59:36 +08:00
|
|
|
|
path: '/projectList'
|
|
|
|
|
|
})
|
|
|
|
|
|
window.open(routeUrl.href, '_self')
|
2022-08-17 18:56:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-06-20 13:36:29 +08:00
|
|
|
|
// 去设备中台
|
2022-06-21 17:38:52 +08:00
|
|
|
|
// goDevcenter(){
|
|
|
|
|
|
// window.open('/equipmentCenter.html#/equipmentCenterIndx', "_self");
|
|
|
|
|
|
// var url = window.location.href;
|
|
|
|
|
|
// let routeUrl = '';
|
|
|
|
|
|
// // 判断当前页面是不是设备中台
|
|
|
|
|
|
// if (url.indexOf("equipmentCenter.html") != -1) {
|
|
|
|
|
|
// // 南昌项目打开的是/index.html#/ 的页面
|
|
|
|
|
|
// if(COMPANY == 'nanchang') {
|
|
|
|
|
|
// window.open("/index.html#/equipmentCenterIndx", "_self");
|
|
|
|
|
|
// }else{
|
|
|
|
|
|
// window.open("/#/equipmentCenterIndx", "_self");
|
|
|
|
|
|
// }
|
|
|
|
|
|
// } else {
|
|
|
|
|
|
// routeUrl = this.$router.resolve({
|
|
|
|
|
|
// path: "/equipmentCenterIndx",
|
|
|
|
|
|
// });
|
|
|
|
|
|
// }
|
|
|
|
|
|
// window.open(routeUrl.href, "_self");
|
|
|
|
|
|
// window._paq.push(['trackEvent', '点击', '设备中台','进入设备中台' ])
|
|
|
|
|
|
// }
|
2022-08-17 18:56:39 +08:00
|
|
|
|
}
|
2023-03-13 10:59:36 +08:00
|
|
|
|
}
|
2022-06-08 14:51:11 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
|
.accountBox {
|
|
|
|
|
|
padding: 10px 10px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.logout {
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
color: @--color-primary;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.flex2 {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
.width_100:nth-child(2n) {
|
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.flex3 {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
|
|
|
|
|
// .el-icon-user-solid {
|
|
|
|
|
|
// font-size: 40px;
|
|
|
|
|
|
// margin-right: 15px;
|
|
|
|
|
|
// margin-top: -1px;
|
|
|
|
|
|
// }
|
|
|
|
|
|
.wrap {
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
border-top: 1px solid rgba(47, 57, 92, 0.1);
|
|
|
|
|
|
border-bottom: 1px solid rgba(47, 57, 92, 0.1);
|
|
|
|
|
|
margin: 17px 0 10px;
|
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.width_100 {
|
|
|
|
|
|
width: 105px;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-bottom: 14px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
img,
|
|
|
|
|
|
i {
|
|
|
|
|
|
margin-right: 7px;
|
|
|
|
|
|
}
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
color: @--color-primary;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
.color_fff {
|
|
|
|
|
|
font-family: PingFangSC-Medium;
|
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
|
|
<style>
|
2022-08-17 18:56:39 +08:00
|
|
|
|
.el-popover {
|
2022-06-08 14:51:11 +08:00
|
|
|
|
box-sizing: content-box !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|