| | |
| | | }}</span> |
| | | </span> |
| | | <span class="page-form-layout-title-item remark"> |
| | | <template v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject"> |
| | | <TextOverTooltip v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject"> |
| | | {{ `审核未通过原因:${form.outCheckRemark ?? ''}` }} |
| | | </template> |
| | | </TextOverTooltip> |
| | | </span> |
| | | </div> |
| | | </template> |
| | |
| | | PageFormLayout, |
| | | useTable, |
| | | useFormDialog, |
| | | TextOverTooltip, |
| | | } from '@bole-core/components'; |
| | | import ChunkCellV2 from '@/components/Layout/ChunkCellV2.vue'; |
| | | import DetailView from '@/components/commonView/DetailView.vue'; |
| | |
| | | enterpriseOperateFileUrl: [] as UploadUserFile[], |
| | | bountyAssignFileUlr: [] as UploadUserFile[], |
| | | bountyCollectFileUrl: [] as UploadUserFile[], |
| | | enterpriseRelateFileUrl: [] as UploadUserFile[], |
| | | |
| | | outCheckStatus: '' as any as BountyCheckStatusEnum, |
| | | outCheckRemark: '', |
| | |
| | | form.enterpriseOperateFileUrl = convertApi2FormUrlOnlyOne(data?.enterpriseOperateFileUrl); |
| | | form.bountyAssignFileUlr = convertApi2FormUrlOnlyOne(data?.bountyAssignFileUlr); |
| | | form.bountyCollectFileUrl = convertApi2FormUrlOnlyOne(data?.bountyCollectFileUrl); |
| | | form.enterpriseRelateFileUrl = convertApi2FormUrlOnlyOne(data?.enterpriseRelateFileUrl); |
| | | |
| | | getList(); |
| | | }, |
| | |
| | | }, |
| | | columnsRenderProps: { |
| | | authType: { type: 'enum', valueEnum: EnterpriseTypeText }, |
| | | licenseUrl: { |
| | | type: 'url', |
| | | formatter: (row: API.UserCertificationAuditListDto) => setOSSLink(row.licenseUrl), |
| | | modal: true, |
| | | showDownloadBtn: false, |
| | | }, |
| | | }, |
| | | } |
| | | ); |