1173 lines
37 KiB
Vue
1173 lines
37 KiB
Vue
<template>
|
||
<ArtTableFullScreen>
|
||
<div class="order-list-page" id="table-full-screen">
|
||
<!-- 搜索栏 -->
|
||
<ArtSearchBar
|
||
v-model:filter="searchForm"
|
||
:items="searchFormItems"
|
||
:show-expand="false"
|
||
@reset="handleReset"
|
||
@search="handleSearch"
|
||
></ArtSearchBar>
|
||
|
||
<ElCard shadow="never" class="art-table-card">
|
||
<!-- 表格头部 -->
|
||
<ArtTableHeader
|
||
:columnList="columnOptions"
|
||
v-model:columns="columnChecks"
|
||
@refresh="handleRefresh"
|
||
>
|
||
<template #left>
|
||
<ElButton @click="showCreateDialog" v-permission="'orders:add'">{{
|
||
'创建订单'
|
||
}}</ElButton>
|
||
</template>
|
||
</ArtTableHeader>
|
||
|
||
<!-- 表格 -->
|
||
<ArtTable
|
||
ref="tableRef"
|
||
row-key="id"
|
||
:loading="loading"
|
||
:data="orderList"
|
||
:currentPage="pagination.page"
|
||
:pageSize="pagination.page_size"
|
||
:total="pagination.total"
|
||
:marginTop="10"
|
||
:actions="getActions"
|
||
:actionsWidth="120"
|
||
@size-change="handleSizeChange"
|
||
@current-change="handleCurrentChange"
|
||
>
|
||
<template #default>
|
||
<ElTableColumn v-for="col in columns" :key="col.prop || col.type" v-bind="col" />
|
||
</template>
|
||
</ArtTable>
|
||
|
||
<!-- 创建订单对话框 -->
|
||
<ElDialog
|
||
v-model="createDialogVisible"
|
||
:title="'创建订单'"
|
||
width="600px"
|
||
@closed="handleCreateDialogClosed"
|
||
>
|
||
<ElForm ref="createFormRef" :model="createForm" :rules="createRules" label-width="120px">
|
||
<ElFormItem :label="'订单类型'" prop="order_type">
|
||
<ElSelect
|
||
v-model="createForm.order_type"
|
||
:placeholder="'请选择订单类型'"
|
||
style="width: 100%"
|
||
>
|
||
<ElOption :label="'单卡订单'" value="single_card" />
|
||
<ElOption :label="'设备订单'" value="device" />
|
||
</ElSelect>
|
||
</ElFormItem>
|
||
<ElFormItem
|
||
v-if="createForm.order_type === 'single_card'"
|
||
:label="'IoT卡'"
|
||
prop="iot_card_id"
|
||
>
|
||
<ElSelect
|
||
v-model="createForm.iot_card_id"
|
||
filterable
|
||
remote
|
||
reserve-keyword
|
||
:placeholder="'请选择IoT卡'"
|
||
:remote-method="searchIotCards"
|
||
:loading="cardSearchLoading"
|
||
style="width: 100%"
|
||
clearable
|
||
>
|
||
<ElOption
|
||
v-for="card in iotCardOptions"
|
||
:key="card.id"
|
||
:label="`${card.iccid} (${card.msisdn || '无接入号'})`"
|
||
:value="card.id"
|
||
>
|
||
<div style="display: flex; justify-content: space-between">
|
||
<span>{{ card.iccid }}</span>
|
||
<span style="font-size: 12px; color: var(--el-text-color-secondary)">
|
||
{{ card.msisdn || '无接入号' }}
|
||
</span>
|
||
</div>
|
||
</ElOption>
|
||
</ElSelect>
|
||
</ElFormItem>
|
||
<ElFormItem v-if="createForm.order_type === 'device'" :label="'设备'" prop="device_id">
|
||
<ElSelect
|
||
v-model="createForm.device_id"
|
||
filterable
|
||
remote
|
||
reserve-keyword
|
||
:placeholder="'请选择设备'"
|
||
:remote-method="searchDevices"
|
||
:loading="deviceSearchLoading"
|
||
style="width: 100%"
|
||
clearable
|
||
>
|
||
<ElOption
|
||
v-for="device in deviceOptions"
|
||
:key="device.id"
|
||
:label="`${device.virtual_no} (${device.device_name})`"
|
||
:value="device.id"
|
||
>
|
||
<div style="display: flex; justify-content: space-between">
|
||
<span>{{ device.virtual_no }}</span>
|
||
<span style="font-size: 12px; color: var(--el-text-color-secondary)">
|
||
{{ device.device_name }}
|
||
</span>
|
||
</div>
|
||
</ElOption>
|
||
</ElSelect>
|
||
</ElFormItem>
|
||
<ElFormItem :label="'套餐'" prop="package_ids">
|
||
<ElSelect
|
||
v-model="createForm.package_ids"
|
||
:placeholder="'请选择套餐'"
|
||
multiple
|
||
filterable
|
||
remote
|
||
reserve-keyword
|
||
:remote-method="handlePackageSearch"
|
||
:loading="packageSearchLoading"
|
||
:disabled="
|
||
(!createForm.iot_card_id && !createForm.device_id) ||
|
||
(createForm.order_type === 'single_card' && !createForm.iot_card_id) ||
|
||
(createForm.order_type === 'device' && !createForm.device_id)
|
||
"
|
||
clearable
|
||
style="width: 100%"
|
||
>
|
||
<ElOption
|
||
v-for="pkg in packageOptions"
|
||
:key="pkg.id"
|
||
:label="`${pkg.package_name} (¥${((pkg.cost_price || 0) / 100).toFixed(2)})`"
|
||
:value="pkg.id"
|
||
>
|
||
<div style="display: flex; justify-content: space-between">
|
||
<span>{{ pkg.package_name }}</span>
|
||
<span style="font-size: 12px; color: var(--el-text-color-secondary)">
|
||
¥{{ ((pkg.cost_price || 0) / 100).toFixed(2) }}
|
||
</span>
|
||
</div>
|
||
</ElOption>
|
||
</ElSelect>
|
||
</ElFormItem>
|
||
<ElFormItem label="支付方式" prop="payment_method">
|
||
<ElSelect
|
||
v-model="createForm.payment_method"
|
||
placeholder="请选择支付方式"
|
||
style="width: 100%"
|
||
>
|
||
<ElOption label="钱包支付" value="wallet" />
|
||
<!-- 只有平台用户(user_type 1:超级管理员, 2:平台用户)才显示线下支付选项 -->
|
||
<ElOption
|
||
v-if="userStore.info.user_type === 1 || userStore.info.user_type === 2"
|
||
label="线下支付"
|
||
value="offline"
|
||
/>
|
||
</ElSelect>
|
||
<div style="margin-top: 8px; font-size: 12px; color: var(--el-text-color-secondary)">
|
||
<template v-if="createForm.payment_method === 'wallet'">
|
||
提示: 使用钱包支付时,订单将直接完成
|
||
</template>
|
||
<template v-else-if="createForm.payment_method === 'offline'">
|
||
提示: 线下支付订单需要手动确认支付
|
||
</template>
|
||
</div>
|
||
</ElFormItem>
|
||
<ElFormItem
|
||
v-if="createForm.payment_method === 'offline'"
|
||
label="支付凭证"
|
||
prop="payment_voucher_key"
|
||
>
|
||
<ElUpload
|
||
ref="uploadRef"
|
||
:auto-upload="false"
|
||
:on-change="handleVoucherFileChange"
|
||
:on-remove="handleRemoveVoucher"
|
||
accept="image/*"
|
||
list-type="picture-card"
|
||
:limit="1"
|
||
>
|
||
<el-icon><Plus /></el-icon>
|
||
<template #tip>
|
||
<div class="el-upload__tip">支持 jpg、png 格式,文件大小不超过 5MB</div>
|
||
</template>
|
||
</ElUpload>
|
||
</ElFormItem>
|
||
</ElForm>
|
||
<template #footer>
|
||
<div class="dialog-footer">
|
||
<ElButton @click="createDialogVisible = false">{{ '取消' }}</ElButton>
|
||
<ElButton
|
||
type="primary"
|
||
@click="handleCreateOrder(createFormRef)"
|
||
:loading="createLoading"
|
||
>
|
||
{{ '提交' }}
|
||
</ElButton>
|
||
</div>
|
||
</template>
|
||
</ElDialog>
|
||
|
||
<!-- 订单详情对话框 -->
|
||
<ElDialog v-model="detailDialogVisible" :title="'订单详情'" width="800px">
|
||
<div v-if="currentOrder" class="order-detail">
|
||
<ElDescriptions :column="2" border>
|
||
<ElDescriptionsItem :label="'订单编号'">
|
||
{{ currentOrder.order_no }}
|
||
</ElDescriptionsItem>
|
||
<ElDescriptionsItem :label="'订单类型'">
|
||
{{ getOrderTypeText(currentOrder.order_type) }}
|
||
</ElDescriptionsItem>
|
||
<ElDescriptionsItem :label="'支付状态'">
|
||
<ElTag :type="getPaymentStatusType(currentOrder.payment_status)">
|
||
{{ currentOrder.payment_status_text }}
|
||
</ElTag>
|
||
</ElDescriptionsItem>
|
||
<ElDescriptionsItem :label="'订单金额'">
|
||
{{ formatCurrency(currentOrder.total_amount) }}
|
||
</ElDescriptionsItem>
|
||
<ElDescriptionsItem :label="'支付方式'">
|
||
{{ getPaymentMethodText(currentOrder.payment_method) }}
|
||
</ElDescriptionsItem>
|
||
<ElDescriptionsItem :label="'买家类型'">
|
||
{{ getBuyerTypeText(currentOrder.buyer_type) }}
|
||
</ElDescriptionsItem>
|
||
<ElDescriptionsItem :label="'佣金状态'">
|
||
{{ getCommissionStatusText(currentOrder.commission_status) }}
|
||
</ElDescriptionsItem>
|
||
<ElDescriptionsItem :label="'支付时间'">
|
||
{{ currentOrder.paid_at ? formatDateTime(currentOrder.paid_at) : '-' }}
|
||
</ElDescriptionsItem>
|
||
<ElDescriptionsItem :label="'创建时间'">
|
||
{{ formatDateTime(currentOrder.created_at) }}
|
||
</ElDescriptionsItem>
|
||
<ElDescriptionsItem :label="'更新时间'">
|
||
{{ formatDateTime(currentOrder.updated_at) }}
|
||
</ElDescriptionsItem>
|
||
</ElDescriptions>
|
||
|
||
<!-- 订单项列表 -->
|
||
<div
|
||
v-if="currentOrder.items && currentOrder.items.length > 0"
|
||
style="margin-top: 20px"
|
||
>
|
||
<h4>{{ '订单项' }}</h4>
|
||
<ElTable :data="currentOrder.items" border style="margin-top: 10px">
|
||
<ElTableColumn prop="package_name" :label="'套餐名称'" min-width="150" />
|
||
<ElTableColumn prop="quantity" :label="'数量'" width="100" />
|
||
<ElTableColumn prop="unit_price" :label="'单价'" width="120">
|
||
<template #default="{ row }">
|
||
{{ formatCurrency(row.unit_price) }}
|
||
</template>
|
||
</ElTableColumn>
|
||
<ElTableColumn prop="amount" :label="'金额'" width="120">
|
||
<template #default="{ row }">
|
||
{{ formatCurrency(row.amount) }}
|
||
</template>
|
||
</ElTableColumn>
|
||
</ElTable>
|
||
</div>
|
||
</div>
|
||
<template #footer>
|
||
<div class="dialog-footer">
|
||
<ElButton @click="detailDialogVisible = false">{{ '关闭' }}</ElButton>
|
||
</div>
|
||
</template>
|
||
</ElDialog>
|
||
</ElCard>
|
||
</div>
|
||
</ArtTableFullScreen>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { h } from 'vue'
|
||
import { useRouter } from 'vue-router'
|
||
import { OrderService, CardService, DeviceService, PackageManageService, StorageService } from '@/api/modules'
|
||
import { ElMessage, ElMessageBox, ElTag } from 'element-plus'
|
||
import { Plus } from '@element-plus/icons-vue'
|
||
import type { FormInstance, FormRules, UploadInstance, UploadFile } from 'element-plus'
|
||
import type {
|
||
Order,
|
||
OrderQueryParams,
|
||
CreateOrderRequest,
|
||
PaymentStatus,
|
||
OrderType,
|
||
BuyerType,
|
||
OrderPaymentMethod,
|
||
OrderCommissionStatus,
|
||
StandaloneIotCard,
|
||
Device,
|
||
PackageResponse,
|
||
PurchaseCheckRequest
|
||
} from '@/types/api'
|
||
import type { SearchFormItem } from '@/types'
|
||
import { useCheckedColumns } from '@/composables/useCheckedColumns'
|
||
import { useAuth } from '@/composables/useAuth'
|
||
import { useUserStore } from '@/store/modules/user'
|
||
import { formatDateTime } from '@/utils/business/format'
|
||
import { RoutesAlias } from '@/router/routesAlias'
|
||
|
||
defineOptions({ name: 'OrderList' })
|
||
|
||
const router = useRouter()
|
||
const { hasAuth } = useAuth()
|
||
const userStore = useUserStore()
|
||
|
||
const loading = ref(false)
|
||
const createLoading = ref(false)
|
||
const tableRef = ref()
|
||
const createDialogVisible = ref(false)
|
||
const detailDialogVisible = ref(false)
|
||
const currentOrder = ref<Order | null>(null)
|
||
|
||
// 搜索表单初始值
|
||
const initialSearchState: OrderQueryParams = {
|
||
order_no: '',
|
||
payment_status: undefined,
|
||
order_type: undefined,
|
||
purchase_role: undefined,
|
||
start_time: '',
|
||
end_time: ''
|
||
}
|
||
|
||
// 搜索表单
|
||
const searchForm = reactive<OrderQueryParams>({ ...initialSearchState })
|
||
|
||
// 获取订单角色文本
|
||
const getPurchaseRoleText = (role: string): string => {
|
||
const roleMap: Record<string, string> = {
|
||
self_purchase: '自己购买',
|
||
purchased_by_parent: '上级代理购买',
|
||
purchased_by_platform: '平台代购',
|
||
purchase_for_subordinate: '给下级购买'
|
||
}
|
||
return roleMap[role] || role
|
||
}
|
||
|
||
// 搜索表单配置
|
||
const searchFormItems: SearchFormItem[] = [
|
||
{
|
||
label: '支付状态',
|
||
prop: 'payment_status',
|
||
type: 'select',
|
||
placeholder: '请选择支付状态',
|
||
options: [
|
||
{ label: '待支付', value: 1 },
|
||
{ label: '已支付', value: 2 },
|
||
{ label: '已取消', value: 3 },
|
||
{ label: '已退款', value: 4 }
|
||
],
|
||
config: {
|
||
clearable: true
|
||
}
|
||
},
|
||
{
|
||
label: '订单类型',
|
||
prop: 'order_type',
|
||
type: 'select',
|
||
placeholder: '请选择订单类型',
|
||
options: [
|
||
{ label: '单卡订单', value: 'single_card' },
|
||
{ label: '设备订单', value: 'device' }
|
||
],
|
||
config: {
|
||
clearable: true
|
||
}
|
||
},
|
||
{
|
||
label: '订单渠道',
|
||
prop: 'purchase_role',
|
||
type: 'select',
|
||
placeholder: '请选择订单渠道',
|
||
options: [
|
||
{ label: '自己购买', value: 'self_purchase' },
|
||
{ label: '上级代理购买', value: 'purchased_by_parent' },
|
||
{ label: '平台代购', value: 'purchased_by_platform' },
|
||
{ label: '给下级购买', value: 'purchase_for_subordinate' }
|
||
],
|
||
config: {
|
||
clearable: true
|
||
}
|
||
},
|
||
{
|
||
label: '创建时间',
|
||
prop: 'dateRange',
|
||
type: 'daterange',
|
||
config: {
|
||
clearable: true,
|
||
startPlaceholder: '开始时间',
|
||
endPlaceholder: '结束时间',
|
||
valueFormat: 'YYYY-MM-DD HH:mm:ss'
|
||
}
|
||
}
|
||
]
|
||
|
||
// 分页
|
||
const pagination = reactive({
|
||
page: 1,
|
||
page_size: 20,
|
||
total: 0
|
||
})
|
||
|
||
// 列配置
|
||
const columnOptions = [
|
||
{ label: '订单编号', prop: 'order_no' },
|
||
{ label: '订单类型', prop: 'order_type' },
|
||
{ label: '买家类型', prop: 'buyer_type' },
|
||
{ label: '订单渠道', prop: 'purchase_role' },
|
||
{ label: '购买备注', prop: 'purchase_remark' },
|
||
{ label: '操作者', prop: 'operator_name' },
|
||
{ label: '支付状态', prop: 'payment_status' },
|
||
{ label: '订单金额', prop: 'total_amount' },
|
||
{ label: '实付金额', prop: 'actual_paid_amount' },
|
||
{ label: '支付方式', prop: 'payment_method' },
|
||
{ label: '支付时间', prop: 'paid_at' },
|
||
{ label: '创建时间', prop: 'created_at' }
|
||
]
|
||
|
||
const createFormRef = ref<FormInstance>()
|
||
const uploadRef = ref<UploadInstance>()
|
||
|
||
// 处理支付凭证文件选择
|
||
const handleVoucherFileChange = async (uploadFile: UploadFile) => {
|
||
const file = uploadFile.raw
|
||
if (!file) return
|
||
|
||
// 验证文件类型
|
||
const isImage = file.type.startsWith('image/')
|
||
if (!isImage) {
|
||
ElMessage.error('只能上传图片文件!')
|
||
uploadRef.value?.clearFiles()
|
||
return
|
||
}
|
||
|
||
// 验证文件大小
|
||
const isLt5M = file.size / 1024 / 1024 < 5
|
||
if (!isLt5M) {
|
||
ElMessage.error('图片大小不能超过 5MB!')
|
||
uploadRef.value?.clearFiles()
|
||
return
|
||
}
|
||
|
||
// 开始上传
|
||
try {
|
||
ElMessage.info('正在上传支付凭证...')
|
||
|
||
// 1. 获取上传 URL
|
||
const uploadUrlRes = await StorageService.getUploadUrl({
|
||
file_name: file.name,
|
||
content_type: file.type,
|
||
purpose: 'attachment'
|
||
})
|
||
|
||
if (uploadUrlRes.code !== 0) {
|
||
ElMessage.error(uploadUrlRes.msg || '获取上传地址失败')
|
||
uploadRef.value?.clearFiles()
|
||
return
|
||
}
|
||
|
||
const { upload_url, file_key } = uploadUrlRes.data
|
||
|
||
// 2. 上传文件到对象存储
|
||
await StorageService.uploadFile(upload_url, file, file.type)
|
||
|
||
// 3. 保存 file_key
|
||
createForm.payment_voucher_key = file_key
|
||
ElMessage.success('上传成功')
|
||
} catch (error: any) {
|
||
console.error('上传失败:', error)
|
||
ElMessage.error(error.message || '上传失败,请重试')
|
||
createForm.payment_voucher_key = undefined
|
||
uploadRef.value?.clearFiles()
|
||
}
|
||
}
|
||
|
||
// 删除支付凭证
|
||
const handleRemoveVoucher = () => {
|
||
createForm.payment_voucher_key = undefined
|
||
}
|
||
|
||
const createRules = computed<FormRules>(() => {
|
||
const baseRules: FormRules = {
|
||
order_type: [
|
||
{
|
||
required: true,
|
||
message: '请选择订单类型',
|
||
trigger: 'change'
|
||
}
|
||
],
|
||
package_ids: [
|
||
{
|
||
required: true,
|
||
message: '请选择套餐',
|
||
trigger: 'change'
|
||
}
|
||
],
|
||
payment_method: [
|
||
{
|
||
required: true,
|
||
message: '请选择支付方式',
|
||
trigger: 'change'
|
||
}
|
||
]
|
||
}
|
||
|
||
// 线下支付时,支付凭证为必填
|
||
if (createForm.payment_method === 'offline') {
|
||
baseRules.payment_voucher_key = [
|
||
{
|
||
required: true,
|
||
message: '请上传支付凭证',
|
||
trigger: 'change'
|
||
}
|
||
]
|
||
}
|
||
|
||
return baseRules
|
||
})
|
||
|
||
const createForm = reactive<CreateOrderRequest>({
|
||
order_type: 'single_card',
|
||
package_ids: [],
|
||
iot_card_id: null,
|
||
device_id: null,
|
||
payment_method: 'wallet', // 默认使用钱包支付
|
||
payment_voucher_key: undefined // 线下支付凭证
|
||
})
|
||
|
||
const orderList = ref<Order[]>([])
|
||
|
||
// 套餐搜索相关
|
||
const packageOptions = ref<PackageResponse[]>([])
|
||
const packageSearchLoading = ref(false)
|
||
|
||
// IoT卡搜索相关
|
||
const iotCardOptions = ref<StandaloneIotCard[]>([])
|
||
const cardSearchLoading = ref(false)
|
||
|
||
// 设备搜索相关
|
||
const deviceOptions = ref<Device[]>([])
|
||
const deviceSearchLoading = ref(false)
|
||
|
||
// 搜索套餐(根据套餐名称,可选按series_id筛选)
|
||
const searchPackages = async (query: string, seriesId?: number) => {
|
||
packageSearchLoading.value = true
|
||
try {
|
||
const res = await PackageManageService.getPackages({
|
||
package_name: query || undefined,
|
||
series_id: seriesId,
|
||
page: 1,
|
||
page_size: 20,
|
||
status: 1, // 只获取启用的套餐
|
||
shelf_status: 1 // 只获取已上架的套餐
|
||
})
|
||
if (res.code === 0) {
|
||
packageOptions.value = res.data.items || []
|
||
}
|
||
} catch (error) {
|
||
console.error('Search packages failed:', error)
|
||
packageOptions.value = []
|
||
} finally {
|
||
packageSearchLoading.value = false
|
||
}
|
||
}
|
||
|
||
// 套餐远程搜索方法(自动使用当前选中的IOT卡/设备的series_id)
|
||
const handlePackageSearch = (query: string) => {
|
||
let seriesId: number | undefined
|
||
// 如果是单卡订单并且已选择IOT卡,使用该卡的series_id筛选
|
||
if (createForm.order_type === 'single_card' && createForm.iot_card_id) {
|
||
const selectedCard = iotCardOptions.value.find((card) => card.id === createForm.iot_card_id)
|
||
if (selectedCard && selectedCard.series_id) {
|
||
seriesId = selectedCard.series_id
|
||
}
|
||
} else if (createForm.order_type === 'device' && createForm.device_id) {
|
||
// 如果是设备订单并且已选择设备,使用设备的series_id筛选
|
||
const selectedDevice = deviceOptions.value.find((dev) => dev.id === createForm.device_id)
|
||
if (selectedDevice && selectedDevice.series_id) {
|
||
seriesId = selectedDevice.series_id
|
||
}
|
||
}
|
||
searchPackages(query, seriesId)
|
||
}
|
||
|
||
// 搜索IoT卡(根据ICCID)
|
||
const searchIotCards = async (query: string) => {
|
||
cardSearchLoading.value = true
|
||
try {
|
||
const res = await CardService.getStandaloneIotCards({
|
||
iccid: query || undefined,
|
||
page: 1,
|
||
page_size: 20
|
||
})
|
||
if (res.code === 0) {
|
||
iotCardOptions.value = res.data.items || []
|
||
}
|
||
} catch (error) {
|
||
console.error('Search IoT cards failed:', error)
|
||
iotCardOptions.value = []
|
||
} finally {
|
||
cardSearchLoading.value = false
|
||
}
|
||
}
|
||
|
||
// 搜索设备(根据设备号virtual_no)
|
||
const searchDevices = async (query: string) => {
|
||
deviceSearchLoading.value = true
|
||
try {
|
||
const res = await DeviceService.getDevices({
|
||
virtual_no: query || undefined,
|
||
page: 1,
|
||
page_size: 20
|
||
})
|
||
if (res.code === 0) {
|
||
deviceOptions.value = res.data.items || []
|
||
}
|
||
} catch (error) {
|
||
console.error('Search devices failed:', error)
|
||
deviceOptions.value = []
|
||
} finally {
|
||
deviceSearchLoading.value = false
|
||
}
|
||
}
|
||
|
||
// 格式化货币 - 将分转换为元
|
||
const formatCurrency = (amount: number): string => {
|
||
return `¥${(amount / 100).toFixed(2)}`
|
||
}
|
||
|
||
// 获取支付状态标签类型
|
||
const getPaymentStatusType = (
|
||
status: PaymentStatus
|
||
): 'success' | 'info' | 'warning' | 'danger' => {
|
||
const statusMap: Record<PaymentStatus, 'success' | 'info' | 'warning' | 'danger'> = {
|
||
1: 'warning', // 待支付
|
||
2: 'success', // 已支付
|
||
3: 'info', // 已取消
|
||
4: 'danger' // 已退款
|
||
}
|
||
return statusMap[status] || 'info'
|
||
}
|
||
|
||
// 获取订单类型文本
|
||
const getOrderTypeText = (type: OrderType): string => {
|
||
return type === 'single_card' ? '单卡订单' : '设备订单'
|
||
}
|
||
|
||
// 获取买家类型文本
|
||
const getBuyerTypeText = (type: BuyerType): string => {
|
||
return type === 'personal' ? '个人' : '代理'
|
||
}
|
||
|
||
// 获取支付方式文本
|
||
const getPaymentMethodText = (method: OrderPaymentMethod): string => {
|
||
const methodMap: Record<OrderPaymentMethod, string> = {
|
||
wallet: '钱包',
|
||
wechat: '微信',
|
||
alipay: '支付宝',
|
||
offline: '线下'
|
||
}
|
||
return methodMap[method] || method
|
||
}
|
||
|
||
// 获取佣金状态文本
|
||
const getCommissionStatusText = (status: OrderCommissionStatus): string => {
|
||
const statusMap: Record<OrderCommissionStatus, string> = {
|
||
0: '不适用',
|
||
1: '待结算',
|
||
2: '已结算'
|
||
}
|
||
return statusMap[status] || '-'
|
||
}
|
||
|
||
// 动态列配置
|
||
const { columnChecks, columns } = useCheckedColumns(() => [
|
||
{
|
||
prop: 'order_no',
|
||
label: '订单编号',
|
||
minWidth: 220,
|
||
formatter: (row: Order) => {
|
||
return h(
|
||
'span',
|
||
{
|
||
style: 'color: var(--el-color-primary); cursor: pointer; text-decoration: underline;',
|
||
onClick: (e: MouseEvent) => {
|
||
e.stopPropagation()
|
||
handleNameClick(row)
|
||
}
|
||
},
|
||
row.order_no
|
||
)
|
||
}
|
||
},
|
||
{
|
||
prop: 'order_type',
|
||
label: '订单类型',
|
||
width: 120,
|
||
formatter: (row: Order) => {
|
||
return h(ElTag, { type: row.order_type === 'single_card' ? 'primary' : 'success' }, () =>
|
||
getOrderTypeText(row.order_type)
|
||
)
|
||
}
|
||
},
|
||
{
|
||
prop: 'buyer_type',
|
||
label: '买家类型',
|
||
width: 120,
|
||
formatter: (row: Order) => {
|
||
return h(ElTag, { type: row.buyer_type === 'personal' ? 'info' : 'warning' }, () =>
|
||
getBuyerTypeText(row.buyer_type)
|
||
)
|
||
}
|
||
},
|
||
{
|
||
prop: 'purchase_role',
|
||
label: '订单渠道',
|
||
width: 140,
|
||
formatter: (row: Order) => {
|
||
if (!row.purchase_role) return '-'
|
||
const roleTypeMap: Record<string, 'success' | 'info' | 'warning' | 'danger'> = {
|
||
self_purchase: 'success',
|
||
purchased_by_parent: 'warning',
|
||
purchased_by_platform: 'danger',
|
||
purchase_for_subordinate: 'info'
|
||
}
|
||
return h(ElTag, { type: roleTypeMap[row.purchase_role || ''] || 'info', size: 'small' }, () =>
|
||
getPurchaseRoleText(row.purchase_role || '')
|
||
)
|
||
}
|
||
},
|
||
{
|
||
prop: 'purchase_remark',
|
||
label: '购买备注',
|
||
minWidth: 180,
|
||
showOverflowTooltip: true,
|
||
formatter: (row: Order) => row.purchase_remark || '-'
|
||
},
|
||
{
|
||
prop: 'operator_name',
|
||
label: '操作者',
|
||
width: 120,
|
||
formatter: (row: Order) => row.operator_name || '-'
|
||
},
|
||
{
|
||
prop: 'payment_status',
|
||
label: '支付状态',
|
||
width: 120,
|
||
formatter: (row: Order) => {
|
||
return h(
|
||
ElTag,
|
||
{ type: getPaymentStatusType(row.payment_status) },
|
||
() => row.payment_status_text
|
||
)
|
||
}
|
||
},
|
||
{
|
||
prop: 'total_amount',
|
||
label: '订单金额',
|
||
width: 120,
|
||
formatter: (row: Order) => formatCurrency(row.total_amount)
|
||
},
|
||
{
|
||
prop: 'actual_paid_amount',
|
||
label: '实付金额',
|
||
width: 120,
|
||
formatter: (row: Order) => {
|
||
if (row.actual_paid_amount === undefined || row.actual_paid_amount === null) return '-'
|
||
return formatCurrency(row.actual_paid_amount)
|
||
}
|
||
},
|
||
{
|
||
prop: 'payment_method',
|
||
label: '支付方式',
|
||
width: 120,
|
||
formatter: (row: Order) => getPaymentMethodText(row.payment_method)
|
||
},
|
||
{
|
||
prop: 'paid_at',
|
||
label: '支付时间',
|
||
width: 180,
|
||
formatter: (row: Order) => (row.paid_at ? formatDateTime(row.paid_at) : '-')
|
||
},
|
||
{
|
||
prop: 'created_at',
|
||
label: '创建时间',
|
||
width: 180,
|
||
formatter: (row: Order) => formatDateTime(row.created_at)
|
||
}
|
||
])
|
||
|
||
// 当选择IOT卡时,根据series_id筛选套餐
|
||
watch(
|
||
() => createForm.iot_card_id,
|
||
(newCardId) => {
|
||
if (newCardId && createForm.order_type === 'single_card') {
|
||
// 找到选中的IOT卡
|
||
const selectedCard = iotCardOptions.value.find((card) => card.id === newCardId)
|
||
if (selectedCard && selectedCard.series_id) {
|
||
// 根据series_id重新加载套餐列表
|
||
loadDefaultPackages(selectedCard.series_id)
|
||
} else {
|
||
// 如果没有series_id,加载所有套餐
|
||
loadDefaultPackages()
|
||
}
|
||
}
|
||
}
|
||
)
|
||
|
||
// 当选择设备时,根据series_id筛选套餐
|
||
watch(
|
||
() => createForm.device_id,
|
||
(newDeviceId) => {
|
||
if (newDeviceId && createForm.order_type === 'device') {
|
||
// 找到选中的设备
|
||
const selectedDevice = deviceOptions.value.find((dev) => dev.id === newDeviceId)
|
||
if (selectedDevice && selectedDevice.series_id) {
|
||
// 根据series_id重新加载套餐列表
|
||
loadDefaultPackages(selectedDevice.series_id)
|
||
} else {
|
||
// 如果没有series_id,加载所有套餐
|
||
loadDefaultPackages()
|
||
}
|
||
}
|
||
}
|
||
)
|
||
|
||
onMounted(() => {
|
||
getTableData()
|
||
})
|
||
|
||
// 获取订单列表
|
||
const getTableData = async () => {
|
||
loading.value = true
|
||
try {
|
||
const params: OrderQueryParams = {
|
||
page: pagination.page,
|
||
page_size: pagination.page_size,
|
||
order_no: searchForm.order_no || undefined,
|
||
payment_status: searchForm.payment_status,
|
||
order_type: searchForm.order_type,
|
||
purchase_role: searchForm.purchase_role,
|
||
start_time: searchForm.start_time || undefined,
|
||
end_time: searchForm.end_time || undefined
|
||
}
|
||
const res = await OrderService.getOrders(params)
|
||
if (res.code === 0) {
|
||
orderList.value = res.data.items || []
|
||
pagination.total = res.data.total || 0
|
||
}
|
||
} catch (error) {
|
||
console.error(error)
|
||
} finally {
|
||
loading.value = false
|
||
}
|
||
}
|
||
|
||
// 重置搜索
|
||
const handleReset = () => {
|
||
Object.assign(searchForm, { ...initialSearchState })
|
||
pagination.page = 1
|
||
getTableData()
|
||
}
|
||
|
||
// 搜索
|
||
const handleSearch = () => {
|
||
// 处理日期范围
|
||
if (searchForm.dateRange && Array.isArray(searchForm.dateRange)) {
|
||
searchForm.start_time = searchForm.dateRange[0]
|
||
searchForm.end_time = searchForm.dateRange[1]
|
||
} else {
|
||
searchForm.start_time = ''
|
||
searchForm.end_time = ''
|
||
}
|
||
pagination.page = 1
|
||
getTableData()
|
||
}
|
||
|
||
// 刷新表格
|
||
const handleRefresh = () => {
|
||
getTableData()
|
||
}
|
||
|
||
// 处理表格分页变化
|
||
const handleSizeChange = (newPageSize: number) => {
|
||
pagination.page_size = newPageSize
|
||
getTableData()
|
||
}
|
||
|
||
const handleCurrentChange = (newCurrentPage: number) => {
|
||
pagination.page = newCurrentPage
|
||
getTableData()
|
||
}
|
||
|
||
// 显示创建订单对话框
|
||
const showCreateDialog = async () => {
|
||
createDialogVisible.value = true
|
||
// 加载IoT卡和设备列表,套餐列表在选择IoT卡/设备后才加载
|
||
await Promise.all([loadDefaultIotCards(), loadDefaultDevices()])
|
||
}
|
||
|
||
// 加载默认套餐列表(可选按series_id筛选)
|
||
const loadDefaultPackages = async (seriesId?: number) => {
|
||
packageSearchLoading.value = true
|
||
try {
|
||
const res = await PackageManageService.getPackages({
|
||
series_id: seriesId,
|
||
page: 1,
|
||
page_size: 20,
|
||
status: 1, // 只获取启用的套餐
|
||
shelf_status: 1 // 只获取已上架的套餐
|
||
})
|
||
if (res.code === 0) {
|
||
packageOptions.value = res.data.items || []
|
||
}
|
||
} catch (error) {
|
||
console.error('Load default packages failed:', error)
|
||
packageOptions.value = []
|
||
} finally {
|
||
packageSearchLoading.value = false
|
||
}
|
||
}
|
||
|
||
// 加载默认IoT卡列表
|
||
const loadDefaultIotCards = async () => {
|
||
cardSearchLoading.value = true
|
||
try {
|
||
const res = await CardService.getStandaloneIotCards({
|
||
page: 1,
|
||
page_size: 20
|
||
})
|
||
if (res.code === 0) {
|
||
iotCardOptions.value = res.data.items || []
|
||
}
|
||
} catch (error) {
|
||
console.error('Load default IoT cards failed:', error)
|
||
iotCardOptions.value = []
|
||
} finally {
|
||
cardSearchLoading.value = false
|
||
}
|
||
}
|
||
|
||
// 加载默认设备列表
|
||
const loadDefaultDevices = async () => {
|
||
deviceSearchLoading.value = true
|
||
try {
|
||
const res = await DeviceService.getDevices({
|
||
page: 1,
|
||
page_size: 20
|
||
})
|
||
if (res.code === 0) {
|
||
deviceOptions.value = res.data.items || []
|
||
}
|
||
} catch (error) {
|
||
console.error('Load default devices failed:', error)
|
||
deviceOptions.value = []
|
||
} finally {
|
||
deviceSearchLoading.value = false
|
||
}
|
||
}
|
||
|
||
// 对话框关闭后的清理
|
||
const handleCreateDialogClosed = () => {
|
||
// 重置表单(会同时清除验证状态)
|
||
createFormRef.value?.resetFields()
|
||
|
||
// 重置表单数据到初始值
|
||
createForm.order_type = 'single_card'
|
||
createForm.package_ids = []
|
||
createForm.iot_card_id = null
|
||
createForm.device_id = null
|
||
createForm.payment_method = 'wallet'
|
||
createForm.payment_voucher_key = undefined
|
||
|
||
// 清空上传文件列表
|
||
uploadRef.value?.clearFiles()
|
||
|
||
// 清空套餐、IoT卡和设备搜索结果
|
||
packageOptions.value = []
|
||
iotCardOptions.value = []
|
||
deviceOptions.value = []
|
||
}
|
||
|
||
// 创建订单
|
||
const handleCreateOrder = async (formEl: FormInstance | undefined) => {
|
||
if (!formEl) return
|
||
|
||
await formEl.validate(async (valid) => {
|
||
if (valid) {
|
||
createLoading.value = true
|
||
try {
|
||
// 获取 identifier (ICCID 或 VirtualNo)
|
||
let identifier = ''
|
||
if (createForm.order_type === 'single_card') {
|
||
if (!createForm.iot_card_id) {
|
||
ElMessage.error('请选择IoT卡')
|
||
return
|
||
}
|
||
const selectedCard = iotCardOptions.value.find(
|
||
(card) => card.id === createForm.iot_card_id
|
||
)
|
||
if (!selectedCard?.iccid) {
|
||
ElMessage.error('未找到选中的卡信息')
|
||
return
|
||
}
|
||
identifier = selectedCard.iccid
|
||
} else {
|
||
if (!createForm.device_id) {
|
||
ElMessage.error('请选择设备')
|
||
return
|
||
}
|
||
const selectedDevice = deviceOptions.value.find(
|
||
(dev) => dev.id === createForm.device_id
|
||
)
|
||
if (!selectedDevice?.virtual_no) {
|
||
ElMessage.error('未找到选中的设备信息')
|
||
return
|
||
}
|
||
identifier = selectedDevice.virtual_no
|
||
}
|
||
|
||
// 调用套餐购买预检接口
|
||
const checkData: PurchaseCheckRequest = {
|
||
order_type: createForm.order_type!,
|
||
resource_id:
|
||
createForm.order_type === 'single_card'
|
||
? createForm.iot_card_id!
|
||
: createForm.device_id!,
|
||
package_ids: createForm.package_ids
|
||
}
|
||
|
||
const checkResponse = await OrderService.purchaseCheck(checkData)
|
||
|
||
// 检查预检结果
|
||
if (checkResponse.code === 0 && checkResponse.data) {
|
||
const checkResult = checkResponse.data
|
||
|
||
// 如果需要强充,显示确认对话框
|
||
if (checkResult.need_force_recharge) {
|
||
const confirmMessage = `${checkResult.message || '钱包余额不足'}\n\n套餐总价: ¥${(checkResult.total_package_amount! / 100).toFixed(2)}\n需要强充: ¥${(checkResult.force_recharge_amount! / 100).toFixed(2)}\n钱包到账: ¥${(checkResult.wallet_credit! / 100).toFixed(2)}\n实际支付: ¥${(checkResult.actual_payment! / 100).toFixed(2)}\n\n是否继续创建订单?`
|
||
|
||
await ElMessageBox.confirm(confirmMessage, '购买预检提示', {
|
||
confirmButtonText: '继续创建',
|
||
cancelButtonText: '取消',
|
||
type: 'warning'
|
||
})
|
||
}
|
||
}
|
||
|
||
// 预检通过或用户确认后,创建订单
|
||
const data: CreateOrderRequest = {
|
||
identifier,
|
||
package_ids: createForm.package_ids,
|
||
payment_method: createForm.payment_method
|
||
}
|
||
|
||
// 线下支付时,添加支付凭证
|
||
if (createForm.payment_method === 'offline' && createForm.payment_voucher_key) {
|
||
data.payment_voucher_key = createForm.payment_voucher_key
|
||
}
|
||
|
||
await OrderService.createOrder(data)
|
||
|
||
// 根据支付方式显示不同的成功消息
|
||
if (createForm.payment_method === 'wallet') {
|
||
ElMessage.success('订单创建成功,已自动完成支付')
|
||
} else {
|
||
ElMessage.success('订单创建成功')
|
||
}
|
||
|
||
createDialogVisible.value = false
|
||
formEl.resetFields()
|
||
await getTableData()
|
||
} catch (error: any) {
|
||
// 用户取消确认对话框
|
||
if (error === 'cancel') {
|
||
return
|
||
}
|
||
console.error(error)
|
||
} finally {
|
||
createLoading.value = false
|
||
}
|
||
}
|
||
})
|
||
}
|
||
|
||
// 查看订单详情
|
||
const showOrderDetail = (row: Order) => {
|
||
router.push({
|
||
path: `${RoutesAlias.OrderList}/detail/${row.id}`
|
||
})
|
||
}
|
||
|
||
// 处理名称点击
|
||
const handleNameClick = (row: Order) => {
|
||
if (hasAuth('orders:view_detail')) {
|
||
showOrderDetail(row)
|
||
} else {
|
||
ElMessage.warning('您没有查看详情的权限')
|
||
}
|
||
}
|
||
|
||
// 取消订单
|
||
const handleCancelOrder = (row: Order) => {
|
||
// 已支付的订单不能取消
|
||
if (row.payment_status === 2) {
|
||
ElMessage.warning('已支付的订单无法取消')
|
||
return
|
||
}
|
||
|
||
ElMessageBox.confirm('确定要取消该订单吗?', '取消订单', {
|
||
confirmButtonText: '确认',
|
||
cancelButtonText: '取消',
|
||
type: 'warning'
|
||
})
|
||
.then(async () => {
|
||
try {
|
||
await OrderService.cancelOrder(row.id)
|
||
ElMessage.success('订单已取消')
|
||
await getTableData()
|
||
} catch (error) {
|
||
console.error(error)
|
||
}
|
||
})
|
||
.catch(() => {
|
||
// 用户取消操作
|
||
})
|
||
}
|
||
|
||
// 获取操作按钮
|
||
const getActions = (row: Order) => {
|
||
const actions: any[] = []
|
||
|
||
// 只有待支付和已支付的订单可以删除
|
||
if ((row.payment_status === 1 || row.payment_status === 2) && hasAuth('orders:delete')) {
|
||
actions.push({
|
||
label: '删除',
|
||
handler: () => handleCancelOrder(row),
|
||
type: 'danger'
|
||
})
|
||
}
|
||
|
||
return actions
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.order-list-page {
|
||
height: 100%;
|
||
}
|
||
|
||
.order-detail {
|
||
:deep(.el-descriptions__label) {
|
||
width: 140px;
|
||
}
|
||
}
|
||
|
||
:deep(.el-table__row.table-row-with-context-menu) {
|
||
cursor: pointer;
|
||
}
|
||
</style>
|