|
@@ -8,14 +8,14 @@
|
|
|
@cancel="cancel"
|
|
@cancel="cancel"
|
|
|
width="890px">
|
|
width="890px">
|
|
|
<template #footer>
|
|
<template #footer>
|
|
|
- <a-button key="submit"
|
|
|
|
|
- type="primary"
|
|
|
|
|
- :loading="loading"
|
|
|
|
|
- @click="submit">确认</a-button>
|
|
|
|
|
- <a-button key="cancel"
|
|
|
|
|
- type="primary"
|
|
|
|
|
- :loading="loading"
|
|
|
|
|
- @click="cancel">关闭</a-button>
|
|
|
|
|
|
|
+ <a-button key="submit"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :loading="loading"
|
|
|
|
|
+ @click="submit">确认</a-button>
|
|
|
|
|
+ <a-button key="cancel"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ :loading="loading"
|
|
|
|
|
+ @click="cancel">关闭</a-button>
|
|
|
</template>
|
|
</template>
|
|
|
<CommomDetail :selectedRow="selectedRow" />
|
|
<CommomDetail :selectedRow="selectedRow" />
|
|
|
</a-modal>
|
|
</a-modal>
|
|
@@ -26,11 +26,11 @@ import { closeModal } from '@/common/setup/modal/index';
|
|
|
import { QueryCustomInfoType } from '@/services/go/ermcp/customInfo/interface';
|
|
import { QueryCustomInfoType } from '@/services/go/ermcp/customInfo/interface';
|
|
|
import CommomDetail from '../common-detail/index.vue';
|
|
import CommomDetail from '../common-detail/index.vue';
|
|
|
import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
|
|
import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
|
|
|
-import {t2bExchConfirmBusinessReq} from "@/services/proto/manager/interface";
|
|
|
|
|
-import {getTimeValue} from "@/utils/time";
|
|
|
|
|
-import {getUserId} from "@/services/bus/account";
|
|
|
|
|
-import {t2bExchConfirmBusiness} from "@/services/proto/manager";
|
|
|
|
|
-import {QhjAccountOutInApply} from "@/services/go/ermcp/qhj/interface";
|
|
|
|
|
|
|
+import { t2bExchConfirmBusinessReq } from '@/services/proto/manager/interface';
|
|
|
|
|
+import { getTimeValue } from '@/utils/time';
|
|
|
|
|
+import { getUserId } from '@/services/bus/account';
|
|
|
|
|
+import { t2bExchConfirmBusiness } from '@/services/proto/manager';
|
|
|
|
|
+import { QhjAccountOutInApply } from '@/services/go/ermcp/qhj/interface';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
name: 'platinum_withdrawal_review_confirm_withdrawal',
|
|
name: 'platinum_withdrawal_review_confirm_withdrawal',
|
|
@@ -50,12 +50,12 @@ export default defineComponent({
|
|
|
AccountCode: props.selectedRow.accountcode, // 资金账户(交易所的出入金,填0)
|
|
AccountCode: props.selectedRow.accountcode, // 资金账户(交易所的出入金,填0)
|
|
|
exchticket: props.selectedRow.exchticket, // 交易所流水号(被审核的流水)
|
|
exchticket: props.selectedRow.exchticket, // 交易所流水号(被审核的流水)
|
|
|
tradedate: props.selectedRow.tradedate, // 交易日(被审业务发生的交易日)
|
|
tradedate: props.selectedRow.tradedate, // 交易日(被审业务发生的交易日)
|
|
|
- extoperatorid: getTimeValue(), // 外部操作流水号
|
|
|
|
|
|
|
+ extoperatorid: getTimeValue(), // 外部操作流水号
|
|
|
bankticket: props.selectedRow.bankticket, // 中心流水号
|
|
bankticket: props.selectedRow.bankticket, // 中心流水号
|
|
|
- businessconfirmstatus: 1,// 审核结果 1: 通过 2: 拒绝
|
|
|
|
|
- businesstype: props.selectedRow.executetype === 1 ? 2 : 1, // 交易类型 1: 入金 2:出金 3: 签约 4: 解约
|
|
|
|
|
- auditid: Number(getUserId()) // 审核人
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ businessconfirmstatus: 1, // 审核结果 1: 通过 2: 拒绝
|
|
|
|
|
+ businesstype: props.selectedRow.executetype === 1 ? 2 : 1, // 交易类型 1: 入金 2:出金 3: 签约 4: 解约
|
|
|
|
|
+ auditid: Number(getUserId()), // 审核人
|
|
|
|
|
+ };
|
|
|
|
|
|
|
|
requestResultLoadingAndInfo(t2bExchConfirmBusiness, reqParams, loading, ['确认提现成功', '确认提现失败:']).then(() => {
|
|
requestResultLoadingAndInfo(t2bExchConfirmBusiness, reqParams, loading, ['确认提现成功', '确认提现失败:']).then(() => {
|
|
|
cancel();
|
|
cancel();
|