123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- export default defineAppConfig({
- pages: [
- 'pages/index/index',
- 'pages/personal/index',
- 'pages/profile/index',
- 'pages/dashboard/index',
- 'pages/dashboard-visited-detail/index',
- 'pages/dashboard-dislike-messages/index',
- 'pages/dashboard-visitor-message-editor/index',
- 'pages/chat-messages/index',
- 'pages/chat-session-messages/index',
- 'pages/contact/index',
- 'pages/knowledge/index',
- 'pages/knowledge-item/index',
- 'pages/knowledge-item-editor/index',
- 'pages/agent/index',
- 'pages/agent-avatars/index',
- 'pages/editor-pages/editor-personality/index',
- 'pages/editor-pages/editor-greeting/index',
- 'pages/editor-pages/editor-greeting-questions/index',
- 'pages/voice/index',
- 'pages/chat/index',
- 'pages/agent-gen/index',
- 'pages/editor-contact/index',
- 'pages/contact-us/index',
- 'pages/privacy/index',
- 'pages/account/index',
- 'pages/agreement/index',
-
- 'pages/test/index',
- 'pages/component-library/index',
- 'pages/editor-pages/editor-name/index',
-
- 'pages/editor-pages/editor-phone/index',
- 'pages/editor-pages/editor-tel/index',
- 'pages/editor-pages/editor-email/index',
- 'pages/editor-pages/editor-address/index',
- 'pages/editor-pages/editor-qrcode/index',
-
- 'pages/editor-pages/editor-channels/index',
-
-
- 'pages/editor-pages/editor-media/index',
-
-
- 'pages/editor-pages/editor-link/index',
- 'pages/editor-pages/editor-mini-program/index',
- 'pages/editor-pages/editor-link-social/index',
- 'pages/editor-pages/editor-link-contact/index',
- 'pages/editor-pages/editor-textarea/index',
- 'pages/editor-pages/editor-title/index',
-
- 'pages/webview/index',
- ],
- tabBar: {
- color: '#828282',
- selectedColor: '#000000',
- backgroundColor: '#FFFFFF',
- list: [
-
- {
- pagePath: 'pages/index/index',
- selectedIconPath: 'images/tabbar/agent-actived.png',
- iconPath: 'images/tabbar/agent.png',
- text: '智能体'
- },
- {
- pagePath: 'pages/contact/index',
- selectedIconPath: 'images/tabbar/contacts-actived.png',
- iconPath: 'images/tabbar/contacts.png',
- text: '联系人'
- },
- {
- pagePath: 'pages/dashboard/index',
- selectedIconPath: 'images/tabbar/data-actived.png',
- iconPath: 'images/tabbar/data.png',
- text: '数据'
- },
- {
- pagePath: 'pages/knowledge/index',
- selectedIconPath: 'images/tabbar/knowledge-actived.png',
- iconPath: 'images/tabbar/knowledge.png',
- text: '知识库'
- },
- {
- pagePath: 'pages/personal/index',
- selectedIconPath: 'images/tabbar/personal-actived.png',
- iconPath: 'images/tabbar/personal.png',
- text: '我的'
- }
- ]
- },
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#f5f5f2',
- navigationBarTitleText: 'WeChat',
- navigationBarTextStyle: 'black',
- backgroundColor: '#f5f5f2',
- },
- permission: {
- 'scope.userLocation': {
- desc: '你的位置信息将用于小程序使用'
- }
- },
- requiredPrivateInfos: [
- 'getLocation',
- 'chooseAddress',
- 'chooseLocation'
- ]
- })
|