pages.json 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141
  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. }
  149. },
  150. {
  151. "path": "pages/orderFood/index",
  152. "style": {
  153. "navigationBarTextStyle": "black",
  154. "navigationBarBackgroundColor": "#eeeeee",
  155. "backgroundColor": "#f3f3f3",
  156. "app-plus": {
  157. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  158. "background": "transparent", // 背景透明
  159. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  160. "webviewBGTransparent": true,
  161. "mask": "none",
  162. "opacity": 0.9,
  163. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  164. }
  165. }
  166. },
  167. {
  168. "path": "pages/orderFood/ok",
  169. "style": {
  170. "navigationBarTextStyle": "black",
  171. "enablePullDownRefresh": false,
  172. "backgroundColor": "#f3f3f3",
  173. "navigationBarBackgroundColor": "#eeeeee"
  174. }
  175. },
  176. {
  177. "path": "pages/orderFood/list",
  178. "style": {
  179. "navigationBarTextStyle": "black",
  180. "backgroundColor": "#f3f3f3",
  181. "navigationBarTitleText": "待支付菜单",
  182. "navigationBarBackgroundColor": "#eeeeee",
  183. "enablePullDownRefresh": false
  184. }
  185. },
  186. {
  187. "path": "pages/integral/index",
  188. "style": {
  189. "navigationBarTitleText": "积分兑换",
  190. "navigationBarTextStyle": "black",
  191. "navigationBarBackgroundColor": "#eeeeee",
  192. "backgroundColor": "#f3f3f3",
  193. // "enablePullDownRefresh": true,
  194. "app-plus": {
  195. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  196. "background": "transparent", // 背景透明
  197. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  198. "webviewBGTransparent": true,
  199. "mask": "none",
  200. "opacity": 0.9,
  201. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  202. }
  203. }
  204. },
  205. {
  206. "path": "pages/integral/list",
  207. "style": {
  208. "navigationBarTextStyle": "black",
  209. "backgroundColor": "#f3f3f3",
  210. "navigationBarTitleText": "待支付商品",
  211. "navigationBarBackgroundColor": "#eeeeee",
  212. "enablePullDownRefresh": false
  213. }
  214. }, {
  215. "path": "pages/integral/shopcar",
  216. "style": {
  217. "navigationBarTextStyle": "black",
  218. "backgroundColor": "#ebebeb",
  219. "backgroundColorBottom": "#ebebeb",
  220. "navigationBarTitleText": "购物车",
  221. "navigationBarBackgroundColor": "#ebebeb",
  222. "enablePullDownRefresh": false
  223. }
  224. }, {
  225. "path": "pages/integral/ls",
  226. "style": {
  227. "navigationBarTextStyle": "black",
  228. "backgroundColor": "#f3f3f3",
  229. "navigationBarTitleText": "积分",
  230. "navigationBarBackgroundColor": "#eeeeee",
  231. "enablePullDownRefresh": false
  232. }
  233. }, {
  234. "path": "pages/user/profile",
  235. "style": {
  236. "navigationBarTextStyle": "black",
  237. "navigationBarTitleText": "档案",
  238. "navigationBarBackgroundColor": "#eeeeee",
  239. "enablePullDownRefresh": false
  240. }
  241. }, {
  242. "path": "pages/integral/more",
  243. "style": {
  244. "navigationBarTextStyle": "black",
  245. "navigationBarTitleText": "商品详情",
  246. "navigationBarBackgroundColor": "#eeeeee",
  247. "enablePullDownRefresh": false
  248. }
  249. }, {
  250. "path": "pages/integral/ok",
  251. "style": {
  252. "navigationBarTextStyle": "black",
  253. "navigationBarTitleText": "支付结果",
  254. "navigationBarBackgroundColor": "#eeeeee",
  255. "enablePullDownRefresh": false
  256. }
  257. },
  258. {
  259. "path": "pages/tabbar/wpTabbar",
  260. "style": {
  261. "navigationBarTextStyle": "black",
  262. "navigationBarBackgroundColor": "#eeeeee",
  263. "backgroundColor": "#f3f3f3",
  264. "app-plus": {
  265. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  266. "background": "transparent", // 背景透明
  267. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  268. "webviewBGTransparent": true,
  269. "mask": "none",
  270. "opacity": 0.9,
  271. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  272. }
  273. }
  274. }
  275. ],
  276. "subPackages": [{
  277. "root": "pageA",
  278. "pages": [{
  279. "path": "login/login",
  280. "style": {
  281. "navigationBarTextStyle": "black",
  282. "navigationBarTitleText": "",
  283. "navigationStyle": "custom", // 取消本页面的导航栏
  284. "app-plus": {
  285. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  286. "background": "transparent", // 背景透明
  287. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  288. "webviewBGTransparent": true,
  289. "mask": "none",
  290. "opacity": 0.9,
  291. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  292. }
  293. }
  294. }, {
  295. "path": "login/selectOrg",
  296. "style": {
  297. "navigationBarTextStyle": "black",
  298. "navigationBarTitleText": "",
  299. "navigationStyle": "custom", // 取消本页面的导航栏
  300. "app-plus": {
  301. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  302. "background": "transparent", // 背景透明
  303. "backgroundColor": "rgba(0,0,0,0)", // 背景透明
  304. "webviewBGTransparent": true,
  305. "mask": "none",
  306. "opacity": 0.9,
  307. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  308. }
  309. }
  310. }, {
  311. "path": "login/forget",
  312. "style": {
  313. "navigationBarTextStyle": "black",
  314. "navigationBarTitleText": "重置密码",
  315. "navigationBarBackgroundColor": "#eeeeee",
  316. "backgroundColor": "#ffffff",
  317. "enablePullDownRefresh": false
  318. }
  319. }, {
  320. "path": "login/register",
  321. "style": {
  322. "navigationBarTextStyle": "black",
  323. "navigationBarTitleText": "注册",
  324. "navigationBarBackgroundColor": "#eeeeee",
  325. "backgroundColor": "#ffffff",
  326. "enablePullDownRefresh": false
  327. }
  328. },{
  329. "path": "login/getOpenId",
  330. "style": {
  331. "navigationBarTextStyle": "black",
  332. "navigationBarTitleText": "授权",
  333. "navigationBarBackgroundColor": "#eeeeee",
  334. "backgroundColor": "#ffffff",
  335. "enablePullDownRefresh": false
  336. }
  337. }, {
  338. "path": "psq/form",
  339. "style": {
  340. "navigationBarTextStyle": "black",
  341. "navigationBarTitleText": "消费记录",
  342. "navigationBarBackgroundColor": "#eeeeee",
  343. "enablePullDownRefresh": false
  344. }
  345. }, {
  346. "path": "psq/dayForm",
  347. "style": {
  348. "navigationBarTextStyle": "black",
  349. "navigationBarTitleText": "消费记录",
  350. "navigationBarBackgroundColor": "#eeeeee",
  351. "enablePullDownRefresh": false
  352. }
  353. }, {
  354. "path": "msg/index",
  355. "style": {
  356. "navigationBarTextStyle": "black",
  357. "backgroundColor": "#f3f3f3",
  358. "navigationBarTitleText": "通讯录",
  359. "navigationBarBackgroundColor": "#eeeeee",
  360. "enablePullDownRefresh": false
  361. }
  362. }, {
  363. "path": "salary/salary",
  364. "style": {
  365. "navigationBarTextStyle": "black",
  366. "backgroundColor": "#f3f3f3",
  367. "navigationBarTitleText": "工资",
  368. "navigationBarBackgroundColor": "#eeeeee",
  369. "enablePullDownRefresh": false
  370. }
  371. }, {
  372. "path": "salary/salarySlip",
  373. "style": {
  374. "navigationBarTextStyle": "black",
  375. "backgroundColor": "#f3f3f3",
  376. "navigationBarTitleText": "工资条",
  377. "navigationBarBackgroundColor": "#eeeeee",
  378. "enablePullDownRefresh": false
  379. }
  380. }, {
  381. "path": "notice/notice",
  382. "style": {
  383. "navigationBarTextStyle": "black",
  384. "backgroundColor": "#f3f3f3",
  385. "navigationBarTitleText": "详情",
  386. "navigationBarBackgroundColor": "#eeeeee",
  387. "enablePullDownRefresh": false
  388. }
  389. }, {
  390. "path": "msg/abList",
  391. "style": {
  392. "navigationBarTextStyle": "black",
  393. "backgroundColor": "#f3f3f3",
  394. "navigationBarTitleText": "通讯录",
  395. "navigationBarBackgroundColor": "#eeeeee",
  396. "enablePullDownRefresh": false
  397. }
  398. }, {
  399. "path": "msg/visitingCard",
  400. "style": {
  401. "navigationBarTextStyle": "black",
  402. "backgroundColor": "#f3f3f3",
  403. "navigationBarTitleText": "名片",
  404. "navigationBarBackgroundColor": "#eeeeee",
  405. "enablePullDownRefresh": false
  406. }
  407. }, {
  408. "path": "msg/groupAb",
  409. "style": {
  410. "navigationBarTextStyle": "black",
  411. "backgroundColor": "#f3f3f3",
  412. "navigationBarTitleText": "通讯录",
  413. "navigationBarBackgroundColor": "#eeeeee",
  414. "enablePullDownRefresh": false
  415. }
  416. }, {
  417. "path": "msg/userMsgList",
  418. "style": {
  419. "navigationStyle": "custom"
  420. // "navigationBarTextStyle": "black",
  421. // "backgroundColor": "#f3f3f3",
  422. // "navigationBarTitleText": "消息列表",
  423. // "navigationBarBackgroundColor": "#eeeeee",
  424. // "enablePullDownRefresh": false
  425. }
  426. }, {
  427. "path": "card/activetion",
  428. "style": {
  429. "navigationBarTextStyle": "black",
  430. "backgroundColor": "#f3f3f3",
  431. "navigationBarTitleText": "卡片激活",
  432. "navigationBarBackgroundColor": "#eeeeee",
  433. "enablePullDownRefresh": false
  434. }
  435. }, {
  436. "path": "card/index",
  437. "style": {
  438. "navigationBarTextStyle": "black",
  439. "backgroundColor": "#f3f3f3",
  440. "navigationBarTitleText": "会积分",
  441. "navigationBarBackgroundColor": "#eeeeee",
  442. "enablePullDownRefresh": false
  443. }
  444. }, {
  445. "path": "card/addressMgt",
  446. "style": {
  447. "navigationBarTextStyle": "black",
  448. "backgroundColor": "#f3f3f3",
  449. "navigationBarTitleText": "地址管理",
  450. "navigationBarBackgroundColor": "#eeeeee",
  451. "enablePullDownRefresh": false
  452. }
  453. }, {
  454. "path": "card/amassScoreRecord",
  455. "style": {
  456. "navigationBarTextStyle": "black",
  457. "backgroundColor": "#f3f3f3",
  458. "navigationBarTitleText": "积分记录",
  459. "navigationBarBackgroundColor": "#eeeeee",
  460. "enablePullDownRefresh": false
  461. }
  462. }, {
  463. "path": "card/orderProcess",
  464. "style": {
  465. "navigationBarTextStyle": "black",
  466. "backgroundColor": "#f3f3f3",
  467. "navigationBarTitleText": "订单进度",
  468. "navigationBarBackgroundColor": "#eeeeee",
  469. "enablePullDownRefresh": false
  470. }
  471. }, {
  472. "path": "card/addressList",
  473. "style": {
  474. "navigationBarTextStyle": "black",
  475. "backgroundColor": "#f3f3f3",
  476. "navigationBarTitleText": "地址列表",
  477. "navigationBarBackgroundColor": "#eeeeee",
  478. "enablePullDownRefresh": false
  479. }
  480. }, {
  481. "path": "card/grant",
  482. "style": {
  483. "navigationBarTextStyle": "black",
  484. "backgroundColor": "#f3f3f3",
  485. "navigationBarTitleText": "发放登记",
  486. "navigationBarBackgroundColor": "#eeeeee",
  487. "enablePullDownRefresh": false
  488. }
  489. }, {
  490. "path": "card/expense/expenseCalendar",
  491. "style": {
  492. "navigationBarTextStyle": "black",
  493. "backgroundColor": "#f3f3f3",
  494. "navigationBarTitleText": "订单列表",
  495. "navigationBarBackgroundColor": "#eeeeee",
  496. "enablePullDownRefresh": false
  497. }
  498. }, {
  499. "path": "card/expense/details",
  500. "style": {
  501. "navigationBarTextStyle": "black",
  502. "backgroundColor": "#f3f3f3",
  503. "navigationBarTitleText": "订单详情",
  504. "navigationBarBackgroundColor": "#eeeeee",
  505. "enablePullDownRefresh": false
  506. }
  507. }, {
  508. "path": "officefile/index",
  509. "style": {
  510. "navigationBarTitleText": "",
  511. "enablePullDownRefresh": false
  512. }
  513. }, {
  514. "path": "integral/index",
  515. "style": {
  516. "navigationBarTextStyle": "black",
  517. "backgroundColor": "#f3f3f3",
  518. "navigationBarTitleText": "积分兑换",
  519. "navigationBarBackgroundColor": "#eeeeee",
  520. "enablePullDownRefresh": false
  521. }
  522. }, {
  523. "path": "integral/shopcar",
  524. "style": {
  525. "backgroundColorBottom": "#f3f3f3",
  526. "backgroundColorTop": "#f3f3f3",
  527. "navigationBarTextStyle": "black",
  528. "backgroundColor": "#dadada",
  529. "navigationBarTitleText": "购物车",
  530. "navigationBarBackgroundColor": "#eeeeee",
  531. "enablePullDownRefresh": false
  532. }
  533. }, {
  534. "path": "integral/shopcarTemporary",
  535. "style": {
  536. "backgroundColorBottom": "#f3f3f3",
  537. "backgroundColorTop": "#f3f3f3",
  538. "navigationBarTextStyle": "black",
  539. "backgroundColor": "#dadada",
  540. "navigationBarTitleText": "购物车",
  541. "navigationBarBackgroundColor": "#eeeeee",
  542. "enablePullDownRefresh": false
  543. }
  544. }, {
  545. "path": "integral/list",
  546. "style": {
  547. "navigationBarTextStyle": "black",
  548. "backgroundColor": "#f3f3f3",
  549. "navigationBarTitleText": "确认兑换",
  550. "navigationBarBackgroundColor": "#eeeeee",
  551. "enablePullDownRefresh": false
  552. }
  553. }, {
  554. "path": "integral/ok",
  555. "style": {
  556. "navigationBarTextStyle": "black",
  557. "navigationBarBackgroundColor": "#eeeeee",
  558. "backgroundColor": "#f3f3f3",
  559. "app-plus": {
  560. "animationType": "fade-in", // 设置fade-in淡入动画,为最合理的动画类型
  561. "webviewBGTransparent": true,
  562. "mask": "none",
  563. "opacity": 0.9,
  564. "popGesture": "none" // 关闭IOS屏幕左边滑动关闭当前页面的功能
  565. }
  566. }
  567. }, {
  568. "path": "integral/expenseCalendar",
  569. "style": {
  570. "navigationBarTextStyle": "black",
  571. "backgroundColor": "#f3f3f3",
  572. "navigationBarTitleText": "兑换记录",
  573. "navigationBarBackgroundColor": "#eeeeee",
  574. "enablePullDownRefresh": false
  575. }
  576. }, {
  577. "path": "integral/details",
  578. "style": {
  579. "navigationBarTextStyle": "black",
  580. "backgroundColor": "#f3f3f3",
  581. "navigationBarTitleText": "详细",
  582. "navigationBarBackgroundColor": "#eeeeee",
  583. "enablePullDownRefresh": false
  584. }
  585. }, {
  586. "path": "club/index",
  587. "style": {
  588. "navigationBarTextStyle": "black",
  589. "backgroundColor": "#f3f3f3",
  590. "navigationBarTitleText": "活动报名",
  591. "navigationBarBackgroundColor": "#eeeeee",
  592. "enablePullDownRefresh": false
  593. }
  594. }, {
  595. "path": "club/more",
  596. "style": {
  597. "navigationBarTextStyle": "black",
  598. "backgroundColor": "#f3f3f3",
  599. "navigationBarTitleText": "详情",
  600. "navigationBarBackgroundColor": "#eeeeee",
  601. "enablePullDownRefresh": false
  602. }
  603. }, {
  604. "path": "club/appoint",
  605. "style": {
  606. "navigationBarTextStyle": "black",
  607. "backgroundColor": "#f3f3f3",
  608. "navigationBarTitleText": "历史活动记录",
  609. "navigationBarBackgroundColor": "#eeeeee",
  610. "enablePullDownRefresh": false
  611. }
  612. }, {
  613. "path": "club/welfareList",
  614. "style": {
  615. "navigationBarTextStyle": "black",
  616. "backgroundColor": "#f3f3f3",
  617. "navigationBarTitleText": "福利",
  618. "navigationBarBackgroundColor": "#eeeeee",
  619. "enablePullDownRefresh": false
  620. }
  621. }, {
  622. "path": "club/apply",
  623. "style": {
  624. "navigationBarTextStyle": "black",
  625. "backgroundColor": "#f3f3f3",
  626. "navigationBarTitleText": "报名提交",
  627. "navigationBarBackgroundColor": "#eeeeee",
  628. "enablePullDownRefresh": false
  629. }
  630. }, {
  631. "path": "kq/kqList",
  632. "style": {
  633. "navigationBarTextStyle": "black",
  634. "backgroundColor": "#f3f3f3",
  635. "navigationBarTitleText": "考勤记录",
  636. "navigationBarBackgroundColor": "#eeeeee",
  637. "enablePullDownRefresh": false
  638. }
  639. }, {
  640. "path": "club/careAndLove",
  641. "style": {
  642. "navigationBarTextStyle": "black",
  643. "backgroundColor": "#f3f3f3",
  644. "navigationBarTitleText": "关心关爱",
  645. "navigationBarBackgroundColor": "#eeeeee",
  646. "enablePullDownRefresh": false
  647. }
  648. }, {
  649. "path": "club/sicknessBenefit",
  650. "style": {
  651. "navigationBarTextStyle": "black",
  652. "backgroundColor": "#f3f3f3",
  653. "navigationBarTitleText": "补助",
  654. "navigationBarBackgroundColor": "#eeeeee",
  655. "enablePullDownRefresh": false
  656. }
  657. }]
  658. },
  659. {
  660. "root": "pageApp",
  661. "pages": [{
  662. "path": "my/MyApproval",
  663. "style": {
  664. "backgroundColorBottom": "#f3f3f3",
  665. "backgroundColorTop": "#f3f3f3",
  666. "navigationBarTextStyle": "black",
  667. "backgroundColor": "#f3f3f3",
  668. "navigationBarTitleText": "我的审批",
  669. "navigationBarBackgroundColor": "#eeeeee",
  670. "enablePullDownRefresh": false
  671. }
  672. }, {
  673. "path": "ge/geApproval",
  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/geNewsApproval",
  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. {
  697. "path": "ge/geReserveApproval",
  698. "style": {
  699. "backgroundColorBottom": "#f3f3f3",
  700. "backgroundColorTop": "#f3f3f3",
  701. "navigationBarTextStyle": "black",
  702. "backgroundColor": "#f3f3f3",
  703. "navigationBarTitleText": "审批",
  704. "navigationBarBackgroundColor": "#eeeeee",
  705. "enablePullDownRefresh": false
  706. }
  707. },
  708. {
  709. "path": "ge/geEntry",
  710. "style": {
  711. "backgroundColorBottom": "#f3f3f3",
  712. "backgroundColorTop": "#f3f3f3",
  713. "navigationBarTextStyle": "black",
  714. "backgroundColor": "#f3f3f3",
  715. "navigationBarTitleText": "审批",
  716. "navigationBarBackgroundColor": "#eeeeee",
  717. "enablePullDownRefresh": false
  718. }
  719. }, {
  720. "path": "ge/geDimission",
  721. "style": {
  722. "backgroundColorBottom": "#f3f3f3",
  723. "backgroundColorTop": "#f3f3f3",
  724. "navigationBarTextStyle": "black",
  725. "backgroundColor": "#f3f3f3",
  726. "navigationBarTitleText": "审批",
  727. "navigationBarBackgroundColor": "#eeeeee",
  728. "enablePullDownRefresh": false
  729. }
  730. }, {
  731. "path": "ge/geNotice",
  732. "style": {
  733. "backgroundColorBottom": "#f3f3f3",
  734. "backgroundColorTop": "#f3f3f3",
  735. "navigationBarTextStyle": "black",
  736. "backgroundColor": "#f3f3f3",
  737. "navigationBarTitleText": "审批",
  738. "navigationBarBackgroundColor": "#eeeeee",
  739. "enablePullDownRefresh": false
  740. }
  741. }, {
  742. "path": "ge/geUseSeal",
  743. "style": {
  744. "backgroundColorBottom": "#f3f3f3",
  745. "backgroundColorTop": "#f3f3f3",
  746. "navigationBarTextStyle": "black",
  747. "backgroundColor": "#f3f3f3",
  748. "navigationBarTitleText": "审批",
  749. "navigationBarBackgroundColor": "#eeeeee",
  750. "enablePullDownRefresh": false
  751. }
  752. }, {
  753. "path": "ge/geShiftOfficial",
  754. "style": {
  755. "backgroundColorBottom": "#f3f3f3",
  756. "backgroundColorTop": "#f3f3f3",
  757. "navigationBarTextStyle": "black",
  758. "backgroundColor": "#f3f3f3",
  759. "navigationBarTitleText": "审批",
  760. "navigationBarBackgroundColor": "#eeeeee",
  761. "enablePullDownRefresh": false
  762. }
  763. }, {
  764. "path": "ge/geInterview",
  765. "style": {
  766. "backgroundColorBottom": "#f3f3f3",
  767. "backgroundColorTop": "#f3f3f3",
  768. "navigationBarTextStyle": "black",
  769. "backgroundColor": "#f3f3f3",
  770. "navigationBarTitleText": "审批",
  771. "navigationBarBackgroundColor": "#eeeeee",
  772. "enablePullDownRefresh": false
  773. }
  774. }, {
  775. "path": "ge/geDeviceRepairs",
  776. "style": {
  777. "backgroundColorBottom": "#f3f3f3",
  778. "backgroundColorTop": "#f3f3f3",
  779. "navigationBarTextStyle": "black",
  780. "backgroundColor": "#f3f3f3",
  781. "navigationBarTitleText": "审批",
  782. "navigationBarBackgroundColor": "#eeeeee",
  783. "enablePullDownRefresh": false
  784. }
  785. }, {
  786. "path": "ge/geDeviceScrap",
  787. "style": {
  788. "backgroundColorBottom": "#f3f3f3",
  789. "backgroundColorTop": "#f3f3f3",
  790. "navigationBarTextStyle": "black",
  791. "backgroundColor": "#f3f3f3",
  792. "navigationBarTitleText": "审批",
  793. "navigationBarBackgroundColor": "#eeeeee",
  794. "enablePullDownRefresh": false
  795. }
  796. }, {
  797. "path": "ge/gePurchase",
  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. "path": "ge/geContract",
  809. "style": {
  810. "backgroundColorBottom": "#f3f3f3",
  811. "backgroundColorTop": "#f3f3f3",
  812. "navigationBarTextStyle": "black",
  813. "backgroundColor": "#f3f3f3",
  814. "navigationBarTitleText": "审批",
  815. "navigationBarBackgroundColor": "#eeeeee",
  816. "enablePullDownRefresh": false
  817. }
  818. },{
  819. "path": "ge/gePhoneApply",
  820. "style": {
  821. "backgroundColorBottom": "#f3f3f3",
  822. "backgroundColorTop": "#f3f3f3",
  823. "navigationBarTextStyle": "black",
  824. "backgroundColor": "#f3f3f3",
  825. "navigationBarTitleText": "审批",
  826. "navigationBarBackgroundColor": "#eeeeee",
  827. "enablePullDownRefresh": false
  828. }
  829. },{
  830. "path": "ge/geLetterDispose",
  831. "style": {
  832. "backgroundColorBottom": "#f3f3f3",
  833. "backgroundColorTop": "#f3f3f3",
  834. "navigationBarTextStyle": "black",
  835. "backgroundColor": "#f3f3f3",
  836. "navigationBarTitleText": "审批",
  837. "navigationBarBackgroundColor": "#eeeeee",
  838. "enablePullDownRefresh": false
  839. }
  840. },
  841. {
  842. "path": "hr/leave",
  843. "style": {
  844. "backgroundColorBottom": "#f3f3f3",
  845. "backgroundColorTop": "#f3f3f3",
  846. "navigationBarTextStyle": "black",
  847. "backgroundColor": "#f3f3f3",
  848. "navigationBarTitleText": "请假申请",
  849. "navigationBarBackgroundColor": "#eeeeee",
  850. "enablePullDownRefresh": false
  851. }
  852. },
  853. {
  854. "path": "my/myAll",
  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. {
  866. "path": "my/myLaunch",
  867. "style": {
  868. "backgroundColorBottom": "#f3f3f3",
  869. "backgroundColorTop": "#f3f3f3",
  870. "navigationBarTextStyle": "black",
  871. "backgroundColor": "#f3f3f3",
  872. "navigationBarTitleText": "我的发起",
  873. "navigationBarBackgroundColor": "#eeeeee",
  874. "enablePullDownRefresh": false
  875. }
  876. }, {
  877. "path": "my/myCc",
  878. "style": {
  879. "backgroundColorBottom": "#f3f3f3",
  880. "backgroundColorTop": "#f3f3f3",
  881. "navigationBarTextStyle": "black",
  882. "backgroundColor": "#f3f3f3",
  883. "navigationBarTitleText": "抄送",
  884. "navigationBarBackgroundColor": "#eeeeee",
  885. "enablePullDownRefresh": false
  886. }
  887. },
  888. {
  889. "path": "hr/list",
  890. "style": {
  891. "backgroundColorBottom": "#f3f3f3",
  892. "backgroundColorTop": "#f3f3f3",
  893. "navigationBarTextStyle": "black",
  894. "backgroundColor": "#f3f3f3",
  895. "navigationBarTitleText": "请假记录",
  896. "navigationBarBackgroundColor": "#eeeeee",
  897. "enablePullDownRefresh": false
  898. }
  899. }, {
  900. "path": "administration/reserve",
  901. "style": {
  902. "backgroundColorBottom": "#f3f3f3",
  903. "backgroundColorTop": "#f3f3f3",
  904. "navigationBarTextStyle": "black",
  905. "backgroundColor": "#f3f3f3",
  906. "navigationBarTitleText": "物资",
  907. "navigationBarBackgroundColor": "#eeeeee",
  908. "enablePullDownRefresh": false
  909. }
  910. }, {
  911. "path": "administration/conference",
  912. "style": {
  913. "backgroundColorBottom": "#f3f3f3",
  914. "backgroundColorTop": "#f3f3f3",
  915. "navigationBarTextStyle": "black",
  916. "backgroundColor": "#f3f3f3",
  917. "navigationBarTitleText": "会议审批",
  918. "navigationBarBackgroundColor": "#eeeeee",
  919. "enablePullDownRefresh": false
  920. }
  921. }, {
  922. "path": "administration/useSeal",
  923. "style": {
  924. "backgroundColorBottom": "#f3f3f3",
  925. "backgroundColorTop": "#f3f3f3",
  926. "navigationBarTextStyle": "black",
  927. "backgroundColor": "#f3f3f3",
  928. "navigationBarTitleText": "用章申请",
  929. "navigationBarBackgroundColor": "#eeeeee",
  930. "enablePullDownRefresh": false
  931. }
  932. }, {
  933. "path": "administration/useCar",
  934. "style": {
  935. "backgroundColorBottom": "#f3f3f3",
  936. "backgroundColorTop": "#f3f3f3",
  937. "navigationBarTextStyle": "black",
  938. "backgroundColor": "#f3f3f3",
  939. "navigationBarTitleText": "用车申请",
  940. "navigationBarBackgroundColor": "#eeeeee",
  941. "enablePullDownRefresh": false
  942. }
  943. }, {
  944. "path": "administration/inform",
  945. "style": {
  946. "backgroundColorBottom": "#f3f3f3",
  947. "backgroundColorTop": "#f3f3f3",
  948. "navigationBarTextStyle": "black",
  949. "backgroundColor": "#f3f3f3",
  950. "navigationBarTitleText": "发起通知",
  951. "navigationBarBackgroundColor": "#eeeeee",
  952. "enablePullDownRefresh": false
  953. }
  954. }, {
  955. "path": "administration/phoneApply",
  956. "style": {
  957. "backgroundColorBottom": "#f3f3f3",
  958. "backgroundColorTop": "#f3f3f3",
  959. "navigationBarTextStyle": "black",
  960. "backgroundColor": "#f3f3f3",
  961. "navigationBarTitleText": "手机号申请",
  962. "navigationBarBackgroundColor": "#eeeeee",
  963. "enablePullDownRefresh": false
  964. }
  965. }, {
  966. "path": "administration/xfj",
  967. "style": {
  968. "backgroundColorBottom": "#f3f3f3",
  969. "backgroundColorTop": "#f3f3f3",
  970. "navigationBarTextStyle": "black",
  971. "backgroundColor": "#f3f3f3",
  972. "navigationBarTitleText": "信访件",
  973. "navigationBarBackgroundColor": "#eeeeee",
  974. "enablePullDownRefresh": false
  975. }
  976. }, {
  977. "path": "hr/performance",
  978. "style": {
  979. "backgroundColorBottom": "#f3f3f3",
  980. "backgroundColorTop": "#f3f3f3",
  981. "navigationBarTextStyle": "black",
  982. "backgroundColor": "#f3f3f3",
  983. "navigationBarTitleText": "绩效考评",
  984. "navigationBarBackgroundColor": "#eeeeee",
  985. "enablePullDownRefresh": false
  986. }
  987. }, {
  988. "path": "hr/entry",
  989. "style": {
  990. "backgroundColorBottom": "#f3f3f3",
  991. "backgroundColorTop": "#f3f3f3",
  992. "navigationBarTextStyle": "black",
  993. "backgroundColor": "#f3f3f3",
  994. "navigationBarTitleText": "入职申请",
  995. "navigationBarBackgroundColor": "#eeeeee",
  996. "enablePullDownRefresh": false
  997. }
  998. }, {
  999. "path": "hr/interview",
  1000. "style": {
  1001. "backgroundColorBottom": "#f3f3f3",
  1002. "backgroundColorTop": "#f3f3f3",
  1003. "navigationBarTextStyle": "black",
  1004. "backgroundColor": "#f3f3f3",
  1005. "navigationBarTitleText": "面试记录",
  1006. "navigationBarBackgroundColor": "#eeeeee",
  1007. "enablePullDownRefresh": false
  1008. }
  1009. }, {
  1010. "path": "hr/hire",
  1011. "style": {
  1012. "backgroundColorBottom": "#f3f3f3",
  1013. "backgroundColorTop": "#f3f3f3",
  1014. "navigationBarTextStyle": "black",
  1015. "backgroundColor": "#f3f3f3",
  1016. "navigationBarTitleText": "录用申请",
  1017. "navigationBarBackgroundColor": "#eeeeee",
  1018. "enablePullDownRefresh": false
  1019. }
  1020. }, {
  1021. "path": "hr/shiftOfficial",
  1022. "style": {
  1023. "backgroundColorBottom": "#f3f3f3",
  1024. "backgroundColorTop": "#f3f3f3",
  1025. "navigationBarTextStyle": "black",
  1026. "backgroundColor": "#f3f3f3",
  1027. "navigationBarTitleText": "转正申请",
  1028. "navigationBarBackgroundColor": "#eeeeee",
  1029. "enablePullDownRefresh": false
  1030. }
  1031. }, {
  1032. "path": "hr/dimission",
  1033. "style": {
  1034. "backgroundColorBottom": "#f3f3f3",
  1035. "backgroundColorTop": "#f3f3f3",
  1036. "navigationBarTextStyle": "black",
  1037. "backgroundColor": "#f3f3f3",
  1038. "navigationBarTitleText": "离职申请",
  1039. "navigationBarBackgroundColor": "#eeeeee",
  1040. "enablePullDownRefresh": false
  1041. }
  1042. }, {
  1043. "path": "other/contract",
  1044. "style": {
  1045. "backgroundColorBottom": "#f3f3f3",
  1046. "backgroundColorTop": "#f3f3f3",
  1047. "navigationBarTextStyle": "black",
  1048. "backgroundColor": "#f3f3f3",
  1049. "navigationBarTitleText": "合同管理",
  1050. "navigationBarBackgroundColor": "#eeeeee",
  1051. "enablePullDownRefresh": false
  1052. }
  1053. }, {
  1054. "path": "other/purchase",
  1055. "style": {
  1056. "backgroundColorBottom": "#f3f3f3",
  1057. "backgroundColorTop": "#f3f3f3",
  1058. "navigationBarTextStyle": "black",
  1059. "backgroundColor": "#f3f3f3",
  1060. "navigationBarTitleText": "采购申请",
  1061. "navigationBarBackgroundColor": "#eeeeee",
  1062. "enablePullDownRefresh": false
  1063. }
  1064. }, {
  1065. "path": "other/file",
  1066. "style": {
  1067. "backgroundColorBottom": "#f3f3f3",
  1068. "backgroundColorTop": "#f3f3f3",
  1069. "navigationBarTextStyle": "black",
  1070. "backgroundColor": "#f3f3f3",
  1071. "navigationBarTitleText": "文件审批",
  1072. "navigationBarBackgroundColor": "#eeeeee",
  1073. "enablePullDownRefresh": false
  1074. }
  1075. }, {
  1076. "path": "other/repairs",
  1077. "style": {
  1078. "backgroundColorBottom": "#f3f3f3",
  1079. "backgroundColorTop": "#f3f3f3",
  1080. "navigationBarTextStyle": "black",
  1081. "backgroundColor": "#f3f3f3",
  1082. "navigationBarTitleText": "报修申请",
  1083. "navigationBarBackgroundColor": "#eeeeee",
  1084. "enablePullDownRefresh": false
  1085. }
  1086. }, {
  1087. "path": "other/scrap",
  1088. "style": {
  1089. "backgroundColorBottom": "#f3f3f3",
  1090. "backgroundColorTop": "#f3f3f3",
  1091. "navigationBarTextStyle": "black",
  1092. "backgroundColor": "#f3f3f3",
  1093. "navigationBarTitleText": "报废申请",
  1094. "navigationBarBackgroundColor": "#eeeeee",
  1095. "enablePullDownRefresh": false
  1096. }
  1097. }, {
  1098. "path": "finance/costReimburse",
  1099. "style": {
  1100. "backgroundColorBottom": "#f3f3f3",
  1101. "backgroundColorTop": "#f3f3f3",
  1102. "navigationBarTextStyle": "black",
  1103. "backgroundColor": "#f3f3f3",
  1104. "navigationBarTitleText": "费用报销",
  1105. "navigationBarBackgroundColor": "#eeeeee",
  1106. "enablePullDownRefresh": false
  1107. }
  1108. }
  1109. ]
  1110. }
  1111. ],
  1112. "preloadRule": {
  1113. "pageA/login/login": {
  1114. "network": "all",
  1115. "packages": ["__APP__"]
  1116. },
  1117. "pageA/msg/userMsgList": {
  1118. "network": "all",
  1119. "packages": ["__APP__"]
  1120. }
  1121. },
  1122. "globalStyle": {
  1123. "app-plus": {}
  1124. },
  1125. "condition": { //模式配置,仅开发期间生效
  1126. "current": 0, //当前激活的模式(list 的索引项)
  1127. "list": [{
  1128. "name": "default", //模式名称
  1129. "path": "pages/tabbar/wpTabbar", //启动页面,必选
  1130. "query": "" //启动参数,在页面的onLoad函数里面得到
  1131. }]
  1132. }
  1133. }