正式环境工作台样式修改

lijinlong
吕天方 6 months ago
parent 0b4de5ce10
commit 60db50f594

@ -2575,6 +2575,9 @@
// text-transform: none;
cursor: pointer;
}
.project-trace-table-gray {
color: #ccc;
}
}
}
//

@ -472,7 +472,7 @@
display: flex;
.BJinsannianzijinchart-left, .zongbuzhuanxing-box{
width: 68%;
width: 59%;
height: 100%;
}
.BJinsannianzijinchart-right {

@ -69,7 +69,7 @@
<el-table v-loading="loadingTab" class="dataMap-two-table" :data="tableData" :height="tableTwoHeight" border :header-cell-style="{background:'#E8F3FC'}">
<el-table-column label="项目名称" prop="projectName" align="center">
<template slot-scope="scope">
<div class="project-trace-table" @click="goProjectInfoLeft(scope.row)">{{ scope.row.projectName }}</div>
<div class="project-trace-table" :class="(scope.row.projectName == '区级总部' || scope.row.projectName == '市级服务业领军') ? '' : 'project-trace-table-gray'" @click="goProjectInfoLeft(scope.row)">{{ scope.row.projectName }}</div>
</template>
</el-table-column>
<el-table-column label="项目类别" prop="projectType" align="center">
@ -303,7 +303,7 @@ export default {
},
//
goProjectInfoLeft(item){
console.log(item,"item");
// console.log(item,"item");
if(item.projectName == "区级总部" || item.projectName == "市级服务业领军") {
if(item.projectId) {
this.$router.push({

Loading…
Cancel
Save