pages.json 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. // "condition": { //模式配置,仅开发期间生效
  6. // "current": 0, //当前激活的模式(list 的索引项)
  7. // "list": [{
  8. // "name": "test", //模式名称
  9. // "path": "pages/componentsC/test/index", //启动页面,必选
  10. // "query": "uuid=c4bba940-f69e-11ea-a419-6bafda9d095e&__id__=1" //启动参数,在页面的onLoad函数里面得到
  11. // }]
  12. // },
  13. "pages": [
  14. // 反应页
  15. {
  16. "path": "pages/index",
  17. "style": {
  18. "titleNView": false
  19. }
  20. },
  21. // 个人中心
  22. {
  23. "path": "pages/personalCenter/personalCenter",
  24. "style": {
  25. "navigationBarTitleText": "我的",
  26. "titleNView": false,
  27. "navigationBarTextStyle": "black",
  28. "app-plus": {
  29. "bounce": "none", //关闭窗口回弹效果
  30. "scrollIndicator": "none" //app页面不显示滚动条
  31. }
  32. }
  33. },
  34. // 首页
  35. {
  36. "path": "pages/home/home",
  37. "style": {
  38. "navigationBarTitleText": "首页",
  39. "titleNView": false,
  40. "popGesture": "none"
  41. // "navigationBarTextStyle": "black"
  42. }
  43. },
  44. // 测试
  45. {
  46. "path": "pages/home/ceshi",
  47. "style": {
  48. "navigationBarTitleText": "ceshi"
  49. // "navigationBarTextStyle": "black"
  50. }
  51. },
  52. // 消息
  53. {
  54. "path": "pages/information/information",
  55. "style": {
  56. "navigationBarTitleText": "消息"
  57. }
  58. },
  59. // 登录
  60. {
  61. "path": "pages/login/login",
  62. "style": {
  63. "navigationBarTitleText": "登录",
  64. "titleNView": false
  65. }
  66. }
  67. ],
  68. "subPackages": [{
  69. "root": "pages/personalCenter",
  70. "pages": [
  71. // 我的设置
  72. {
  73. "path": "/setUp",
  74. "style": {
  75. "navigationBarTitleText": "设置",
  76. "titleNView": false,
  77. "navigationBarTextStyle": "black",
  78. "popGesture": "none",
  79. "app-plus": {
  80. "bounce": "none", //关闭窗口回弹效果
  81. "scrollIndicator": "none" //app页面不显示滚动条
  82. }
  83. }
  84. }
  85. ]
  86. }, {
  87. "root": "pages/home",
  88. "pages": [
  89. // 入库列表
  90. {
  91. "path": "/myorder/index",
  92. "style": {
  93. "navigationBarTitleText": "入库列表",
  94. "navigationBarTextStyle": "white",
  95. "app-plus": {
  96. "bounce": "none", //关闭窗口回弹效果
  97. "scrollIndicator": "none" //app页面不显示滚动条
  98. }
  99. }
  100. },
  101. // 出库列表
  102. {
  103. "path": "/delivery/index",
  104. "style": {
  105. "navigationBarTitleText": "出库列表",
  106. "navigationBarTextStyle": "white",
  107. "app-plus": {
  108. "bounce": "none", //关闭窗口回弹效果
  109. "scrollIndicator": "none" //app页面不显示滚动条
  110. }
  111. }
  112. },
  113. // 入库明细列表
  114. {
  115. "path": "/myorder/detailed",
  116. "style": {
  117. "navigationBarTitleText": "入库明细列表",
  118. "titleNView": false,
  119. "navigationBarTextStyle": "white",
  120. "app-plus": {
  121. "bounce": "none", //关闭窗口回弹效果
  122. "scrollIndicator": "none" //app页面不显示滚动条
  123. }
  124. }
  125. },
  126. // 出库明细列表
  127. {
  128. "path": "/delivery/detailed",
  129. "style": {
  130. "navigationBarTitleText": "出库明细列表",
  131. "titleNView": false,
  132. "navigationBarTextStyle": "white",
  133. "app-plus": {
  134. "bounce": "none", //关闭窗口回弹效果
  135. "scrollIndicator": "none" //app页面不显示滚动条
  136. }
  137. }
  138. },
  139. // 入库明细列表
  140. {
  141. "path": "/myorder/orderDetails/index",
  142. "style": {
  143. "navigationBarTitleText": "入库详情",
  144. // "titleNView": false,
  145. "navigationBarTextStyle": "white",
  146. "app-plus": {
  147. "bounce": "none", //关闭窗口回弹效果
  148. "scrollIndicator": "none" //app页面不显示滚动条
  149. }
  150. }
  151. },
  152. // 出库明细列表
  153. {
  154. "path": "/delivery/orderDetails/index",
  155. "style": {
  156. "navigationBarTitleText": "出库详情",
  157. // "titleNView": false,
  158. "navigationBarTextStyle": "white",
  159. "app-plus": {
  160. "bounce": "none", //关闭窗口回弹效果
  161. "scrollIndicator": "none" //app页面不显示滚动条
  162. }
  163. }
  164. },
  165. // 入库新行
  166. {
  167. "path": "/myorder/orderDetails/newlyAdded",
  168. "style": {
  169. "navigationBarTitleText": "入库新行",
  170. // "titleNView": false,
  171. "navigationBarTextStyle": "white",
  172. "app-plus": {
  173. "bounce": "none", //关闭窗口回弹效果
  174. "scrollIndicator": "none" //app页面不显示滚动条
  175. }
  176. }
  177. },
  178. // 出库新行
  179. {
  180. "path": "/delivery/orderDetails/newlyAdded",
  181. "style": {
  182. "navigationBarTitleText": "出库新行",
  183. // "titleNView": false,
  184. "navigationBarTextStyle": "white",
  185. "app-plus": {
  186. "bounce": "none", //关闭窗口回弹效果
  187. "scrollIndicator": "none" //app页面不显示滚动条
  188. }
  189. }
  190. },
  191. //船期查询
  192. {
  193. "path" : "/freightCalculation/shipSchedule",
  194. "style" :
  195. {
  196. "navigationBarTitleText": "船期查询",
  197. "enablePullDownRefresh": false,
  198. "navigationBarTextStyle": "white"
  199. }
  200. },
  201. //船期信息
  202. {
  203. "path" : "/freightCalculation/shippingInformation",
  204. "style" :
  205. {
  206. "navigationBarTitleText": "船期信息",
  207. "enablePullDownRefresh": false,
  208. "navigationBarTextStyle": "white"
  209. }
  210. },
  211. //海运费计算
  212. {
  213. "path" : "/freightCalculation/freightCalculation",
  214. "style" :
  215. {
  216. "navigationBarTitleText": "海运费计算",
  217. "enablePullDownRefresh": false,
  218. "navigationBarTextStyle": "white"
  219. }
  220. },
  221. //巡检
  222. {
  223. "path" : "/patrolInspection/index",
  224. "style" :
  225. {
  226. "navigationBarTitleText": "巡检",
  227. "enablePullDownRefresh": false,
  228. "navigationBarTextStyle": "white"
  229. }
  230. },
  231. //巡检详情
  232. {
  233. "path" : "/patrolInspection/patrolDetails",
  234. "style" :
  235. {
  236. "navigationBarTitleText": "巡检详情",
  237. "enablePullDownRefresh": false,
  238. "navigationBarTextStyle": "white"
  239. }
  240. },
  241. //统一审核页
  242. {
  243. "path" : "/allReview/index",
  244. "style" :
  245. {
  246. "navigationBarTitleText": "我的审核",
  247. "enablePullDownRefresh": false,
  248. "navigationBarTextStyle": "white"
  249. }
  250. },
  251. //我的审核
  252. {
  253. "path" : "/myReview/index",
  254. "style" :
  255. {
  256. "navigationBarTitleText": "我的审核",
  257. "enablePullDownRefresh": false,
  258. "navigationBarTextStyle": "white"
  259. }
  260. },
  261. //采购申请
  262. {
  263. "path" : "/procurementApplicationApproval/index",
  264. "style" :
  265. {
  266. "navigationBarTitleText": "采购申请",
  267. "enablePullDownRefresh": false,
  268. "navigationBarTextStyle": "white"
  269. }
  270. },
  271. //采购申请详情页
  272. {
  273. "path" : "/procurementApplicationApproval/detailsOrUpdates",
  274. "style" :
  275. {
  276. "navigationBarTitleText": "采购申请详情页",
  277. "enablePullDownRefresh": false,
  278. "navigationBarTextStyle": "white"
  279. }
  280. },
  281. //库存查询
  282. {
  283. "path" : "/inventoryQuery/index",
  284. "style" :
  285. {
  286. "navigationBarTitleText": "库存",
  287. "enablePullDownRefresh": false,
  288. "navigationBarTextStyle": "white"
  289. }
  290. },
  291. //调拨列表
  292. {
  293. "path" : "/allocation/index",
  294. "style" :
  295. {
  296. "navigationBarTitleText": "调拨列表",
  297. "enablePullDownRefresh": false,
  298. "navigationBarTextStyle": "white"
  299. }
  300. },
  301. //调拨明细
  302. {
  303. "path" : "/allocation/detailed",
  304. "style" :
  305. {
  306. "navigationBarTitleText": "调拨明细",
  307. "enablePullDownRefresh": false,
  308. "navigationBarTextStyle": "white"
  309. }
  310. },
  311. //货转列表
  312. {
  313. "path" : "/goodsTransfer/index",
  314. "style" :
  315. {
  316. "navigationBarTitleText": "货转列表",
  317. "enablePullDownRefresh": false,
  318. "navigationBarTextStyle": "white"
  319. }
  320. },
  321. //货转明细
  322. {
  323. "path" : "/goodsTransfer/index",
  324. "style" :
  325. {
  326. "navigationBarTitleText": "货转明细",
  327. "enablePullDownRefresh": false,
  328. "navigationBarTextStyle": "white"
  329. }
  330. }
  331. ]
  332. }],
  333. "preloadRule": {
  334. "pages/example/components": {
  335. "network": "all",
  336. "packages": ["pages/home", "pages/information", "pages/personalCenter"]
  337. }
  338. },
  339. "globalStyle": {
  340. "navigationBarTextStyle": "white",
  341. "navigationBarTitleText": "uView",
  342. "navigationBarBackgroundColor": "#1669e6",
  343. "backgroundColor": "#FFFFFF"
  344. },
  345. "tabBar": {
  346. "color": "#909399",
  347. "selectedColor": "#303133",
  348. "backgroundColor": "#FFFFFF",
  349. "borderStyle": "black",
  350. "list": [{
  351. "pagePath": "pages/home/home",
  352. "iconPath": "static/uview/example/component.png",
  353. "selectedIconPath": "static/uview/example/component_select.png",
  354. "text": "首页"
  355. },
  356. {
  357. "pagePath": "pages/information/information",
  358. "iconPath": "static/uview/example/js.png",
  359. "selectedIconPath": "static/uview/example/js_select.png",
  360. "text": "消息"
  361. },
  362. {
  363. "pagePath": "pages/personalCenter/personalCenter",
  364. "iconPath": "static/uview/example/template.png",
  365. "selectedIconPath": "static/uview/example/template_select.png",
  366. "text": "我的"
  367. }
  368. ]
  369. }
  370. }