| | |
| | | <template v-if="item.slotName === 'projectType'"> |
| | | <dict-tag :options="dict.type.sys_project_type" :value="scope.row.projectType"/> |
| | | </template> |
| | | <!-- projectSubType插槽 --> |
| | | <!-- attractInvestment插槽 --> |
| | | <template v-if="item.slotName === 'attractInvestment'"> |
| | | <dict-tag :options="dict.type.sys_project_type" :value="scope.row.attractInvestment"/> |
| | | <dict-tag :options="dict.type.attract_investment" :value="scope.row.attractInvestment"/> |
| | | </template> |
| | | <!-- constructionNature插槽 --> |
| | | <template v-if="item.slotName === 'constructionNature'"> |
| | |
| | | <template v-if="item.slotName === 'investType'"> |
| | | <dict-tag :options="dict.type.sys_investment_type" :value="scope.row.investType"/> |
| | | </template> |
| | | <!-- investType插槽 --> |
| | | <!-- importanceType插槽 --> |
| | | <template v-if="item.slotName === 'importanceType'"> |
| | | <dict-tag :options="dict.type.sys_key_categories" :value="scope.row.importanceType"/> |
| | | </template> |
| | | <!-- planStartTime --> |
| | | <template v-if="item.slotName === 'planStartTime'"> |
| | | {{ scope.row.planStartTime ? scope.row.planStartTime.split('-')[0] + '年' : '' }} |
| | | <!-- plannedStartDate --> |
| | | <template v-if="item.slotName === 'plannedStartDate'"> |
| | | {{ scope.row.plannedStartDate ? scope.row.plannedStartDate.split('-')[0] + '年' : '' }} |
| | | </template> |
| | | <!-- usedStatus插槽 --> |
| | | <template v-if="item.slotName === 'usedStatus'"> |
| | | <dict-tag :options="dict.type.sys_used_status" :value="scope.row.usedStatus"/> |
| | | </template> |
| | | <!-- planStartTime --> |
| | | <template v-else-if="item.slotName === 'planStartTime'"> |
| | | {{ scope.row.planStartTime ? scope.row.planStartTime.split(' ')[0] : '' }} |
| | | </template> |
| | | </template> |
| | | <!-- 转换计划开工样式 空格切割数组 --> |
| | | |
| | | <!-- 默认显示 --> |
| | | <span v-else>{{ scope.row[item.columns] }}</span> |
| | | </template> |