|
|
@ -79,7 +79,7 @@ import { ref, toRaw, unref } from "vue"; |
|
|
|
import { debounce, isArray } from "lodash"; |
|
|
|
|
|
|
|
import { IExchangeOrder, addExchangeOrders, updateExchangeOrders } from "@/api/module/exchange_order"; |
|
|
|
import { fetchPaymentChannelAll } from "@/api/module/payment_channel"; |
|
|
|
import { fetchPaymentChannelOfUse } from "@/api/module/payment_channel"; |
|
|
|
import { EXCHANGE_STATUS, IF_STATUS } from "../enum"; |
|
|
|
|
|
|
|
const $props = defineProps<{ fetchData: Function }>(); |
|
|
@ -92,7 +92,7 @@ var operType = true; |
|
|
|
// 支付渠道下拉 |
|
|
|
const getPaymentChannelOptions= async () => { |
|
|
|
const params: any = {}; |
|
|
|
const { code, data } = await fetchPaymentChannelAll(params); |
|
|
|
const { code, data } = await fetchPaymentChannelOfUse(params); |
|
|
|
if (code) { |
|
|
|
return []; |
|
|
|
} |
|
|
|