You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.6 KiB
80 lines
1.6 KiB
const {hot} = require('uni-pages-hot-modules')
|
|
|
|
module.exports = hot((pagesJson)=>{
|
|
return{
|
|
...pagesJson,
|
|
pages:[
|
|
{
|
|
"path":"pages/index",
|
|
"style":{
|
|
"navigationBarTitleText":"种植管理",
|
|
"app-plus":{
|
|
"titleNView":false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"path":"pages/warehouseMana",
|
|
"style":{
|
|
"navigationBarTitleText":"仓库管理",
|
|
"app-plus":{
|
|
"titleNView":false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"path":"pages/warehouseInfo",
|
|
"style":{
|
|
"navigationBarTitleText":"仓库基本信息",
|
|
"navigationBarBackgroundColor":"#10C176",
|
|
"navigationBarTextStyle":"white",
|
|
"app-plus":{
|
|
"titleNView":true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"path":"pages/warehouseDetail",
|
|
"style":{
|
|
"navigationBarTitleText":"仓库详情",
|
|
"navigationBarBackgroundColor":"#10C176",
|
|
"navigationBarTextStyle":"white",
|
|
"app-plus":{
|
|
"titleNView":true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"path":"pages/massifMana",
|
|
"style":{
|
|
"navigationBarTitleText":"地块管理",
|
|
"app-plus":{
|
|
"titleNView":false
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"path":"pages/massifDetail",
|
|
"style":{
|
|
"navigationBarTitleText":"地块详情",
|
|
"navigationBarBackgroundColor":"#10C176",
|
|
"navigationBarTextStyle":"white",
|
|
"app-plus":{
|
|
"titleNView":true
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"path":"pages/massifInfo",
|
|
"style":{
|
|
"navigationBarTitleText":"地块基本信息",
|
|
"navigationBarBackgroundColor":"#10C176",
|
|
"navigationBarTextStyle":"white",
|
|
"app-plus":{
|
|
"titleNView":true
|
|
}
|
|
}
|
|
},
|
|
]
|
|
}
|
|
})
|