|
@@ -7,6 +7,22 @@
|
|
|
<template #name="{ row }">
|
|
<template #name="{ row }">
|
|
|
<el-link type="primary" @click="rowNameClick(row)">{{ row.name }}</el-link>
|
|
<el-link type="primary" @click="rowNameClick(row)">{{ row.name }}</el-link>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <template #investYearRate="{ row }">
|
|
|
|
|
+ <span v-if="row.investYearRate">{{ row.investYearRate }}</span>
|
|
|
|
|
+ <span v-else>/</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template #yearlyInvest="{ row }">
|
|
|
|
|
+ <span v-if="row.yearlyInvest">{{ row.yearlyInvest }}</span>
|
|
|
|
|
+ <span v-else>/</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template #investYear="{ row }">
|
|
|
|
|
+ <span v-if="row.investYear">{{ row.investYear }}</span>
|
|
|
|
|
+ <span v-else>/</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template #yearlyInvestRate="{ row }">
|
|
|
|
|
+ <span v-if="row.yearlyInvestRate">{{ row.yearlyInvestRate }}</span>
|
|
|
|
|
+ <span v-else>/</span>
|
|
|
|
|
+ </template>
|
|
|
<template #action="{ row }">
|
|
<template #action="{ row }">
|
|
|
<el-link v-if="isAdminAuth" type="warning" @click="completion(row)">项目完成情况</el-link>
|
|
<el-link v-if="isAdminAuth" type="warning" @click="completion(row)">项目完成情况</el-link>
|
|
|
<el-link type="primary" @click="examine(row)">查看</el-link>
|
|
<el-link type="primary" @click="examine(row)">查看</el-link>
|