From 2416507fd54fd2afd2d6f1de337b40e769cd47bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A3=B7=E5=8F=B6?= <14103883+leaf-phos@user.noreply.gitee.com> Date: Sat, 29 Mar 2025 18:07:17 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/bst/order.js | 20 ++ src/api/bst/refund.js | 44 +++ src/components/CollapsePanel/index.vue | 3 + src/router/index.js | 8 +- src/utils/enums.js | 35 ++ src/views/bst/area/index.vue | 5 +- .../components/AreaJoinEditDialog.vue | 7 +- src/views/bst/bonus/index.vue | 102 ++---- src/views/bst/device/index.vue | 28 +- .../order/components/OrderRefundDialog.vue | 112 +++++++ src/views/bst/order/index.vue | 96 ++++-- src/views/bst/order/view/view.vue | 147 +++++++++ src/views/bst/pay/index.vue | 28 +- src/views/bst/refund/index.vue | 298 ++++++++++++++++++ 14 files changed, 798 insertions(+), 135 deletions(-) create mode 100644 src/api/bst/refund.js create mode 100644 src/views/bst/order/components/OrderRefundDialog.vue create mode 100644 src/views/bst/order/view/view.vue create mode 100644 src/views/bst/refund/index.vue diff --git a/src/api/bst/order.js b/src/api/bst/order.js index 844e04a..3398ab3 100644 --- a/src/api/bst/order.js +++ b/src/api/bst/order.js @@ -42,3 +42,23 @@ export function delOrder(id) { method: 'delete' }) } + +// 删除订单 +export function endOrder(orderId) { + return request({ + url: '/bst/order/end', + method: 'put', + data: { + orderId + } + }) +} + +// 订单退款 +export function refundOrder(data) { + return request({ + url: '/bst/order/refund', + method: 'put', + data: data + }) +} diff --git a/src/api/bst/refund.js b/src/api/bst/refund.js new file mode 100644 index 0000000..297bd60 --- /dev/null +++ b/src/api/bst/refund.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询退款列表 +export function listRefund(query) { + return request({ + url: '/bst/refund/list', + method: 'get', + params: query + }) +} + +// 查询退款详细 +export function getRefund(id) { + return request({ + url: '/bst/refund/' + id, + method: 'get' + }) +} + +// 新增退款 +export function addRefund(data) { + return request({ + url: '/bst/refund', + method: 'post', + data: data + }) +} + +// 修改退款 +export function updateRefund(data) { + return request({ + url: '/bst/refund', + method: 'put', + data: data + }) +} + +// 删除退款 +export function delRefund(id) { + return request({ + url: '/bst/refund/' + id, + method: 'delete' + }) +} diff --git a/src/components/CollapsePanel/index.vue b/src/components/CollapsePanel/index.vue index 7bff8eb..2831490 100644 --- a/src/components/CollapsePanel/index.vue +++ b/src/components/CollapsePanel/index.vue @@ -72,4 +72,7 @@ export default { flex: 1; } } +.collapse-content { + padding: 8px 14px; +} diff --git a/src/router/index.js b/src/router/index.js index d6ebcbc..26167ca 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -82,7 +82,7 @@ export const constantRoutes = [ hidden: true, children: [ { - path: '/area/:id?', + path: 'area/:id?', component: () => import('@/views/bst/area/edit/edit.vue'), name: 'AreaEdit', meta: { title: '编辑运营区' } @@ -97,6 +97,12 @@ export const constantRoutes = [ component: Layout, hidden: true, children: [ + { + path: 'order/:id?', + component: () => import('@/views/bst/order/view/view.vue'), + name: 'OrderView', + meta: { title: '订单详情' } + } ] }, { diff --git a/src/utils/enums.js b/src/utils/enums.js index df18105..c345cf4 100644 --- a/src/utils/enums.js +++ b/src/utils/enums.js @@ -134,3 +134,38 @@ export const AreaJoinType = { COOPERATE: "2", // 合伙 } +// 订单状态 +export const OrderStatus = { + WAIT_PAY: "WAIT_PAY", // 待支付 + PROCESSING: "PROCESSING", // 进行中 + FINISHED: "FINISHED", // 已结束 + CANCEL: "CANCEL", // 已取消 + WAIT_VERIFY: "WAIT_VERIFY", // 待审核 + + // 允许支付的订单状态 + canPay() { + return [this.WAIT_PAY]; + }, + + // 正在使用中的订单状态 + inUse() { + return [this.PROCESSING]; + }, + + // 可以支付成功的订单状态 + canPaySuccess() { + return [this.WAIT_PAY]; + }, + + // 可以结束的订单状态 + canEnd() { + return [this.PROCESSING]; + }, + + // 可以退款的订单状态 + canRefund() { + return [this.FINISHED]; + } +} + + diff --git a/src/views/bst/area/index.vue b/src/views/bst/area/index.vue index d9cd80c..ba0657b 100644 --- a/src/views/bst/area/index.vue +++ b/src/views/bst/area/index.vue @@ -266,12 +266,11 @@ export default { }, /** 新增按钮操作 */ handleAdd() { - this.$router.push({ path: "/area/" }); + this.$router.push('/edit/area'); }, /** 修改按钮操作 */ handleUpdate(row) { - const id = row.id || this.ids; - this.$router.push({ path: `/area/${id}` }); + this.$router.push('/edit/area/' + row.id); }, /** 删除按钮操作 */ handleDelete(row) { diff --git a/src/views/bst/areaJoin/components/AreaJoinEditDialog.vue b/src/views/bst/areaJoin/components/AreaJoinEditDialog.vue index d7d547e..c451a9b 100644 --- a/src/views/bst/areaJoin/components/AreaJoinEditDialog.vue +++ b/src/views/bst/areaJoin/components/AreaJoinEditDialog.vue @@ -22,8 +22,8 @@ > - - + + @@ -83,6 +83,9 @@ export default { ], point: [ { required: true, message: "分成比例不能为空", trigger: "blur" } + ], + userPhone: [ + { required: true, message: "绑定用户手机号不能为空", trigger: "blur" } ] } } diff --git a/src/views/bst/bonus/index.vue b/src/views/bst/bonus/index.vue index 9446f0a..3437c5f 100644 --- a/src/views/bst/bonus/index.vue +++ b/src/views/bst/bonus/index.vue @@ -54,27 +54,6 @@ - - 新增 - - - 删除 - + + - - - - + - + @@ -210,15 +242,19 @@ :limit.sync="queryParams.pageSize" @pagination="getList" /> + + \ No newline at end of file diff --git a/src/views/bst/pay/index.vue b/src/views/bst/pay/index.vue index 4ebd1c8..228600c 100644 --- a/src/views/bst/pay/index.vue +++ b/src/views/bst/pay/index.vue @@ -123,11 +123,10 @@ - -