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 @@