|
|
@ -21,7 +21,10 @@
|
|
|
|
<div class="project-name" @click="goProjectInfoLeft(item)">【{{item.projectName}}】</div>
|
|
|
|
<div class="project-name" @click="goProjectInfoLeft(item)">【{{item.projectName}}】</div>
|
|
|
|
<div class="project-type">
|
|
|
|
<div class="project-type">
|
|
|
|
<span class="left-title">项目类别:</span>
|
|
|
|
<span class="left-title">项目类别:</span>
|
|
|
|
<span class="right-value">自主品牌先进技术研究院</span>
|
|
|
|
<div class="project-type-box" v-if="item.projectBigType">
|
|
|
|
|
|
|
|
<dict-tag class="right-value" :options="dict.type.project_categories" :value="item.projectBigType"/>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<span class="right-value" v-else>其他</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="declare-time">
|
|
|
|
<div class="declare-time">
|
|
|
|
<span class="left-title">拨付时间:</span>
|
|
|
|
<span class="left-title">拨付时间:</span>
|
|
|
@ -63,12 +66,15 @@
|
|
|
|
<el-table v-loading="loadingTab" class="dataMap-two-table" :data="tableData" :height="tableTwoHeight" border :header-cell-style="{background:'#E8F3FC'}">
|
|
|
|
<el-table v-loading="loadingTab" class="dataMap-two-table" :data="tableData" :height="tableTwoHeight" border :header-cell-style="{background:'#E8F3FC'}">
|
|
|
|
<el-table-column label="项目类别" prop="projectType" align="center">
|
|
|
|
<el-table-column label="项目类别" prop="projectType" align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<dict-tag :options="dict.type.projectBigType" :value="item.projectBigType"/>
|
|
|
|
<div v-if="scope.row.projectBigType">
|
|
|
|
|
|
|
|
<dict-tag :options="dict.type.project_categories" :value="scope.row.projectBigType"/>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<span v-else>其他</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="项目名称" prop="projectName" align="center">
|
|
|
|
<el-table-column label="项目名称" prop="projectName" align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div class="project-trace-table" @click="goProjectInfo(item)">{{ scope.row.projectName }}</div>
|
|
|
|
<div class="project-trace-table" @click="goProjectInfoLeft(scope.row)">{{ scope.row.projectName }}</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="专项资金拨付时间" prop="time" align="center">
|
|
|
|
<el-table-column label="专项资金拨付时间" prop="time" align="center">
|
|
|
@ -305,11 +311,14 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 往年专项资金申报
|
|
|
|
// 往年专项资金申报
|
|
|
|
goProjectInfoLeft(item){
|
|
|
|
goProjectInfoLeft(item){
|
|
|
|
|
|
|
|
console.log(item,"item");
|
|
|
|
if(item.projectName == "区级总部" || item.projectName == "市级服务业领军") {
|
|
|
|
if(item.projectName == "区级总部" || item.projectName == "市级服务业领军") {
|
|
|
|
this.$router.push({
|
|
|
|
if(item.projectId) {
|
|
|
|
name: 'projectInfo',
|
|
|
|
this.$router.push({
|
|
|
|
query: { userId: Number(item.id) }
|
|
|
|
name: 'projectInfo',
|
|
|
|
})
|
|
|
|
query: { userId: Number(item.projectId) }
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 智能提醒跳转
|
|
|
|
// 智能提醒跳转
|
|
|
|