pages.json 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/home/index",
  5. "style": {
  6. "navigationBarTextStyle": "black",
  7. "navigationBarBackgroundColor": "#eeeeee",
  8. "backgroundColor": "#f3f3f3",
  9. "app-plus": {
  10. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  11. "webviewBGTransparent": true,
  12. "mask": "none",
  13. "opacity": 0.9,
  14. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  15. }
  16. }
  17. },
  18. {
  19. "path": "pages/app/index",
  20. "style": {
  21. "navigationBarTitleText": "应用",
  22. "navigationBarTextStyle": "black",
  23. "navigationBarBackgroundColor": "#eeeeee",
  24. "backgroundColor": "#a3a3a3",
  25. "app-plus": {
  26. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  27. "background": "transparent", // 背景透明
  28. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  29. "webviewBGTransparent": true,
  30. "mask": "none",
  31. "opacity": 0.9,
  32. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  33. }
  34. }
  35. },
  36. {
  37. "path": "pages/user/index",
  38. "style": {
  39. "navigationBarTextStyle": "black",
  40. "navigationBarTitleText": "",
  41. "navigationStyle": "custom", // 取消本页面的导航栏
  42. "app-plus": {
  43. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  44. "background": "transparent", // 背景透明
  45. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  46. "webviewBGTransparent": true,
  47. "mask": "none",
  48. "opacity": 0.9,
  49. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  50. }
  51. }
  52. }, {
  53. "path": "pages/user/payCode",
  54. "style": {
  55. "navigationBarTextStyle": "black",
  56. "navigationBarTitleText": "HS 码",
  57. "navigationBarBackgroundColor": "#d7fdfc",
  58. "backgroundColor": "#c2f5ed",
  59. "enablePullDownRefresh": false
  60. }
  61. }, {
  62. "path": "pages/user/expense/expenseCalendar",
  63. "style": {
  64. "navigationBarTextStyle": "black",
  65. "backgroundColor": "#f3f3f3",
  66. "navigationBarTitleText": "消费记录",
  67. "navigationBarBackgroundColor": "#eeeeee",
  68. "enablePullDownRefresh": false
  69. }
  70. }, {
  71. "path": "pages/user/rechargeHistory",
  72. "style": {
  73. "navigationBarTextStyle": "black",
  74. "navigationBarBackgroundColor": "#eeeeee",
  75. "navigationBarTitleText": "充值记录",
  76. "enablePullDownRefresh": false
  77. }
  78. }, {
  79. "path": "pages/user/card",
  80. "style": {
  81. "navigationBarTextStyle": "black",
  82. "navigationBarTitleText": "已绑定卡片",
  83. "navigationBarBackgroundColor": "#eeeeee",
  84. "backgroundColor": "#ffffff",
  85. "enablePullDownRefresh": false
  86. }
  87. }, {
  88. "path": "pages/user/notification",
  89. "style": {
  90. "navigationBarTextStyle": "black",
  91. "navigationBarTitleText": "消息提醒",
  92. "navigationBarBackgroundColor": "#eeeeee",
  93. "backgroundColor": "#ebebeb",
  94. "enablePullDownRefresh": false
  95. }
  96. }, {
  97. "path": "pages/user/settings/settings",
  98. "style": {
  99. "navigationBarTextStyle": "black",
  100. "navigationBarTitleText": "系统设置",
  101. "navigationBarBackgroundColor": "#eeeeee",
  102. "backgroundColor": "#ffffff",
  103. "enablePullDownRefresh": false
  104. }
  105. }, {
  106. "path": "pages/user/expense/details",
  107. "style": {
  108. "navigationBarTextStyle": "black",
  109. "navigationBarBackgroundColor": "#eeeeee",
  110. "navigationBarTitleText": "消费详情",
  111. "enablePullDownRefresh": false
  112. }
  113. },
  114. {
  115. "path": "pages/home/myWebView",
  116. "style": {
  117. "navigationBarTextStyle": "black",
  118. "navigationBarBackgroundColor": "#eeeeee",
  119. "navigationBarTitleText": "浏览",
  120. "enablePullDownRefresh": false,
  121. "app-plus": {
  122. "titleNView": {
  123. "backgroundColor": "rgb(255, 255, 255)"
  124. }
  125. }
  126. }
  127. }, {
  128. "path": "pages/task/index",
  129. "style": {
  130. "navigationBarTextStyle": "black",
  131. "navigationBarTitleText": "任务",
  132. "enablePullDownRefresh": false
  133. }
  134. }, {
  135. "path": "pages/task/details",
  136. "style": {
  137. "navigationBarTextStyle": "black",
  138. "navigationBarTitleText": "任务详情",
  139. "navigationBarBackgroundColor": "#37babd"
  140. }
  141. }, {
  142. "path": "pages/home/more",
  143. "style": {
  144. "navigationBarTextStyle": "black",
  145. "navigationBarTitleText": "更多",
  146. "enablePullDownRefresh": false,
  147. "navigationBarBackgroundColor": "#eeeeee",
  148. "titleNView": {
  149. "backgroundColor": "rgb(255, 255, 255)"
  150. }
  151. }
  152. },
  153. {
  154. "path": "pages/orderFood/index",
  155. "style": {
  156. "navigationBarTextStyle": "black",
  157. "navigationBarBackgroundColor": "#eeeeee",
  158. "backgroundColor": "#f3f3f3",
  159. "app-plus": {
  160. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  161. "background": "transparent", // 背景透明
  162. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  163. "webviewBGTransparent": true,
  164. "mask": "none",
  165. "opacity": 0.9,
  166. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  167. }
  168. }
  169. },
  170. {
  171. "path": "pages/orderFood/ok",
  172. "style": {
  173. "navigationBarTextStyle": "black",
  174. "enablePullDownRefresh": false,
  175. "backgroundColor": "#f3f3f3",
  176. "navigationBarBackgroundColor": "#eeeeee"
  177. }
  178. },
  179. {
  180. "path": "pages/orderFood/list",
  181. "style": {
  182. "navigationBarTextStyle": "black",
  183. "backgroundColor": "#f3f3f3",
  184. "navigationBarTitleText": "待支付菜单",
  185. "navigationBarBackgroundColor": "#eeeeee",
  186. "enablePullDownRefresh": false
  187. }
  188. },
  189. {
  190. "path": "pages/integral/index",
  191. "style": {
  192. "navigationBarTitleText": "积分兑换",
  193. "navigationBarTextStyle": "black",
  194. "navigationBarBackgroundColor": "#eeeeee",
  195. "backgroundColor": "#f3f3f3",
  196. // "enablePullDownRefresh": true,
  197. "app-plus": {
  198. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  199. "background": "transparent", // 背景透明
  200. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  201. "webviewBGTransparent": true,
  202. "mask": "none",
  203. "opacity": 0.9,
  204. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  205. }
  206. }
  207. },
  208. {
  209. "path": "pages/integral/list",
  210. "style": {
  211. "navigationBarTextStyle": "black",
  212. "backgroundColor": "#f3f3f3",
  213. "navigationBarTitleText": "待支付商品",
  214. "navigationBarBackgroundColor": "#eeeeee",
  215. "enablePullDownRefresh": false
  216. }
  217. }, {
  218. "path": "pages/integral/shopcar",
  219. "style": {
  220. "navigationBarTextStyle": "black",
  221. "backgroundColor": "#ebebeb",
  222. "backgroundColorBottom": "#ebebeb",
  223. "navigationBarTitleText": "购物车",
  224. "navigationBarBackgroundColor": "#ebebeb",
  225. "enablePullDownRefresh": false
  226. }
  227. }, {
  228. "path": "pages/integral/ls",
  229. "style": {
  230. "navigationBarTextStyle": "black",
  231. "backgroundColor": "#f3f3f3",
  232. "navigationBarTitleText": "积分",
  233. "navigationBarBackgroundColor": "#eeeeee",
  234. "enablePullDownRefresh": false
  235. }
  236. }, {
  237. "path": "pages/user/profile",
  238. "style": {
  239. "navigationBarTextStyle": "black",
  240. "navigationBarTitleText": "档案",
  241. "navigationBarBackgroundColor": "#eeeeee",
  242. "enablePullDownRefresh": false
  243. }
  244. }, {
  245. "path": "pages/integral/more",
  246. "style": {
  247. "navigationBarTextStyle": "black",
  248. "navigationBarTitleText": "商品详情",
  249. "navigationBarBackgroundColor": "#eeeeee",
  250. "enablePullDownRefresh": false
  251. }
  252. }, {
  253. "path": "pages/integral/ok",
  254. "style": {
  255. "navigationBarTextStyle": "black",
  256. "navigationBarTitleText": "支付结果",
  257. "navigationBarBackgroundColor": "#eeeeee",
  258. "enablePullDownRefresh": false
  259. }
  260. },
  261. {
  262. "path": "pages/tabbar/wpTabbar",
  263. "style": {
  264. "navigationBarTextStyle": "black",
  265. "navigationBarBackgroundColor": "#eeeeee",
  266. "backgroundColor": "#f3f3f3",
  267. "app-plus": {
  268. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  269. "background": "transparent", // 背景透明
  270. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  271. "webviewBGTransparent": true,
  272. "mask": "none",
  273. "opacity": 0.9,
  274. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  275. }
  276. }
  277. }
  278. ],
  279. "subPackages": [{
  280. "root": "pageA",
  281. "pages": [{
  282. "path": "login/login",
  283. "style": {
  284. "navigationBarTextStyle": "black",
  285. "navigationBarTitleText": "",
  286. "navigationStyle": "custom", // 取消本页面的导航栏
  287. "app-plus": {
  288. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  289. "background": "transparent", // 背景透明
  290. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  291. "webviewBGTransparent": true,
  292. "mask": "none",
  293. "opacity": 0.9,
  294. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  295. }
  296. }
  297. }, {
  298. "path": "login/selectOrg",
  299. "style": {
  300. "navigationBarTextStyle": "black",
  301. "navigationBarTitleText": "",
  302. "navigationStyle": "custom", // 取消本页面的导航栏
  303. "app-plus": {
  304. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  305. "background": "transparent", // 背景透明
  306. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  307. "webviewBGTransparent": true,
  308. "mask": "none",
  309. "opacity": 0.9,
  310. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  311. }
  312. }
  313. }, {
  314. "path": "login/forget",
  315. "style": {
  316. "navigationBarTextStyle": "black",
  317. "navigationBarTitleText": "重置密码",
  318. "navigationBarBackgroundColor": "#eeeeee",
  319. "backgroundColor": "#ffffff",
  320. "enablePullDownRefresh": false
  321. }
  322. }, {
  323. "path": "login/register",
  324. "style": {
  325. "navigationBarTextStyle": "black",
  326. "navigationBarTitleText": "注册",
  327. "navigationBarBackgroundColor": "#eeeeee",
  328. "backgroundColor": "#ffffff",
  329. "enablePullDownRefresh": false
  330. }
  331. }, {
  332. "path": "psq/form",
  333. "style": {
  334. "navigationBarTextStyle": "black",
  335. "navigationBarTitleText": "消费记录",
  336. "navigationBarBackgroundColor": "#eeeeee",
  337. "enablePullDownRefresh": false
  338. }
  339. }, {
  340. "path": "psq/dayForm",
  341. "style": {
  342. "navigationBarTextStyle": "black",
  343. "navigationBarTitleText": "消费记录",
  344. "navigationBarBackgroundColor": "#eeeeee",
  345. "enablePullDownRefresh": false
  346. }
  347. }, {
  348. "path": "msg/index",
  349. "style": {
  350. "navigationBarTextStyle": "black",
  351. "backgroundColor": "#f3f3f3",
  352. "navigationBarTitleText": "通讯录",
  353. "navigationBarBackgroundColor": "#eeeeee",
  354. "enablePullDownRefresh": false
  355. }
  356. }, {
  357. "path": "salary/salary",
  358. "style": {
  359. "navigationBarTextStyle": "black",
  360. "backgroundColor": "#f3f3f3",
  361. "navigationBarTitleText": "工资",
  362. "navigationBarBackgroundColor": "#eeeeee",
  363. "enablePullDownRefresh": false
  364. }
  365. }, {
  366. "path": "salary/salarySlip",
  367. "style": {
  368. "navigationBarTextStyle": "black",
  369. "backgroundColor": "#f3f3f3",
  370. "navigationBarTitleText": "工资条",
  371. "navigationBarBackgroundColor": "#eeeeee",
  372. "enablePullDownRefresh": false
  373. }
  374. }, {
  375. "path": "notice/notice",
  376. "style": {
  377. "navigationBarTextStyle": "black",
  378. "backgroundColor": "#f3f3f3",
  379. "navigationBarTitleText": "详情",
  380. "navigationBarBackgroundColor": "#eeeeee",
  381. "enablePullDownRefresh": false
  382. }
  383. }, {
  384. "path": "msg/abList",
  385. "style": {
  386. "navigationBarTextStyle": "black",
  387. "backgroundColor": "#f3f3f3",
  388. "navigationBarTitleText": "通讯录",
  389. "navigationBarBackgroundColor": "#eeeeee",
  390. "enablePullDownRefresh": false
  391. }
  392. }, {
  393. "path": "msg/visitingCard",
  394. "style": {
  395. "navigationBarTextStyle": "black",
  396. "backgroundColor": "#f3f3f3",
  397. "navigationBarTitleText": "名片",
  398. "navigationBarBackgroundColor": "#eeeeee",
  399. "enablePullDownRefresh": false
  400. }
  401. }, {
  402. "path": "msg/groupAb",
  403. "style": {
  404. "navigationBarTextStyle": "black",
  405. "backgroundColor": "#f3f3f3",
  406. "navigationBarTitleText": "通讯录",
  407. "navigationBarBackgroundColor": "#eeeeee",
  408. "enablePullDownRefresh": false
  409. }
  410. }, {
  411. "path": "msg/userMsgList",
  412. "style": {
  413. "navigationStyle": "custom"
  414. // "navigationBarTextStyle": "black",
  415. // "backgroundColor": "#f3f3f3",
  416. // "navigationBarTitleText": "消息列表",
  417. // "navigationBarBackgroundColor": "#eeeeee",
  418. // "enablePullDownRefresh": false
  419. }
  420. }, {
  421. "path": "card/activetion",
  422. "style": {
  423. "navigationBarTextStyle": "black",
  424. "backgroundColor": "#f3f3f3",
  425. "navigationBarTitleText": "卡片激活",
  426. "navigationBarBackgroundColor": "#eeeeee",
  427. "enablePullDownRefresh": false
  428. }
  429. }, {
  430. "path": "card/index",
  431. "style": {
  432. "navigationBarTextStyle": "black",
  433. "backgroundColor": "#f3f3f3",
  434. "navigationBarTitleText": "会积分",
  435. "navigationBarBackgroundColor": "#eeeeee",
  436. "enablePullDownRefresh": false
  437. }
  438. }, {
  439. "path": "card/addressMgt",
  440. "style": {
  441. "navigationBarTextStyle": "black",
  442. "backgroundColor": "#f3f3f3",
  443. "navigationBarTitleText": "地址管理",
  444. "navigationBarBackgroundColor": "#eeeeee",
  445. "enablePullDownRefresh": false
  446. }
  447. }, {
  448. "path": "card/amassScoreRecord",
  449. "style": {
  450. "navigationBarTextStyle": "black",
  451. "backgroundColor": "#f3f3f3",
  452. "navigationBarTitleText": "积分记录",
  453. "navigationBarBackgroundColor": "#eeeeee",
  454. "enablePullDownRefresh": false
  455. }
  456. }, {
  457. "path": "card/orderProcess",
  458. "style": {
  459. "navigationBarTextStyle": "black",
  460. "backgroundColor": "#f3f3f3",
  461. "navigationBarTitleText": "订单进度",
  462. "navigationBarBackgroundColor": "#eeeeee",
  463. "enablePullDownRefresh": false
  464. }
  465. }, {
  466. "path": "card/addressList",
  467. "style": {
  468. "navigationBarTextStyle": "black",
  469. "backgroundColor": "#f3f3f3",
  470. "navigationBarTitleText": "地址列表",
  471. "navigationBarBackgroundColor": "#eeeeee",
  472. "enablePullDownRefresh": false
  473. }
  474. }, {
  475. "path": "card/grant",
  476. "style": {
  477. "navigationBarTextStyle": "black",
  478. "backgroundColor": "#f3f3f3",
  479. "navigationBarTitleText": "发放登记",
  480. "navigationBarBackgroundColor": "#eeeeee",
  481. "enablePullDownRefresh": false
  482. }
  483. }, {
  484. "path": "card/expense/expenseCalendar",
  485. "style": {
  486. "navigationBarTextStyle": "black",
  487. "backgroundColor": "#f3f3f3",
  488. "navigationBarTitleText": "订单列表",
  489. "navigationBarBackgroundColor": "#eeeeee",
  490. "enablePullDownRefresh": false
  491. }
  492. }, {
  493. "path": "card/expense/details",
  494. "style": {
  495. "navigationBarTextStyle": "black",
  496. "backgroundColor": "#f3f3f3",
  497. "navigationBarTitleText": "订单详情",
  498. "navigationBarBackgroundColor": "#eeeeee",
  499. "enablePullDownRefresh": false
  500. }
  501. }, {
  502. "path": "officefile/index",
  503. "style": {
  504. "navigationBarTitleText": "",
  505. "enablePullDownRefresh": false
  506. }
  507. }, {
  508. "path": "integral/index",
  509. "style": {
  510. "navigationBarTextStyle": "black",
  511. "backgroundColor": "#f3f3f3",
  512. "navigationBarTitleText": "积分兑换",
  513. "navigationBarBackgroundColor": "#eeeeee",
  514. "enablePullDownRefresh": false
  515. }
  516. }, {
  517. "path": "integral/shopcar",
  518. "style": {
  519. "backgroundColorBottom": "#f3f3f3",
  520. "backgroundColorTop": "#f3f3f3",
  521. "navigationBarTextStyle": "black",
  522. "backgroundColor": "#dadada",
  523. "navigationBarTitleText": "购物车",
  524. "navigationBarBackgroundColor": "#eeeeee",
  525. "enablePullDownRefresh": false
  526. }
  527. }, {
  528. "path": "integral/shopcarTemporary",
  529. "style": {
  530. "backgroundColorBottom": "#f3f3f3",
  531. "backgroundColorTop": "#f3f3f3",
  532. "navigationBarTextStyle": "black",
  533. "backgroundColor": "#dadada",
  534. "navigationBarTitleText": "购物车",
  535. "navigationBarBackgroundColor": "#eeeeee",
  536. "enablePullDownRefresh": false
  537. }
  538. }, {
  539. "path": "integral/list",
  540. "style": {
  541. "navigationBarTextStyle": "black",
  542. "backgroundColor": "#f3f3f3",
  543. "navigationBarTitleText": "确认兑换",
  544. "navigationBarBackgroundColor": "#eeeeee",
  545. "enablePullDownRefresh": false
  546. }
  547. }, {
  548. "path": "integral/ok",
  549. "style": {
  550. "navigationBarTextStyle": "black",
  551. "navigationBarBackgroundColor": "#eeeeee",
  552. "backgroundColor": "#f3f3f3",
  553. "app-plus": {
  554. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  555. "webviewBGTransparent": true,
  556. "mask": "none",
  557. "opacity": 0.9,
  558. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  559. }
  560. }
  561. }, {
  562. "path": "integral/expenseCalendar",
  563. "style": {
  564. "navigationBarTextStyle": "black",
  565. "backgroundColor": "#f3f3f3",
  566. "navigationBarTitleText": "兑换记录",
  567. "navigationBarBackgroundColor": "#eeeeee",
  568. "enablePullDownRefresh": false
  569. }
  570. }, {
  571. "path": "integral/details",
  572. "style": {
  573. "navigationBarTextStyle": "black",
  574. "backgroundColor": "#f3f3f3",
  575. "navigationBarTitleText": "详细",
  576. "navigationBarBackgroundColor": "#eeeeee",
  577. "enablePullDownRefresh": false
  578. }
  579. }, {
  580. "path": "club/index",
  581. "style": {
  582. "navigationBarTextStyle": "black",
  583. "backgroundColor": "#f3f3f3",
  584. "navigationBarTitleText": "活动报名",
  585. "navigationBarBackgroundColor": "#eeeeee",
  586. "enablePullDownRefresh": false
  587. }
  588. }, {
  589. "path": "club/more",
  590. "style": {
  591. "navigationBarTextStyle": "black",
  592. "backgroundColor": "#f3f3f3",
  593. "navigationBarTitleText": "详情",
  594. "navigationBarBackgroundColor": "#eeeeee",
  595. "enablePullDownRefresh": false
  596. }
  597. }, {
  598. "path": "club/appoint",
  599. "style": {
  600. "navigationBarTextStyle": "black",
  601. "backgroundColor": "#f3f3f3",
  602. "navigationBarTitleText": "历史活动记录",
  603. "navigationBarBackgroundColor": "#eeeeee",
  604. "enablePullDownRefresh": false
  605. }
  606. }, {
  607. "path": "club/welfareList",
  608. "style": {
  609. "navigationBarTextStyle": "black",
  610. "backgroundColor": "#f3f3f3",
  611. "navigationBarTitleText": "福利",
  612. "navigationBarBackgroundColor": "#eeeeee",
  613. "enablePullDownRefresh": false
  614. }
  615. }, {
  616. "path": "club/apply",
  617. "style": {
  618. "navigationBarTextStyle": "black",
  619. "backgroundColor": "#f3f3f3",
  620. "navigationBarTitleText": "报名提交",
  621. "navigationBarBackgroundColor": "#eeeeee",
  622. "enablePullDownRefresh": false
  623. }
  624. }, {
  625. "path": "kq/kqList",
  626. "style": {
  627. "navigationBarTextStyle": "black",
  628. "backgroundColor": "#f3f3f3",
  629. "navigationBarTitleText": "考勤记录",
  630. "navigationBarBackgroundColor": "#eeeeee",
  631. "enablePullDownRefresh": false
  632. }
  633. }]
  634. },
  635. {
  636. "root": "pageApp",
  637. "pages": [{
  638. "path": "my/MyApproval",
  639. "style": {
  640. "backgroundColorBottom": "#f3f3f3",
  641. "backgroundColorTop": "#f3f3f3",
  642. "navigationBarTextStyle": "black",
  643. "backgroundColor": "#f3f3f3",
  644. "navigationBarTitleText": "我的审批",
  645. "navigationBarBackgroundColor": "#eeeeee",
  646. "enablePullDownRefresh": false
  647. }
  648. }, {
  649. "path": "ge/geApproval",
  650. "style": {
  651. "backgroundColorBottom": "#f3f3f3",
  652. "backgroundColorTop": "#f3f3f3",
  653. "navigationBarTextStyle": "black",
  654. "backgroundColor": "#f3f3f3",
  655. "navigationBarTitleText": "审批",
  656. "navigationBarBackgroundColor": "#eeeeee",
  657. "enablePullDownRefresh": false
  658. }
  659. },
  660. {
  661. "path": "ge/geNewsApproval",
  662. "style": {
  663. "backgroundColorBottom": "#f3f3f3",
  664. "backgroundColorTop": "#f3f3f3",
  665. "navigationBarTextStyle": "black",
  666. "backgroundColor": "#f3f3f3",
  667. "navigationBarTitleText": "审批",
  668. "navigationBarBackgroundColor": "#eeeeee",
  669. "enablePullDownRefresh": false
  670. }
  671. },
  672. {
  673. "path": "ge/geReserveApproval",
  674. "style": {
  675. "backgroundColorBottom": "#f3f3f3",
  676. "backgroundColorTop": "#f3f3f3",
  677. "navigationBarTextStyle": "black",
  678. "backgroundColor": "#f3f3f3",
  679. "navigationBarTitleText": "审批",
  680. "navigationBarBackgroundColor": "#eeeeee",
  681. "enablePullDownRefresh": false
  682. }
  683. },
  684. {
  685. "path": "ge/geEntry",
  686. "style": {
  687. "backgroundColorBottom": "#f3f3f3",
  688. "backgroundColorTop": "#f3f3f3",
  689. "navigationBarTextStyle": "black",
  690. "backgroundColor": "#f3f3f3",
  691. "navigationBarTitleText": "审批",
  692. "navigationBarBackgroundColor": "#eeeeee",
  693. "enablePullDownRefresh": false
  694. }
  695. }, {
  696. "path": "ge/geDimission",
  697. "style": {
  698. "backgroundColorBottom": "#f3f3f3",
  699. "backgroundColorTop": "#f3f3f3",
  700. "navigationBarTextStyle": "black",
  701. "backgroundColor": "#f3f3f3",
  702. "navigationBarTitleText": "审批",
  703. "navigationBarBackgroundColor": "#eeeeee",
  704. "enablePullDownRefresh": false
  705. }
  706. }, {
  707. "path": "ge/geNotice",
  708. "style": {
  709. "backgroundColorBottom": "#f3f3f3",
  710. "backgroundColorTop": "#f3f3f3",
  711. "navigationBarTextStyle": "black",
  712. "backgroundColor": "#f3f3f3",
  713. "navigationBarTitleText": "审批",
  714. "navigationBarBackgroundColor": "#eeeeee",
  715. "enablePullDownRefresh": false
  716. }
  717. }, {
  718. "path": "ge/geUseSeal",
  719. "style": {
  720. "backgroundColorBottom": "#f3f3f3",
  721. "backgroundColorTop": "#f3f3f3",
  722. "navigationBarTextStyle": "black",
  723. "backgroundColor": "#f3f3f3",
  724. "navigationBarTitleText": "审批",
  725. "navigationBarBackgroundColor": "#eeeeee",
  726. "enablePullDownRefresh": false
  727. }
  728. }, {
  729. "path": "ge/geShiftOfficial",
  730. "style": {
  731. "backgroundColorBottom": "#f3f3f3",
  732. "backgroundColorTop": "#f3f3f3",
  733. "navigationBarTextStyle": "black",
  734. "backgroundColor": "#f3f3f3",
  735. "navigationBarTitleText": "审批",
  736. "navigationBarBackgroundColor": "#eeeeee",
  737. "enablePullDownRefresh": false
  738. }
  739. }, {
  740. "path": "ge/geInterview",
  741. "style": {
  742. "backgroundColorBottom": "#f3f3f3",
  743. "backgroundColorTop": "#f3f3f3",
  744. "navigationBarTextStyle": "black",
  745. "backgroundColor": "#f3f3f3",
  746. "navigationBarTitleText": "审批",
  747. "navigationBarBackgroundColor": "#eeeeee",
  748. "enablePullDownRefresh": false
  749. }
  750. }, {
  751. "path": "ge/geDeviceRepairs",
  752. "style": {
  753. "backgroundColorBottom": "#f3f3f3",
  754. "backgroundColorTop": "#f3f3f3",
  755. "navigationBarTextStyle": "black",
  756. "backgroundColor": "#f3f3f3",
  757. "navigationBarTitleText": "审批",
  758. "navigationBarBackgroundColor": "#eeeeee",
  759. "enablePullDownRefresh": false
  760. }
  761. }, {
  762. "path": "ge/geDeviceScrap",
  763. "style": {
  764. "backgroundColorBottom": "#f3f3f3",
  765. "backgroundColorTop": "#f3f3f3",
  766. "navigationBarTextStyle": "black",
  767. "backgroundColor": "#f3f3f3",
  768. "navigationBarTitleText": "审批",
  769. "navigationBarBackgroundColor": "#eeeeee",
  770. "enablePullDownRefresh": false
  771. }
  772. }, {
  773. "path": "ge/gePurchase",
  774. "style": {
  775. "backgroundColorBottom": "#f3f3f3",
  776. "backgroundColorTop": "#f3f3f3",
  777. "navigationBarTextStyle": "black",
  778. "backgroundColor": "#f3f3f3",
  779. "navigationBarTitleText": "审批",
  780. "navigationBarBackgroundColor": "#eeeeee",
  781. "enablePullDownRefresh": false
  782. }
  783. },
  784. {
  785. "path": "hr/leave",
  786. "style": {
  787. "backgroundColorBottom": "#f3f3f3",
  788. "backgroundColorTop": "#f3f3f3",
  789. "navigationBarTextStyle": "black",
  790. "backgroundColor": "#f3f3f3",
  791. "navigationBarTitleText": "请假申请",
  792. "navigationBarBackgroundColor": "#eeeeee",
  793. "enablePullDownRefresh": false
  794. }
  795. },
  796. {
  797. "path": "my/myAll",
  798. "style": {
  799. "backgroundColorBottom": "#f3f3f3",
  800. "backgroundColorTop": "#f3f3f3",
  801. "navigationBarTextStyle": "black",
  802. "backgroundColor": "#f3f3f3",
  803. "navigationBarTitleText": "我的已办",
  804. "navigationBarBackgroundColor": "#eeeeee",
  805. "enablePullDownRefresh": false
  806. }
  807. },
  808. {
  809. "path": "my/myLaunch",
  810. "style": {
  811. "backgroundColorBottom": "#f3f3f3",
  812. "backgroundColorTop": "#f3f3f3",
  813. "navigationBarTextStyle": "black",
  814. "backgroundColor": "#f3f3f3",
  815. "navigationBarTitleText": "我的发起",
  816. "navigationBarBackgroundColor": "#eeeeee",
  817. "enablePullDownRefresh": false
  818. }
  819. }, {
  820. "path": "my/myCc",
  821. "style": {
  822. "backgroundColorBottom": "#f3f3f3",
  823. "backgroundColorTop": "#f3f3f3",
  824. "navigationBarTextStyle": "black",
  825. "backgroundColor": "#f3f3f3",
  826. "navigationBarTitleText": "抄送",
  827. "navigationBarBackgroundColor": "#eeeeee",
  828. "enablePullDownRefresh": false
  829. }
  830. },
  831. {
  832. "path": "hr/list",
  833. "style": {
  834. "backgroundColorBottom": "#f3f3f3",
  835. "backgroundColorTop": "#f3f3f3",
  836. "navigationBarTextStyle": "black",
  837. "backgroundColor": "#f3f3f3",
  838. "navigationBarTitleText": "请假记录",
  839. "navigationBarBackgroundColor": "#eeeeee",
  840. "enablePullDownRefresh": false
  841. }
  842. }, {
  843. "path": "administration/reserve",
  844. "style": {
  845. "backgroundColorBottom": "#f3f3f3",
  846. "backgroundColorTop": "#f3f3f3",
  847. "navigationBarTextStyle": "black",
  848. "backgroundColor": "#f3f3f3",
  849. "navigationBarTitleText": "物资",
  850. "navigationBarBackgroundColor": "#eeeeee",
  851. "enablePullDownRefresh": false
  852. }
  853. }, {
  854. "path": "administration/conference",
  855. "style": {
  856. "backgroundColorBottom": "#f3f3f3",
  857. "backgroundColorTop": "#f3f3f3",
  858. "navigationBarTextStyle": "black",
  859. "backgroundColor": "#f3f3f3",
  860. "navigationBarTitleText": "会议审批",
  861. "navigationBarBackgroundColor": "#eeeeee",
  862. "enablePullDownRefresh": false
  863. }
  864. }, {
  865. "path": "administration/useSeal",
  866. "style": {
  867. "backgroundColorBottom": "#f3f3f3",
  868. "backgroundColorTop": "#f3f3f3",
  869. "navigationBarTextStyle": "black",
  870. "backgroundColor": "#f3f3f3",
  871. "navigationBarTitleText": "用章申请",
  872. "navigationBarBackgroundColor": "#eeeeee",
  873. "enablePullDownRefresh": false
  874. }
  875. }, {
  876. "path": "administration/useCar",
  877. "style": {
  878. "backgroundColorBottom": "#f3f3f3",
  879. "backgroundColorTop": "#f3f3f3",
  880. "navigationBarTextStyle": "black",
  881. "backgroundColor": "#f3f3f3",
  882. "navigationBarTitleText": "用车申请",
  883. "navigationBarBackgroundColor": "#eeeeee",
  884. "enablePullDownRefresh": false
  885. }
  886. }, {
  887. "path": "administration/inform",
  888. "style": {
  889. "backgroundColorBottom": "#f3f3f3",
  890. "backgroundColorTop": "#f3f3f3",
  891. "navigationBarTextStyle": "black",
  892. "backgroundColor": "#f3f3f3",
  893. "navigationBarTitleText": "发起通知",
  894. "navigationBarBackgroundColor": "#eeeeee",
  895. "enablePullDownRefresh": false
  896. }
  897. }, {
  898. "path": "hr/performance",
  899. "style": {
  900. "backgroundColorBottom": "#f3f3f3",
  901. "backgroundColorTop": "#f3f3f3",
  902. "navigationBarTextStyle": "black",
  903. "backgroundColor": "#f3f3f3",
  904. "navigationBarTitleText": "绩效考评",
  905. "navigationBarBackgroundColor": "#eeeeee",
  906. "enablePullDownRefresh": false
  907. }
  908. }, {
  909. "path": "hr/entry",
  910. "style": {
  911. "backgroundColorBottom": "#f3f3f3",
  912. "backgroundColorTop": "#f3f3f3",
  913. "navigationBarTextStyle": "black",
  914. "backgroundColor": "#f3f3f3",
  915. "navigationBarTitleText": "入职申请",
  916. "navigationBarBackgroundColor": "#eeeeee",
  917. "enablePullDownRefresh": false
  918. }
  919. }, {
  920. "path": "hr/interview",
  921. "style": {
  922. "backgroundColorBottom": "#f3f3f3",
  923. "backgroundColorTop": "#f3f3f3",
  924. "navigationBarTextStyle": "black",
  925. "backgroundColor": "#f3f3f3",
  926. "navigationBarTitleText": "面试记录",
  927. "navigationBarBackgroundColor": "#eeeeee",
  928. "enablePullDownRefresh": false
  929. }
  930. }, {
  931. "path": "hr/hire",
  932. "style": {
  933. "backgroundColorBottom": "#f3f3f3",
  934. "backgroundColorTop": "#f3f3f3",
  935. "navigationBarTextStyle": "black",
  936. "backgroundColor": "#f3f3f3",
  937. "navigationBarTitleText": "录用申请",
  938. "navigationBarBackgroundColor": "#eeeeee",
  939. "enablePullDownRefresh": false
  940. }
  941. }, {
  942. "path": "hr/shiftOfficial",
  943. "style": {
  944. "backgroundColorBottom": "#f3f3f3",
  945. "backgroundColorTop": "#f3f3f3",
  946. "navigationBarTextStyle": "black",
  947. "backgroundColor": "#f3f3f3",
  948. "navigationBarTitleText": "转正申请",
  949. "navigationBarBackgroundColor": "#eeeeee",
  950. "enablePullDownRefresh": false
  951. }
  952. }, {
  953. "path": "hr/dimission",
  954. "style": {
  955. "backgroundColorBottom": "#f3f3f3",
  956. "backgroundColorTop": "#f3f3f3",
  957. "navigationBarTextStyle": "black",
  958. "backgroundColor": "#f3f3f3",
  959. "navigationBarTitleText": "离职申请",
  960. "navigationBarBackgroundColor": "#eeeeee",
  961. "enablePullDownRefresh": false
  962. }
  963. }, {
  964. "path": "other/contract",
  965. "style": {
  966. "backgroundColorBottom": "#f3f3f3",
  967. "backgroundColorTop": "#f3f3f3",
  968. "navigationBarTextStyle": "black",
  969. "backgroundColor": "#f3f3f3",
  970. "navigationBarTitleText": "合同管理",
  971. "navigationBarBackgroundColor": "#eeeeee",
  972. "enablePullDownRefresh": false
  973. }
  974. }, {
  975. "path": "other/purchase",
  976. "style": {
  977. "backgroundColorBottom": "#f3f3f3",
  978. "backgroundColorTop": "#f3f3f3",
  979. "navigationBarTextStyle": "black",
  980. "backgroundColor": "#f3f3f3",
  981. "navigationBarTitleText": "采购申请",
  982. "navigationBarBackgroundColor": "#eeeeee",
  983. "enablePullDownRefresh": false
  984. }
  985. }, {
  986. "path": "other/file",
  987. "style": {
  988. "backgroundColorBottom": "#f3f3f3",
  989. "backgroundColorTop": "#f3f3f3",
  990. "navigationBarTextStyle": "black",
  991. "backgroundColor": "#f3f3f3",
  992. "navigationBarTitleText": "文件审批",
  993. "navigationBarBackgroundColor": "#eeeeee",
  994. "enablePullDownRefresh": false
  995. }
  996. }, {
  997. "path": "other/repairs",
  998. "style": {
  999. "backgroundColorBottom": "#f3f3f3",
  1000. "backgroundColorTop": "#f3f3f3",
  1001. "navigationBarTextStyle": "black",
  1002. "backgroundColor": "#f3f3f3",
  1003. "navigationBarTitleText": "报修申请",
  1004. "navigationBarBackgroundColor": "#eeeeee",
  1005. "enablePullDownRefresh": false
  1006. }
  1007. }, {
  1008. "path": "other/scrap",
  1009. "style": {
  1010. "backgroundColorBottom": "#f3f3f3",
  1011. "backgroundColorTop": "#f3f3f3",
  1012. "navigationBarTextStyle": "black",
  1013. "backgroundColor": "#f3f3f3",
  1014. "navigationBarTitleText": "报废申请",
  1015. "navigationBarBackgroundColor": "#eeeeee",
  1016. "enablePullDownRefresh": false
  1017. }
  1018. }, {
  1019. "path": "finance/costReimburse",
  1020. "style": {
  1021. "backgroundColorBottom": "#f3f3f3",
  1022. "backgroundColorTop": "#f3f3f3",
  1023. "navigationBarTextStyle": "black",
  1024. "backgroundColor": "#f3f3f3",
  1025. "navigationBarTitleText": "费用报销",
  1026. "navigationBarBackgroundColor": "#eeeeee",
  1027. "enablePullDownRefresh": false
  1028. }
  1029. }
  1030. ]
  1031. }
  1032. ],
  1033. "preloadRule": {
  1034. "pageA/login/login": {
  1035. "network": "all",
  1036. "packages": ["__APP__"]
  1037. }
  1038. },
  1039. // 原生的导航
  1040. "tabBar": {
  1041. // 需要时HexColor,设置成red 无法识别,下方颜色设置同理
  1042. "selectedColor": "#555",
  1043. "backgroundColor": "#f3f3f3",
  1044. "color": "#7A7E83",
  1045. "borderStyle": "white",
  1046. "height": "70px",
  1047. "list": [{
  1048. "pagePath": "pages/home/index",
  1049. "iconPath": "static/img/tab-icon/home.png",
  1050. "selectedIconPath": "static/img/tab-icon/home-active.png",
  1051. "text": "首页"
  1052. },
  1053. {
  1054. "pagePath": "pages/orderFood/index",
  1055. "iconPath": "static/img/tab-icon/order-food.png",
  1056. "selectedIconPath": "static/img/tab-icon/order-food-active.png",
  1057. "text": "订餐"
  1058. },
  1059. {
  1060. "pagePath": "pages/integral/index",
  1061. "iconPath": "static/img/tab-icon/shop.png",
  1062. "selectedIconPath": "static/img/tab-icon/shop-active.png",
  1063. "text": "积分商城"
  1064. },
  1065. // {
  1066. // "pagePath": "pages/task/index",
  1067. // "iconPath": "static/img/tab-icon/task.png",
  1068. // "selectedIconPath": "static/img/tab-icon/task-fill.png",
  1069. // "text": "任务"
  1070. // },
  1071. {
  1072. "pagePath": "pages/app/index",
  1073. "iconPath": "static/img/tab-icon/app.png",
  1074. "selectedIconPath": "static/img/tab-icon/app-active.png",
  1075. "text": "应用"
  1076. },
  1077. // {
  1078. // "pagePath": "pages/msg/index",
  1079. // "iconPath": "static/img/tab-icon/tongxun.png",
  1080. // "selectedIconPath": "static/img/tab-icon/tongxun-active.png",
  1081. // "text": "通讯"
  1082. // },
  1083. {
  1084. "pagePath": "pages/user/index",
  1085. "iconPath": "static/img/tab-icon/me.png",
  1086. "selectedIconPath": "static/img/tab-icon/me-active.png",
  1087. "text": "我的"
  1088. }
  1089. ]
  1090. },
  1091. "globalStyle": {
  1092. "app-plus": {}
  1093. },
  1094. "condition": { //模式配置,仅开发期间生效
  1095. "current": 0, //当前激活的模式(list 的索引项)
  1096. "list": [{
  1097. "name": "default", //模式名称
  1098. "path": "pages/tabbar/wpTabbar", //启动页面,必选
  1099. "query": "" //启动参数,在页面的onLoad函数里面得到
  1100. }]
  1101. }
  1102. }