- 创建 .editorconfig 文件统一代码风格配置 - 配置 .eslintrc 使用 taro/react 规则集 - 完善 .gitignore 忽略编译产物和敏感文件 - 添加 admin/article/add 页面实现文章管理功能 - 添加 dealer/apply/add 页面实现经销商申请功能 - 添加 dealer/bank/add 页面实现银行卡管理功能 - 添加 dealer/customer/add 页面实现客户管理功能 - 添加 user/address/add 页面实现用户地址管理功能 - 添加 user/chat/message/add 页面实现消息功能 - 添加 user/gift/add 页面实现礼品管理功能 - 配置各页面导航栏标题和样式 - 实现表单验证和数据提交功能 - 集成图片上传和头像选择功能 - 添加日期选择和数据校验逻辑 - 实现编辑和新增模式切换 - 集成用户权限和角色管理功能
138 lines
3.0 KiB
TypeScript
138 lines
3.0 KiB
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/index/index',
|
|
'pages/cart/cart',
|
|
'pages/find/find',
|
|
'pages/user/user'
|
|
],
|
|
"subpackages": [
|
|
{
|
|
"root": "passport",
|
|
"pages": [
|
|
"login",
|
|
// "register",
|
|
// "forget",
|
|
// "setting",
|
|
"agreement",
|
|
"sms-login"
|
|
]
|
|
},
|
|
{
|
|
"root": "cms",
|
|
"pages": [
|
|
'category/index',
|
|
"detail/index"
|
|
]
|
|
},
|
|
{
|
|
"root": "user",
|
|
"pages": [
|
|
"order/order",
|
|
"company/company",
|
|
"profile/profile",
|
|
"setting/setting",
|
|
"userVerify/index",
|
|
"address/index",
|
|
"address/add",
|
|
"address/wxAddress",
|
|
"help/index",
|
|
"about/index",
|
|
"wallet/wallet",
|
|
"coupon/index",
|
|
"points/points",
|
|
"gift/index",
|
|
"gift/redeem",
|
|
"gift/detail",
|
|
"store/verification",
|
|
"theme/index",
|
|
"chat/conversation/index",
|
|
"chat/message/index",
|
|
"chat/message/add",
|
|
"chat/message/detail"
|
|
]
|
|
},
|
|
{
|
|
"root": "dealer",
|
|
"pages": [
|
|
"index",
|
|
"apply/add",
|
|
"withdraw/index",
|
|
"withdraw/admin",
|
|
"orders/index",
|
|
"capital/index",
|
|
"capital/detail",
|
|
"capital/record",
|
|
"team/index",
|
|
"qrcode/index",
|
|
"invite-stats/index",
|
|
"info",
|
|
"customer/index",
|
|
"customer/add",
|
|
"customer/trading",
|
|
"wechat/index",
|
|
"bank/index",
|
|
"bank/add"
|
|
]
|
|
},
|
|
// {
|
|
// "root": "shop",
|
|
// "pages": ['category/index',
|
|
// 'orderDetail/index',
|
|
// 'goodsDetail/index',
|
|
// 'orderConfirm/index',
|
|
// 'orderConfirmCart/index',
|
|
// 'search/index']
|
|
// },
|
|
{
|
|
"root": "admin",
|
|
"pages": [
|
|
"index",
|
|
"article/index",
|
|
"userVerify/index"
|
|
]
|
|
}
|
|
],
|
|
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": "你的位置信息将用于小程序位置接口的效果展示"
|
|
}
|
|
}
|
|
})
|