From 48689642d891a02642df7ed804b8401c96846278 Mon Sep 17 00:00:00 2001 From: qsh <> Date: Wed, 31 Jul 2024 18:35:36 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/clue/payment.js | 8 + src/router/modules/remaining.ts | 42 ++--- src/views/Basic/GeneralSet/Comp/BSClue.vue | 4 +- src/views/Basic/User/index.vue | 7 +- .../Clue/Order/Comp/DialogFeebackDetail.vue | 98 ++---------- src/views/Clue/Order/Comp/Reback.vue | 95 ++++++++++- src/views/Clue/Order/Comp/SchoolSettle.vue | 10 +- src/views/Clue/Order/Comp/feedbackSchema.js | 150 ++++++++++++++++++ src/views/Clue/Pool/Comp/DrawerClue.vue | 2 +- 9 files changed, 287 insertions(+), 129 deletions(-) create mode 100644 src/views/Clue/Order/Comp/feedbackSchema.js diff --git a/src/api/clue/payment.js b/src/api/clue/payment.js index f67ca24..5f69e3a 100644 --- a/src/api/clue/payment.js +++ b/src/api/clue/payment.js @@ -37,3 +37,11 @@ export const cancelApplyPayment = async (data) => { export const getPaymentDetail = async (params) => { return await request.get({ url: '/admin-api/crm/sign-pay-record/get', params }) } + +// 撤销 +export const updateApplyPayment = async (data) => { + return await request.post({ + url: '/admin-api/crm/sign-pay-record/updateRecordMoney', + data + }) +} diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index 3508257..c7e8f13 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -130,27 +130,27 @@ const remainingRouter: AppRouteRecordRaw[] = [ // } // ] // }, - // { - // path: '/Basic', - // component: Layout, - // name: 'Basic', - // meta: {}, - // redirect: '/Basic/menu', - // children: [ - // { - // path: 'menu', - // component: () => import('@/views/Basic/Menu/index.vue'), - // name: 'Menu', - // meta: { - // canTo: true, - // hidden: true, - // noTagsView: false, - // icon: 'ep:user', - // title: '菜单管理' - // } - // } - // ] - // }, + { + path: '/Basic', + component: Layout, + name: 'Basic', + meta: {}, + redirect: '/Basic/menu', + children: [ + { + path: 'menu', + component: () => import('@/views/Basic/Menu/index.vue'), + name: 'Menu', + meta: { + canTo: true, + hidden: true, + noTagsView: false, + icon: 'ep:user', + title: '菜单管理' + } + } + ] + }, { path: '/login', component: () => import('@/views/Login/Login.vue'), diff --git a/src/views/Basic/GeneralSet/Comp/BSClue.vue b/src/views/Basic/GeneralSet/Comp/BSClue.vue index 7ca45c9..5623871 100644 --- a/src/views/Basic/GeneralSet/Comp/BSClue.vue +++ b/src/views/Basic/GeneralSet/Comp/BSClue.vue @@ -1,6 +1,6 @@