REVIEW 退款订单

This commit is contained in:
YunaiV
2023-04-11 23:01:51 +08:00
parent 8863d1d080
commit 30cf8008ce
4 changed files with 277 additions and 334 deletions

View File

@ -233,7 +233,7 @@ import { DICT_TYPE, getIntDictOptions, getStrDictOptions } from '@/utils/dict'
import { dateFormatter } from '@/utils/formatTime'
import * as MerchantApi from '@/api/pay/merchant'
import * as OrderApi from '@/api/pay/order'
import OrderDetail from '@/views/pay/order/OrderDetail.vue'
import OrderDetail from './OrderDetail.vue'
const message = useMessage() // 消息弹窗
import download from '@/utils/download'
@ -314,7 +314,7 @@ const handleExport = async () => {
/** 预览详情 */
const detailRef = ref()
const openDetail = (id?: number) => {
const openDetail = (id: number) => {
detailRef.value.open(id)
}