|
|
|
|
@ -1,42 +1,43 @@
|
|
|
|
|
export default defineAppConfig({
|
|
|
|
|
__usePrivacyCheck__: true,
|
|
|
|
|
pages: [
|
|
|
|
|
'pages/index/index',
|
|
|
|
|
'pages/login/login',
|
|
|
|
|
'pages/initiate/initiate',
|
|
|
|
|
'pages/entry/entry',
|
|
|
|
|
'pages/activity/activity',
|
|
|
|
|
"pages/index/index",
|
|
|
|
|
"pages/login/login",
|
|
|
|
|
"pages/initiate/initiate",
|
|
|
|
|
"pages/entry/entry",
|
|
|
|
|
"pages/activity/activity",
|
|
|
|
|
"pages/detect/detect",
|
|
|
|
|
"pages/shop/shop",
|
|
|
|
|
"pages/user/user",
|
|
|
|
|
"pages/userInfo/userInfo",
|
|
|
|
|
'pages/userInfoDetail/userInfoDetail',
|
|
|
|
|
"pages/userInfoDetail/userInfoDetail",
|
|
|
|
|
"pages/register/register",
|
|
|
|
|
'pages/instrument/instrument',
|
|
|
|
|
"pages/instrument/instrument",
|
|
|
|
|
"pages/instrument/intro",
|
|
|
|
|
"pages/instrument_manage/index",
|
|
|
|
|
"pages/instrument_detail/index",
|
|
|
|
|
"pages/instrumentClickinUpload/index",
|
|
|
|
|
'pages/privacyPolicy/privacyPolicy',
|
|
|
|
|
'pages/userPolicy/userPolicy',
|
|
|
|
|
'pages/about/about',
|
|
|
|
|
'pages/message/message',
|
|
|
|
|
'pages/consultant/consultant',
|
|
|
|
|
'pages/integral_list/integral_list',
|
|
|
|
|
"pages/privacyPolicy/privacyPolicy",
|
|
|
|
|
"pages/userPolicy/userPolicy",
|
|
|
|
|
"pages/about/about",
|
|
|
|
|
"pages/message/message",
|
|
|
|
|
"pages/consultant/consultant",
|
|
|
|
|
"pages/integral_list/integral_list",
|
|
|
|
|
"pages/recording/recording",
|
|
|
|
|
"pages/webViewPage/webViewPage",
|
|
|
|
|
'pages/template/template',
|
|
|
|
|
'pages/face_report/face_report',
|
|
|
|
|
"pages/template/template",
|
|
|
|
|
"pages/face_report/face_report",
|
|
|
|
|
"pages/connection_help/connection_help",
|
|
|
|
|
"pages/errorpage/errorpage",
|
|
|
|
|
"pages/moisture_test_report/moisture_test_report",
|
|
|
|
|
],
|
|
|
|
|
"tabBar": {
|
|
|
|
|
"custom": true,
|
|
|
|
|
"color": "#707070",
|
|
|
|
|
"selectedColor": "#CAB18C",
|
|
|
|
|
"backgroundColor": "#ffffff",
|
|
|
|
|
"borderStyle": "black",
|
|
|
|
|
"list": [
|
|
|
|
|
tabBar: {
|
|
|
|
|
custom: true,
|
|
|
|
|
color: "#707070",
|
|
|
|
|
selectedColor: "#CAB18C",
|
|
|
|
|
backgroundColor: "#ffffff",
|
|
|
|
|
borderStyle: "black",
|
|
|
|
|
list: [
|
|
|
|
|
{
|
|
|
|
|
pagePath: "pages/index/index",
|
|
|
|
|
text: "主页",
|
|
|
|
|
@ -67,28 +68,23 @@ export default defineAppConfig({
|
|
|
|
|
iconPath: "img/tabar/5.png",
|
|
|
|
|
selectedIconPath: "img/tabar/55.png",
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
usingComponents: {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
lazyCodeLoading: 'requiredComponents',
|
|
|
|
|
usingComponents: {},
|
|
|
|
|
lazyCodeLoading: "requiredComponents",
|
|
|
|
|
window: {
|
|
|
|
|
backgroundTextStyle: 'light',
|
|
|
|
|
navigationStyle: 'custom',
|
|
|
|
|
navigationBarBackgroundColor: '#fff',
|
|
|
|
|
navigationBarTitleText: 'WeChat',
|
|
|
|
|
navigationBarTextStyle: 'black',
|
|
|
|
|
backgroundTextStyle: "light",
|
|
|
|
|
navigationStyle: "custom",
|
|
|
|
|
navigationBarBackgroundColor: "#fff",
|
|
|
|
|
navigationBarTitleText: "WeChat",
|
|
|
|
|
navigationBarTextStyle: "black",
|
|
|
|
|
// enablePullDownRefresh: true
|
|
|
|
|
},
|
|
|
|
|
requiredPrivateInfos: ["getLocation"],
|
|
|
|
|
subPackages: [
|
|
|
|
|
{
|
|
|
|
|
root: 'moduleIOT',
|
|
|
|
|
pages: [
|
|
|
|
|
"pages/iotCarePlan/WL200",
|
|
|
|
|
"pages/iotCarePlan/FR200",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
root: "moduleIOT",
|
|
|
|
|
pages: ["pages/iotCarePlan/WL200", "pages/iotCarePlan/FR200"],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
|
|
|
|
|