fix: 修改hfqc二级菜单距离显示

This commit is contained in:
Vce 2024-03-30 13:44:37 +08:00
parent 4729c072a1
commit 87bb410c27

View File

@ -72,7 +72,7 @@
</div>
</div>
<div class="subMenuList" v-show="itemList != null && itemList.length >= 1">
<div class="subItem" v-for="(data, i) in itemList" :key="i" :index="data.companyPath" @click="navigateTo(data, 2)">
<div class="subItem" :style="COMPANY === 'hfqc' ? 'width:120px' : ''" v-for="(data, i) in itemList" :key="i" :index="data.companyPath" @click="navigateTo(data, 2)">
<span style="white-space: nowrap" :class="{ active2: activeTab2 === data.companyPath }">{{ data.menuName }}</span>
</div>
</div>
@ -201,18 +201,14 @@ let panHuMenuList = ref([
//
let heFeiMenuList = ref([
{
moduleName: "综合管理",
moduleName: "",
modulePath: "/projectOverview",
// menuList: [
// {
// menuName: "",
// companyPath: "/projectOverview"
// },
// {
// menuName: "",
// companyPath: "/smartPartyBuilding"
// }
// ]
menuList: [
{
menuName: "工程概况",
companyPath: "/projectOverview"
}
]
},
{
moduleName: "准入管理",
@ -245,6 +241,12 @@ let heFeiMenuList = ref([
{
moduleName: "智能安全帽",
modulePath: "/smartSafeHat",
menuList: [
{
menuName: "",
companyPath: "/smartSafeHat"
}
]
},
{
moduleName: "安全风险警示",
@ -271,6 +273,12 @@ let heFeiMenuList = ref([
{
moduleName: "高支模监测预警",
modulePath: "/highFormwork",
menuList: [
{
menuName: "",
companyPath: "/highFormwork"
}
]
}
])