列表优化

This commit is contained in:
dzl 2025-05-16 10:36:52 +08:00
parent a6db7a14b4
commit f591a34f3a

View File

@ -120,10 +120,10 @@
>退款失败</a-tag> >退款失败</a-tag>
</template> </template>
<template v-if="column.key === 'phone'"> <template v-if="column.key === 'phone'">
<a>{{record.phone}}</a> <a @click="viewUserInfo(record)">{{record.phone}}</a>
</template> </template>
<template v-if="column.key === 'cyclingOrderNumber'"> <template v-if="column.key === 'cyclingOrderNumber'">
<a>{{record.cyclingOrderNumber}}</a> <a @click="viewOrderInfo(record)">{{record.cyclingOrderNumber}}</a>
</template> </template>
<template v-if="column.key === 'action'"> <template v-if="column.key === 'action'">
<a-space> <a-space>
@ -177,7 +177,7 @@ import { message } from 'ant-design-vue'
import { callUser } from '@/apis/call.js' import { callUser } from '@/apis/call.js'
import config from '@/utils/config.js' import config from '@/utils/config.js'
import RefundOrderRevie from '@/views/form/refundorderrevie/RefundOrderRevie.vue'; import RefundOrderRevie from '@/views/form/refundorderrevie/RefundOrderRevie.vue';
import ConfirmRefund from '@/views/form/confirmrefund/ConfirmRefund.vue';
const activeKey = ref('1') const activeKey = ref('1')
const openRevie = ref(false); const openRevie = ref(false);