Merge branch 'master' of http://120.26.58.240:8888/r/12333GovernmentWeb
| | |
| | | { label: '是', value: true }, |
| | | { label: '否', value: false }, |
| | | ]; |
| | | |
| | | export const Colors = { |
| | | Success: 'var(--el-color-success)', |
| | | Warning: 'var(--el-color-warning)', |
| | | Danger: 'var(--el-color-danger)', |
| | | }; |
| | |
| | | import { Colors } from './enum'; |
| | | |
| | | export enum BountyCheckStatusEnum { |
| | | /** |
| | | * 未提交 |
| | |
| | | [BountyCheckStatusEnum.CheckReject]: '驳回', |
| | | }; |
| | | |
| | | export const BountyCheckStatusEnumColor = { |
| | | [BountyCheckStatusEnum.NotSubmit]: '', |
| | | [BountyCheckStatusEnum.WaitCheck]: Colors.Warning, |
| | | [BountyCheckStatusEnum.CheckPassed]: Colors.Success, |
| | | [BountyCheckStatusEnum.CheckReject]: Colors.Danger, |
| | | }; |
| | | |
| | | export enum SettleStatusEnum { |
| | | /** |
| | | * 待发放 |
| | |
| | | <div class="page-form-layout-title"> |
| | | 申报详情 |
| | | <span class="page-form-layout-title-item status"> |
| | | {{ `审核状态:${BountyCheckStatusEnumText[form.outCheckStatus]}` }} |
| | | 审核状态:<span :style="{ color: BountyCheckStatusEnumColor[form.outCheckStatus] }">{{ |
| | | BountyCheckStatusEnumText[form.outCheckStatus] |
| | | }}</span> |
| | | </span> |
| | | <span |
| | | v-if="form.outCheckStatus === BountyCheckStatusEnum.CheckReject" |
| | |
| | | import { convertApi2FormUrlOnlyOne, setOSSLink } from '@/utils'; |
| | | import { useRouteView } from '@/hooks'; |
| | | import { OrderInputType } from '@bole-core/core'; |
| | | import { AuthTypeText, BountyCheckStatusEnum, BountyCheckStatusEnumText } from '@/constants'; |
| | | import { |
| | | AuthTypeText, |
| | | BountyCheckStatusEnum, |
| | | BountyCheckStatusEnumText, |
| | | BountyCheckStatusEnumColor, |
| | | } from '@/constants'; |
| | | import { FourStreamsMaterialFileTableItem } from '@/components/commonView/types'; |
| | | import { FourStreamsMaterialUtils } from '@/components/commonView/utils'; |
| | | import { useIndustrialParkDropDownList } from '@/hooks/industrialPark'; |