|
|
|
@ -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({
|
|
|
|
|