| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <template>
- <view class="document-form">
- <uv-loading-icon v-if="loading" mode="circle" text="正在加载安评项目详情..."></uv-loading-icon>
- <template v-else-if="form">
- <!-- 基本信息 -->
- <CommonSection title="基本信息" :isFirst="true">
- <CommonInfoRow label="项目编号" :value="form.projectCode || '-'" />
- <CommonInfoRow label="项目名称" :value="form.projectName || '-'" />
- <CommonInfoRow label="学科分类" :value="getDictLabel('project_class', form.disciplineFirstName) || '-'" />
- <CommonInfoRow label="负责人类型" :value="form.projectLeaderType === '10' ? '教师' : form.projectLeaderType === '20' ? '学生' : '校外人员'" />
- <CommonInfoRow label="负责人" :value="form.projectLeaderName || '-'" />
- <CommonInfoRow label="合同类别" :value="getDictLabel('contract_type', form.contractType) || '-'" />
- <CommonInfoRow label="统计年度" :value="form.statisticalYear || '-'" />
- <CommonInfoRow label="签订时间" :value="formatDate(form.signDate)" />
- <CommonInfoRow label="项目时间" :value="`${formatDate(form.planStartDate)} 至 ${formatDate(form.planEndDate)}`" />
- <CommonInfoRow label="合同经费(元)" :value="`¥${formatAmount(form.contractFunds)}`" isAmount />
- <CommonInfoRow label="配套经费(元)" :value="`¥${formatAmount(form.supportFunds)}`" isAmount />
- <CommonInfoRow label="到账金额(元)" :value="`¥${formatAmount(form.arrivalFunds)}`" isAmount />
- <CommonInfoRow label="到账时间" :value="formatDate(form.arrivalDate)" />
- <CommonInfoRow label="所属平台" isColumn>
- <view class="platform-tags">
- <template v-if="platformList.length > 0">
- <uv-tags
- v-for="(p, index) in platformList"
- :key="index"
- :text="p.platformName === '其他' ? '其他' : (p.platformType ? p.platformName + ' (' + p.platformType + ')' : p.platformName)"
- type="primary"
- plain
- size="mini"
- class="mr5"
- ></uv-tags>
- </template>
- <text v-else>-</text>
- </view>
- </CommonInfoRow>
- <CommonInfoRow label="所属团队" :value="form.belongTeam || '-'" />
- <CommonInfoRow label="备注" :value="form.remark || '无'" isColumn noBorder />
- </CommonSection>
- <!-- 合作单位 -->
- <view class="common-section-card mt20" v-if="form.companyList?.length">
- <view class="section-title">合作单位</view>
- <view class="company-list">
- <view class="company-item" v-for="(comp, index) in form.companyList" :key="index">
- <view class="comp-header">
- <text class="c-name">{{ comp.compName }}</text>
- <text class="c-tag">{{ getDictLabel('project_company_type', comp.contractParty) }}</text>
- </view>
- <view class="c-body">
- <view class="c-line"><text class="l">单位级别:</text><text class="v">{{ getDictLabel('sci_tripartite_type', comp.compType) }}</text></view>
- <view class="c-line"><text class="l">联系人:</text><text class="v">{{ comp.compContact || '-' }} ({{ comp.compPhoneNum || '-' }})</text></view>
- </view>
- </view>
- </view>
- </view>
- <!-- 成员信息 -->
- <view class="common-section-card mt20" v-if="form.member?.length">
- <view class="section-title">成员信息</view>
- <view class="member-list">
- <view class="member-item" v-for="(row, index) in form.member" :key="index">
- <view class="member-header">
- <text class="m-name">{{ row.memberName }}</text>
- <text class="m-tag leader" v-if="row.projectRole === '10'">负责人</text>
- <text class="m-tag参与人 v-else">参与人</text>
- <text class="m-rate" v-if="row.contributionRate">贡献率: {{ row.contributionRate }}%</text>
- </view>
- <view class="m-body">
- <view class="m-line" v-if="row.deptName"><text class="l">所属科室:</text><text class="v">{{ row.deptName }}</text></view>
- <view class="m-line" v-if="row.technicalTitle"><text class="l">职称:</text><text class="v">{{ row.technicalTitle }}</text></view>
- <view class="m-line" v-if="row.degree"><text class="l">学位:</text><text class="v">{{ getDictLabel('sci_academic_degree', row.degree) }}</text></view>
- <view class="m-line" v-if="row.responsibleContent"><text class="l">负责内容:</text><text class="v">{{ row.responsibleContent }}</text></view>
- </view>
- </view>
- </view>
- </view>
- <!-- 预算信息 -->
- <view class="common-section-card mt20" v-if="form.budget?.length">
- <view class="section-title">预算信息</view>
- <view class="budget-list">
- <view class="budget-item" v-for="(item, index) in form.budget" :key="index">
- <view class="b-header">
- <text class="b-name">{{ item.fundsSubjName }}</text>
- <text class="b-tag">{{ item.fundsClass === '10' ? '直接费用' : '间接费用/管理费' }}</text>
- </view>
- <view class="b-grid">
- <view class="g-item"><text class="l">财政拨款</text><text class="v">¥{{ item.projectFundsAmount || 0 }}</text></view>
- <view class="g-item"><text class="l">匹配经费</text><text class="v">¥{{ item.otherFundsAmount || 0 }}</text></view>
- <view class="g-item"><text class="l">自筹经费</text><text class="v">¥{{ item.raiseFundsAmount || 0 }}</text></view>
- <view class="g-item total"><text class="l">预算金额</text><text class="v">¥{{ item.totalFundsAmount || 0 }}</text></view>
- </view>
- </view>
- </view>
- </view>
- <!-- 附件信息 -->
- <view class="common-section-card mt20" v-if="form.files?.length">
- <view class="section-title">附件资料</view>
- <view class="attachment-list">
- <view class="file-item" v-for="(file, index) in form.files" :key="index" @click="previewFile(file.fileUrl, file.fileName)">
- <view class="file-info-box">
- <text class="f-name">{{ file.fileName }}</text>
- <text class="f-type">{{ file.fileType || '附件' }}</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <uv-empty v-else mode="data" text="暂无数据"></uv-empty>
- </view>
- </template>
- <script setup lang="ts">
- import { ref, onMounted, watch, computed } from 'vue';
- import { useDict } from '@/hooks/useDict';
- import { useDocumentApi } from '@/api/document';
- import { previewFile } from '@/utils/file';
- import { formatAmount } from '@/utils/format';
- import { formatDate } from '@/utils/date';
- import to from 'await-to-js';
- import CommonSection from '@/components/ui/CommonSection.vue';
- import CommonInfoRow from '@/components/ui/CommonInfoRow.vue';
- const props = defineProps<{
- code: string;
- }>();
- const { getDictLabel } = useDict('project_class', 'contract_type', 'project_company_type', 'sci_tripartite_type', 'sci_academic_degree');
- const documentApi = useDocumentApi();
- const form = ref<any>(null);
- const loading = ref(false);
- const fetchData = async () => {
- if (!props.code) return;
- loading.value = true;
- const [err, res] = await to(documentApi.getSafetyByCode(props.code));
- if (!err && res?.data) {
- form.value = res.data;
- }
- loading.value = false;
- };
- const platformList = computed(() => {
- if (form.value?.belongPlatform) {
- try {
- const data = JSON.parse(form.value.belongPlatform);
- return Array.isArray(data) ? data : [];
- } catch (e) {
- if (form.value.belongPlatform === '其他') return [{ platformName: '其他' }];
- return [{ platformName: form.value.belongPlatform }];
- }
- }
- return [];
- });
- onMounted(() => {
- fetchData();
- });
- watch(() => props.code, () => {
- fetchData();
- });
- </script>
- <style lang="scss" scoped>
- @import "./common.scss";
- .platform-tags {
- display: flex;
- flex-wrap: wrap;
- gap: 10rpx;
- justify-content: flex-end;
- flex: 1;
- .p-tag {
- font-size: 22rpx;
- background-color: #f0f7ff;
- color: #007aff;
- padding: 4rpx 12rpx;
- border-radius: 4rpx;
- }
- }
- .num-color {
- color: #666;
- font-weight: 500;
- }
- .company-item, .budget-item {
- background-color: #fcfdfe;
- border: 1rpx solid #eff3f8;
- border-radius: 12rpx;
- padding: 24rpx;
- margin-bottom: 20rpx;
-
- .comp-header, .b-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16rpx;
- padding-bottom: 12rpx;
- border-bottom: 1rpx solid #f1f5f9;
-
- .c-name, .b-name {
- font-size: 28rpx;
- font-weight: 600;
- color: #333;
- }
-
- .c-tag, .b-tag {
- font-size: 20rpx;
- padding: 2rpx 12rpx;
- border-radius: 4rpx;
- background-color: #f8fafc;
- color: #64748b;
- }
- }
-
- .c-body {
- .c-line {
- display: flex;
- font-size: 24rpx;
- margin-bottom: 8rpx;
- .l { color: #94a3b8; width: 140rpx; }
- .v { color: #475569; }
- }
- }
-
- .b-grid {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 12rpx;
-
- .g-item {
- display: flex;
- flex-direction: column;
- background-color: #f8fafc;
- padding: 12rpx;
- border-radius: 8rpx;
-
- .l { font-size: 20rpx; color: #94a3b8; margin-bottom: 4rpx; }
- .v { font-size: 24rpx; color: #475569; font-weight: 500; }
-
- &.total {
- background-color: #f0f7ff;
- .v { color: #1c9bfd; font-weight: bold; }
- }
- }
- }
- }
- .attachment-list {
- .file-item {
- display: flex;
- align-items: center;
- padding: 20rpx;
- background-color: #f8fbfd;
- border-radius: 12rpx;
- border: 1rpx solid #eef2f7;
- margin-bottom: 16rpx;
-
- .file-info-box {
- flex: 1;
- display: flex;
- flex-direction: column;
-
- .f-name {
- font-size: 26rpx;
- color: #1c9bfd;
- word-break: break-all;
- }
-
- .f-type {
- font-size: 20rpx;
- color: #94a3b8;
- margin-top: 4rpx;
- }
- }
- }
- }
- .m-rate {
- font-size: 22rpx;
- color: #94a3b8;
- margin-left: auto;
- }
- </style>
|