import { request } from '@/utils/request' export const payOrderApi = (data: { id: number; pay_way: string }) => { return request( { method: 'POST', url: '/order/pay', data, }, false, ) } export const postPayNotifyApi = (data: { id: number; pay_way: string }) => { return request( { method: 'POST', url: '/order/payNotify', data, }, false, ) }