| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <view class="setup-wrapper">
- <CommonSection title="立项概览" isFirst>
- <CommonInfoRow label="项目名称" :value="projectData?.projectName" />
- <CommonInfoRow label="学科类型" :value="getDictLabel('project_class', projectData?.projectClass)" />
- <CommonInfoRow label="项目来源单位" :value="projectData?.projectSource" />
- <CommonInfoRow label="负责人" :value="projectData?.projectLeaderName" />
- <CommonInfoRow label="负责人类型" :value="getDictLabel('sci_leader_type', projectData?.projectLeaderType)" />
- <CommonInfoRow label="项目级别" :value="getDictLabel('sci_pjt_level', projectData?.projectLevel)" />
- <CommonInfoRow label="项目分类" :value="projectData?.projectClazzName" />
- <CommonInfoRow label="项目状态" :value="getStatusLabel(verticalProjectStatusOptions, projectData?.projectStatus)" />
- <CommonInfoRow label="立项日期" :value="projectData?.approvalDate ? formatDate(projectData.approvalDate) : '--'" />
- <CommonInfoRow label="开始日期" :value="projectData?.planStartDate ? formatDate(projectData.planStartDate) : '--'" />
- <CommonInfoRow label="计划结题日期" :value="projectData?.planEndDate ? formatDate(projectData.planEndDate) : '--'" />
- <CommonInfoRow label="合同经费(元)" :value="amountUnitFormatter(projectData?.contractFunds)" isAmount />
- <CommonInfoRow label="批准经费(元)" :value="amountUnitFormatter(projectData?.approvedFunds)" isAmount />
- <CommonInfoRow label="配套经费(元)" :value="amountUnitFormatter(projectData?.supportFunds)" isAmount />
- <CommonInfoRow label="外拨经费(元)" :value="amountUnitFormatter(projectData?.outsourcedFunds)" isAmount />
- <CommonInfoRow label="所属年度" :value="projectData?.statisticalYear || '--'" />
- <CommonInfoRow label="所属平台">
- <view class="platform-tags" v-if="platformList.length > 0">
- <view v-for="(item, index) in platformList" :key="index" class="platform-tag">
- {{ item.platformName === '其他' ? item.platformName : `${item.platformName} (${item.platformType})` }}
- </view>
- </view>
- <text v-else>--</text>
- </CommonInfoRow>
- <CommonInfoRow label="所属团队" :value="projectData?.belongTeam || '--'" />
- <CommonInfoRow label="到账日期" :value="projectData?.arrivalDate ? formatDate(projectData.arrivalDate) : '--'" />
- <CommonInfoRow label="到账金额(元)" :value="projectData?.arrivalFunds || '--'" />
- <CommonInfoRow label="备注" :value="projectData?.remark || '--'" noBorder />
- </CommonSection>
- </view>
- </template>
- <script setup lang="ts">
- import { computed } from 'vue';
- import { useDict } from '@/hooks/useDict';
- import { formatDate } from '@/utils/date';
- import { formatWithComma } from '@/utils/format';
- import { verticalProjectStatusOptions, getStatusLabel } from '@/constants/index';
- import CommonSection from '@/components/ui/CommonSection.vue';
- import CommonInfoRow from '@/components/ui/CommonInfoRow.vue';
- const props = defineProps<{
- projectData: any;
- }>();
- const { getDictLabel } = useDict('sci_pjt_level', 'project_class', 'sci_leader_type');
- /**
- * 计算属性:所属平台解析
- */
- const platformList = computed(() => {
- const belong = props.projectData?.belongPlatform;
- if (belong) {
- if (belong === '其他') return [{ platformName: '其他' }];
- try {
- const data = JSON.parse(belong);
- return Array.isArray(data) ? data : [];
- } catch (e) {
- return [{ platformName: belong }];
- }
- }
- return [];
- });
- const amountUnitFormatter = (num: any) => {
- return formatWithComma(num);
- };
- </script>
- <style lang="scss" scoped>
- .setup-wrapper {
- width: 100%;
- padding-bottom: 20px;
- }
- .platform-tags {
- display: flex;
- flex-wrap: wrap;
- gap: 8rpx;
- justify-content: flex-end;
- }
- .platform-tag {
- font-size: 24rpx;
- background-color: #e6f7ff;
- color: #1a9cff;
- padding: 4rpx 16rpx;
- border-radius: 6rpx;
- border: 1px solid #bae7ff;
- }
- </style>
|