|  |  |  | 
|---|
|  |  |  | <ProTableV2 v-bind="proTableProps" :columns="column" :operationBtns="operationBtns"> | 
|---|
|  |  |  | <template #checkStatus="{ data, row }"> | 
|---|
|  |  |  | <div style="display: flex; justify-content: center; align-items: center"> | 
|---|
|  |  |  | <!-- {{ EnterpriseRechargeStatusEnumTextWithdrawal[row.checkStatus] }} --> | 
|---|
|  |  |  | <!-- <el-tooltip | 
|---|
|  |  |  | {{ EnterpriseRechargeStatusEnumTextWithdrawal[row.checkStatus] }} | 
|---|
|  |  |  | <el-tooltip | 
|---|
|  |  |  | placement="top" | 
|---|
|  |  |  | v-if="row.checkStatus === EnterpriseRechargeStatusEnum.CheckReject && row.checkRemark" | 
|---|
|  |  |  | :content="row.checkRemark" | 
|---|
|  |  |  | > | 
|---|
|  |  |  | <el-icon color="#ff0000"><WarningFilled /></el-icon> | 
|---|
|  |  |  | </el-tooltip> --> | 
|---|
|  |  |  | </el-tooltip> | 
|---|
|  |  |  | </div> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | <template #operationBtn-checkBtn="{ data, row }"> | 
|---|
|  |  |  | 
|---|
|  |  |  | import { OrderInputType } from '@bole-core/core'; | 
|---|
|  |  |  | import * as parkBountyApplyServices from '@/services/api/ParkBountyApply'; | 
|---|
|  |  |  | import { useUser } from '@/hooks'; | 
|---|
|  |  |  | import { | 
|---|
|  |  |  | EnterpriseRechargeStatusEnumTextWithdrawal, | 
|---|
|  |  |  | EnterpriseRechargeStatusEnum, | 
|---|
|  |  |  | } from '@/constants'; | 
|---|
|  |  |  | import { convertApi2FormUrlBySeparator } from '@/utils'; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | defineOptions({ | 
|---|
|  |  |  | 
|---|
|  |  |  | }; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | const state = reactive({ ...BaseState }); | 
|---|
|  |  |  | const { userDetail } = useUser(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | const { | 
|---|
|  |  |  | getDataSource: getList, | 
|---|
|  |  |  | 
|---|
|  |  |  | checkTime: { type: 'date', format: 'YYYY-MM-DD' }, | 
|---|
|  |  |  | amount: { type: 'money' }, | 
|---|
|  |  |  | remainAmount: { type: 'money' }, | 
|---|
|  |  |  | // checkStatus: { type: 'enum', valueEnum: EnterpriseRechargeStatusEnumTextWithdrawal }, | 
|---|
|  |  |  | checkStatus: { type: 'enum', valueEnum: EnterpriseRechargeStatusEnumTextWithdrawal }, | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | } | 
|---|
|  |  |  | ); | 
|---|