- 在app.config.ts中添加creditMpCustomer相关页面配置 - 将src/credit/customer/index.config.ts中的标题从'客户联系人管理'改为'企业经办人订单管理' - 重写src/credit/customer/index.tsx文件,将原有客户列表功能替换为企业经办人订单列表 - 实现订单搜索、筛选和详情查看功能 - 添加mock数据用于展示企业经办人、企业名称和跟进人信息 - 创建新的API模型和接口文件用于小程序端客户管理功能
181 lines
3.8 KiB
Plaintext
181 lines
3.8 KiB
Plaintext
export default {
|
|
pages: [
|
|
'pages/index/index',
|
|
'pages/cart/cart',
|
|
'pages/find/find',
|
|
'pages/user/user'
|
|
],
|
|
"subpackages": [
|
|
{
|
|
"root": "passport",
|
|
"pages": [
|
|
"login",
|
|
"register",
|
|
"forget",
|
|
"setting",
|
|
"agreement",
|
|
"sms-login",
|
|
'qr-login/index',
|
|
'qr-confirm/index',
|
|
'unified-qr/index'
|
|
]
|
|
},
|
|
{
|
|
"root": "cms",
|
|
"pages": [
|
|
'category/index',
|
|
"detail/index"
|
|
]
|
|
},
|
|
{
|
|
"root": "coupon",
|
|
"pages": [
|
|
"index"
|
|
]
|
|
},
|
|
{
|
|
"root": "user",
|
|
"pages": [
|
|
"order/order",
|
|
"order/logistics/index",
|
|
"order/evaluate/index",
|
|
"order/refund/index",
|
|
"order/progress/index",
|
|
"company/company",
|
|
"profile/profile",
|
|
"setting/setting",
|
|
"userVerify/index",
|
|
"address/index",
|
|
"address/add",
|
|
"address/wxAddress",
|
|
"help/index",
|
|
"about/index",
|
|
"wallet/wallet",
|
|
"coupon/index",
|
|
"points/points",
|
|
"ticket/index",
|
|
"ticket/use",
|
|
"ticket/orders/index",
|
|
// "gift/index",
|
|
// "gift/redeem",
|
|
// "gift/detail",
|
|
// "gift/add",
|
|
"store/verification",
|
|
"store/orders/index",
|
|
"theme/index",
|
|
"poster/poster",
|
|
"chat/conversation/index",
|
|
"chat/message/index",
|
|
"chat/message/add",
|
|
"chat/message/detail"
|
|
]
|
|
},
|
|
{
|
|
"root": "dealer",
|
|
"pages": [
|
|
"index",
|
|
"apply/add",
|
|
"withdraw/index",
|
|
"orders/index",
|
|
"capital/index",
|
|
"team/index",
|
|
"qrcode/index",
|
|
"invite-stats/index",
|
|
"info"
|
|
]
|
|
},
|
|
{
|
|
"root": "shop",
|
|
"pages": [
|
|
'category/index',
|
|
'orderDetail/index',
|
|
'goodsDetail/index',
|
|
'orderConfirm/index',
|
|
'orderConfirmCart/index',
|
|
'comments/index',
|
|
'search/index']
|
|
},
|
|
{
|
|
"root": "store",
|
|
"pages": [
|
|
"index",
|
|
"orders/index"
|
|
]
|
|
},
|
|
{
|
|
"root": "rider",
|
|
"pages": [
|
|
"index",
|
|
"orders/index",
|
|
"ticket/verification/index"
|
|
]
|
|
},
|
|
{
|
|
"root": "admin",
|
|
"pages": [
|
|
"index",
|
|
"article/index",
|
|
]
|
|
},
|
|
{
|
|
"root": "credit",
|
|
"pages": [
|
|
"data/index",
|
|
"customer/index",
|
|
"order/index",
|
|
"order/add",
|
|
"company/index",
|
|
"company/add",
|
|
"company/detail",
|
|
"company/follow-step1",
|
|
"company/edit"
|
|
]
|
|
}
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'dark',
|
|
navigationBarBackgroundColor: '#fff',
|
|
navigationBarTitleText: 'WeChat',
|
|
navigationBarTextStyle: 'black'
|
|
},
|
|
tabBar: {
|
|
custom: false,
|
|
color: "#8a8a8a",
|
|
selectedColor: "#e60012",
|
|
backgroundColor: "#ffffff",
|
|
list: [
|
|
{
|
|
pagePath: "pages/index/index",
|
|
iconPath: "assets/tabbar/home.png",
|
|
selectedIconPath: "assets/tabbar/home-active.png",
|
|
text: "首页",
|
|
},
|
|
{
|
|
pagePath: "pages/find/find",
|
|
iconPath: "assets/tabbar/shop.png",
|
|
selectedIconPath: "assets/tabbar/shop-active.png",
|
|
text: "网点",
|
|
},
|
|
{
|
|
pagePath: "pages/user/user",
|
|
iconPath: "assets/tabbar/user.png",
|
|
selectedIconPath: "assets/tabbar/user-active.png",
|
|
text: "我的",
|
|
},
|
|
],
|
|
},
|
|
requiredPrivateInfos: [
|
|
"getLocation",
|
|
"chooseLocation",
|
|
"chooseAddress"
|
|
],
|
|
permission: {
|
|
"scope.userLocation": {
|
|
"desc": "你的位置信息将用于小程序位置接口的效果展示"
|
|
},
|
|
"scope.writePhotosAlbum": {
|
|
"desc": "用于保存小程序码到相册,方便分享给好友"
|
|
}
|
|
}
|
|
}
|