Commit 56426da7 authored by 张子雨's avatar 张子雨

feat: 修复问题

parent 735c78f3
...@@ -79,6 +79,7 @@ export default { ...@@ -79,6 +79,7 @@ export default {
{ {
path: '/', path: '/',
component: '../layouts/SecurityLayout', component: '../layouts/SecurityLayout',
title: '商户管理后台',
routes: [ routes: [
{ {
path: '/', path: '/',
...@@ -86,73 +87,87 @@ export default { ...@@ -86,73 +87,87 @@ export default {
authority: ['Admin', 'user'], authority: ['Admin', 'user'],
routes: [ routes: [
{ {
title: '首页',
path: '/', path: '/',
component: './Admin', component: './Admin',
}, },
{ {
title: '商户管理后台',
path: '/orderManage/pendingDeliveryOrder', path: '/orderManage/pendingDeliveryOrder',
name: 'pendingDeliveryOrder', name: 'pendingDeliveryOrder',
component: './orderManage/pendingDeliveryOrder', component: './orderManage/pendingDeliveryOrder',
}, },
{ {
title: '商户管理后台',
path: '/orderManage/deliveryOrder', path: '/orderManage/deliveryOrder',
name: 'deliveryOrder', name: 'deliveryOrder',
component: './orderManage/deliveryOrder', component: './orderManage/deliveryOrder',
}, },
{ {
title: '商户管理后台',
path: '/orderManage/batchDelivery', path: '/orderManage/batchDelivery',
name: 'batchDeliveryOrder', name: 'batchDeliveryOrder',
component: './orderManage/batchDelivery', component: './orderManage/batchDelivery',
}, },
{ {
title: '商户管理后台',
path: '/afterSaleAddress', path: '/afterSaleAddress',
name: 'afterSaleAddress', name: 'afterSaleAddress',
component: './afterSaleAddress', component: './afterSaleAddress',
}, },
{ {
title: '商户管理后台',
path: '/reconciliation', path: '/reconciliation',
name: 'reconciliation', name: 'reconciliation',
component: './reconciliation', component: './reconciliation',
}, },
{ {
title: '商户管理后台',
path: '/reconciliation/detail', path: '/reconciliation/detail',
name: 'reconciliationDetail', name: 'reconciliationDetail',
component: './reconciliation/detail/index', component: './reconciliation/detail/index',
}, },
{ {
title: '商户管理后台',
path: '/settleManage', path: '/settleManage',
name: 'settleManage', name: 'settleManage',
component: './settleManage', component: './settleManage',
}, },
{ {
title: '商户管理后台',
path: '/afterSaleManage', path: '/afterSaleManage',
name: 'afterSaleManage', name: 'afterSaleManage',
icon: 'smile', icon: 'smile',
component: './AfterSaleManage/index', component: './AfterSaleManage/index',
}, },
{ {
title: '商户管理后台',
path: '/auditPending', path: '/auditPending',
name: 'auditPending', name: 'auditPending',
icon: 'smile', icon: 'smile',
component: './AfterSaleManage/Pending', component: './AfterSaleManage/Pending',
}, },
{ {
title: '商户管理后台',
path: '/passAudit', path: '/passAudit',
name: 'passAudit', name: 'passAudit',
icon: 'smile', icon: 'smile',
component: './AfterSaleManage/PassAudit', component: './AfterSaleManage/PassAudit',
}, },
{ {
title: '商户管理后台',
path: '/appeal', path: '/appeal',
name: 'appeal', name: 'appeal',
component: './afterSale/appeal', component: './afterSale/appeal',
}, },
{ {
title: '商户管理后台',
path: '/cancelBillManage', path: '/cancelBillManage',
name: 'cancelBillManage', name: 'cancelBillManage',
component: './cancelBillManage', component: './cancelBillManage',
}, },
{ {
title: '商户管理后台',
path: '/goodsManage', path: '/goodsManage',
name: 'goodsManage', name: 'goodsManage',
icon: 'smile', icon: 'smile',
...@@ -165,18 +180,21 @@ export default { ...@@ -165,18 +180,21 @@ export default {
component: './distributionArea', component: './distributionArea',
}, },
{ {
title: '商户管理后台',
path: '/reconciliationQuery', path: '/reconciliationQuery',
name: 'reconciliationQuery', name: 'reconciliationQuery',
icon: 'smile', icon: 'smile',
component: './ReconciliationQuery', component: './ReconciliationQuery',
}, },
{ {
title: '商户管理后台',
path: '/settlementSheet', path: '/settlementSheet',
name: 'settlementSheet', name: 'settlementSheet',
icon: 'smile', icon: 'smile',
component: './SettlementSheet', component: './SettlementSheet',
}, },
{ {
title: '商户管理后台',
path: '/paymentMange', path: '/paymentMange',
name: 'paymentMange', name: 'paymentMange',
icon: 'smile', icon: 'smile',
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "merchant-manage-ui",
"version": "1.0.0", "version": "1.0.0",
"dependencies": { "dependencies": {
"@ant-design/colors": "^3.1.0", "@ant-design/colors": "^3.1.0",
...@@ -46,10 +46,7 @@ export async function orderDetail(params) { ...@@ -46,10 +46,7 @@ export async function orderDetail(params) {
// 售后审核 // 售后审核
export async function shopAudit(params) { export async function shopAudit(params) {
return request.post('/api/kdsp/op/afs/shop/audit', { return request.post('/api/kdsp/op/afs/shop/audit', {
data: stringify(params), data: params,
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
},
prefix: kdspApi, prefix: kdspApi,
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment