pages.json 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/home/home",
  8. "style": {
  9. "navigationBarTitleText": "首页",
  10. "enablePullDownRefresh": true
  11. }
  12. },
  13. {
  14. "path": "pages/tidings/tidings",
  15. "style": {
  16. "navigationBarTitleText": "消息",
  17. "enablePullDownRefresh": true
  18. }
  19. },
  20. {
  21. "path": "pages/middle/middle",
  22. "style": {
  23. "navigationBarTitleText": "报修填报",
  24. "enablePullDownRefresh": false
  25. }
  26. },
  27. {
  28. "path": "pages/operate/operate",
  29. "style": {
  30. "navigationBarTitleText": "功能",
  31. "enablePullDownRefresh": false
  32. }
  33. },
  34. {
  35. "path": "pages/work-order/work-order",
  36. "style": {
  37. "navigationBarTitleText": "工单",
  38. "enablePullDownRefresh": true
  39. }
  40. },
  41. {
  42. "path": "pages/my/my",
  43. "style": {
  44. "navigationBarTitleText": "我的",
  45. "enablePullDownRefresh": false,
  46. "backgroundColor": "#0082FF",
  47. "app-plus": {
  48. "bounce": "false",
  49. "scrollIndicator": "false"
  50. }
  51. }
  52. },
  53. {
  54. "path": "pages/login/login",
  55. "style": {
  56. "navigationBarTitleText": "登录",
  57. "enablePullDownRefresh": false,
  58. "app-plus": {}
  59. }
  60. },
  61. {
  62. "path": "pages/setting/forget-password",
  63. "style": {
  64. "navigationBarTitleText": "修改密码",
  65. "enablePullDownRefresh": false
  66. }
  67. },
  68. {
  69. "path": "pages/setting/wechat-oauth",
  70. "style": {
  71. "navigationBarTitleText": "授权成功",
  72. "enablePullDownRefresh": false
  73. }
  74. },
  75. {
  76. "path": "pages/setting/update-setting",
  77. "style": {
  78. "navigationBarTitleText": "用户信息",
  79. "enablePullDownRefresh": false
  80. }
  81. },
  82. {
  83. "path": "pages/setting/setting",
  84. "style": {
  85. "navigationBarTitleText": "设置"
  86. }
  87. },
  88. {
  89. "path": "pages/about/about",
  90. "style": {
  91. "navigationBarTitleText": "关于我们",
  92. "navigationBarBackgroundColor": "#0082FF",
  93. "navigationBarTextStyle": "white"
  94. }
  95. },
  96. {
  97. "path": "pages/equipment/equipment",
  98. "style": {
  99. "navigationBarTitleText": "设备列表",
  100. "enablePullDownRefresh": true,
  101. "app-plus": {
  102. "bounce": false,
  103. "scrollIndicator": "none"
  104. }
  105. }
  106. },
  107. {
  108. "path": "pages/tidings-detail/tidings-detail",
  109. "style": {
  110. "navigationBarTitleText": "详情"
  111. }
  112. },
  113. {
  114. "path": "pages/equipment-detail/equipment-detail",
  115. "style": {
  116. "navigationBarTitleText": "设备详情"
  117. }
  118. },
  119. {
  120. "path": "pages/equipment-detail/equipment-status",
  121. "style": {
  122. "navigationBarTitleText": "设备状态变更"
  123. }
  124. },
  125. {
  126. "path": "pages/running/running",
  127. "style": {
  128. "navigationBarTitleText": "运行记录列表",
  129. "enablePullDownRefresh": true
  130. }
  131. },
  132. {
  133. "path": "pages/running/running-detail",
  134. "style": {
  135. "navigationBarTitleText": "运行记录详情"
  136. }
  137. },
  138. {
  139. "path": "pages/running/running-edit",
  140. "style": {
  141. "navigationBarTitleText": "运行记录填报",
  142. "navigationBarBackgroundColor": "#0082FF",
  143. "navigationBarTextStyle": "white"
  144. }
  145. },
  146. {
  147. "path": "pages/lubrication/lubrication",
  148. "style": {
  149. "navigationBarTitleText": "润滑任务列表",
  150. "enablePullDownRefresh": true
  151. }
  152. },
  153. {
  154. "path": "pages/lubrication-detail/lubrication-detail",
  155. "style": {
  156. "navigationBarTitleText": "润滑任务详情",
  157. "navigationBarBackgroundColor": "#0082FF",
  158. "navigationBarTextStyle": "white"
  159. }
  160. },
  161. {
  162. "path": "pages/check/check",
  163. "style": {
  164. "navigationBarTitleText": "点检任务列表",
  165. "enablePullDownRefresh": true
  166. }
  167. },
  168. {
  169. "path": "pages/check-detail/check-detail",
  170. "style": {
  171. "navigationBarTitleText": "点检任务详情"
  172. }
  173. },
  174. {
  175. "path": "pages/check-add/check-add",
  176. "style": {
  177. "navigationBarTitleText": "点检任务填报",
  178. "enablePullDownRefresh": false,
  179. "navigationBarBackgroundColor": "#0082FF",
  180. "navigationBarTextStyle": "white"
  181. }
  182. },
  183. {
  184. "path": "pages/check-add/check-add-test",
  185. "style": {
  186. "navigationBarTitleText": "点检任务新增",
  187. "enablePullDownRefresh": false,
  188. "navigationBarBackgroundColor": "#0082FF",
  189. "navigationBarTextStyle": "white"
  190. }
  191. },
  192. {
  193. "path": "pages/maintain/main",
  194. "style": {
  195. "navigationBarTitleText": "保养",
  196. "enablePullDownRefresh": true
  197. }
  198. },
  199. {
  200. "path": "pages/maintain/mainPosition",
  201. "style": {
  202. "navigationBarTitleText": "保养",
  203. "enablePullDownRefresh": true
  204. }
  205. },
  206. {
  207. "path": "pages/maintain/maintain",
  208. "style": {
  209. "navigationBarTitleText": "保养任务列表",
  210. "enablePullDownRefresh": true
  211. }
  212. },
  213. {
  214. "path": "pages/maintain/finish",
  215. "style": {
  216. "navigationBarTitleText": "保养任务完成",
  217. "enablePullDownRefresh": true
  218. }
  219. },
  220. {
  221. "path": "pages/maintain/maintain-ignore",
  222. "style": {
  223. "navigationBarTitleText": "现场保养任务列表",
  224. "enablePullDownRefresh": true
  225. }
  226. },
  227. {
  228. "path": "pages/maintain-detail/maintain-detail",
  229. "style": {
  230. "navigationBarTitleText": "保养任务详情"
  231. }
  232. },
  233. {
  234. "path": "pages/maintain-add/maintain-add",
  235. "style": {
  236. "navigationBarTitleText": "保养任务填报",
  237. "enablePullDownRefresh": false,
  238. "navigationBarBackgroundColor": "#0082FF",
  239. "navigationBarTextStyle": "white"
  240. }
  241. },
  242. {
  243. "path": "pages/maintain-add/maintain-add-ignore",
  244. "style": {
  245. "navigationBarTitleText": "现场保养任务填报",
  246. "enablePullDownRefresh": false,
  247. "navigationBarBackgroundColor": "#0082FF",
  248. "navigationBarTextStyle": "white"
  249. }
  250. },
  251. {
  252. "path": "pages/oiling/oiling",
  253. "style": {
  254. "navigationBarTitleText": "加油任务列表",
  255. "enablePullDownRefresh": true
  256. }
  257. },
  258. {
  259. "path": "pages/oiling-detail/oiling-detail",
  260. "style": {
  261. "navigationBarTitleText": "加油任务详情",
  262. "navigationBarBackgroundColor": "#0082FF",
  263. "navigationBarTextStyle": "white"
  264. }
  265. },
  266. {
  267. "path": "pages/service/service",
  268. "style": {
  269. "navigationBarTitleText": "维修任务列表",
  270. "enablePullDownRefresh": true
  271. }
  272. },
  273. {
  274. "path": "pages/service-detail/service-detail",
  275. "style": {
  276. "navigationBarTitleText": "维修任务详情",
  277. "navigationBarBackgroundColor": "#0082FF",
  278. "navigationBarTextStyle": "white"
  279. }
  280. },
  281. {
  282. "path": "pages/oiling/my-oiling",
  283. "style": {
  284. "navigationBarTitleText": "我的加油列表",
  285. "enablePullDownRefresh": true
  286. }
  287. },
  288. {
  289. "path": "pages/oiling/my-oiling-detail",
  290. "style": {
  291. "navigationBarTitleText": "我的加油详情",
  292. "navigationBarBackgroundColor": "#0082FF",
  293. "navigationBarTextStyle": "white"
  294. }
  295. },
  296. {
  297. "path": "pages/inspection/inspection",
  298. "style": {
  299. "navigationBarTitleText": "巡检列表",
  300. "enablePullDownRefresh": true
  301. }
  302. },
  303. {
  304. "path": "pages/inspection/inspection-detail",
  305. "style": {
  306. "navigationBarTitleText": "巡检详情",
  307. "enablePullDownRefresh": false
  308. }
  309. },
  310. {
  311. "path": "pages/spare/spare-detail",
  312. "style": {
  313. "navigationBarTitleText": "备件详情"
  314. }
  315. },
  316. {
  317. "path": "pages/spare/spare-img",
  318. "style": {
  319. "navigationBarTitleText": "备件图片",
  320. "enablePullDownRefresh": false
  321. }
  322. },
  323. {
  324. "path": "pages/spare/spare-store",
  325. "style": {
  326. "navigationBarTitleText": "备件库存",
  327. "enablePullDownRefresh": false
  328. }
  329. },
  330. {
  331. "path": "pages/spare/spare-store-add",
  332. "style": {
  333. "navigationBarTitleText": "备件新增库存",
  334. "enablePullDownRefresh": false
  335. }
  336. },
  337. {
  338. "path": "pages/spare/spare-store-out",
  339. "style": {
  340. "navigationBarTitleText": "备件出库",
  341. "enablePullDownRefresh": false
  342. }
  343. },
  344. {
  345. "path": "pages/spare/spare-store-in",
  346. "style": {
  347. "navigationBarTitleText": "备件入库",
  348. "enablePullDownRefresh": false
  349. }
  350. },
  351. {
  352. "path": "pages/spare/spare-store-transfer",
  353. "style": {
  354. "navigationBarTitleText": "备件调拨",
  355. "enablePullDownRefresh": false
  356. }
  357. },
  358. {
  359. "path": "pages/repair/repair",
  360. "style": {
  361. "navigationBarTitleText": "报修列表",
  362. "enablePullDownRefresh": true
  363. }
  364. },
  365. {
  366. "path": "pages/repair-detail/repair-detail",
  367. "style": {
  368. "navigationBarTitleText": "报修详情",
  369. "enablePullDownRefresh": false
  370. }
  371. },
  372. {
  373. "path": "pages/repair-detail/reject",
  374. "style": {
  375. "navigationBarTitleText": "拒单填报",
  376. "enablePullDownRefresh": false
  377. }
  378. },
  379. {
  380. "path": "pages/repair-detail/transfer",
  381. "style": {
  382. "navigationBarTitleText": "转派填报",
  383. "enablePullDownRefresh": false
  384. }
  385. },
  386. {
  387. "path": "pages/repair-check/repair-check",
  388. "style": {
  389. "navigationBarTitleText": "报修审核列表",
  390. "enablePullDownRefresh": true
  391. }
  392. },
  393. {
  394. "path": "pages/repair-check/repair-detail",
  395. "style": {
  396. "navigationBarTitleText": "报修审核详情",
  397. "enablePullDownRefresh": true
  398. }
  399. },
  400. {
  401. "path": "pages/edit-name/edit-name",
  402. "style": {
  403. "navigationBarTitleText": "",
  404. "enablePullDownRefresh": false
  405. }
  406. },
  407. {
  408. "path": "pages/inspection/inspection-edit",
  409. "style": {
  410. "navigationBarTitleText": "巡检填报",
  411. "enablePullDownRefresh": false,
  412. "navigationBarBackgroundColor": "#0082FF",
  413. "navigationBarTextStyle": "white"
  414. }
  415. },
  416. {
  417. "path": "pages/running-update/running-update",
  418. "style": {
  419. "navigationBarTitleText": "运行记录修改",
  420. "enablePullDownRefresh": false,
  421. "navigationBarBackgroundColor": "#0082FF",
  422. "navigationBarTextStyle": "white"
  423. }
  424. },
  425. {
  426. "path": "pages/running/running-batch-edit",
  427. "style": {
  428. "navigationBarTitleText": "批量修改",
  429. "enablePullDownRefresh": false,
  430. "navigationBarBackgroundColor": "#0082FF",
  431. "navigationBarTextStyle": "white"
  432. }
  433. },
  434. {
  435. "path": "pages/equipment-model/equipment-model",
  436. "style": {
  437. "navigationBarTitleText": "设备型号信息",
  438. "enablePullDownRefresh": false
  439. }
  440. },
  441. {
  442. "path": "pages/equipment-use/equipment-use",
  443. "style": {
  444. "navigationBarTitleText": "设备使用信息",
  445. "enablePullDownRefresh": false
  446. }
  447. },
  448. {
  449. "path": "pages/equipment-insure/equipment-insure",
  450. "style": {
  451. "navigationBarTitleText": "保险信息",
  452. "enablePullDownRefresh": false
  453. }
  454. },
  455. {
  456. "path": "pages/equipment-date/equipment-date",
  457. "style": {
  458. "navigationBarTitleText": "日期信息",
  459. "enablePullDownRefresh": false
  460. }
  461. },
  462. {
  463. "path": "pages/equipment-file/equipment-img",
  464. "style": {
  465. "navigationBarTitleText": "图片信息",
  466. "enablePullDownRefresh": false
  467. }
  468. },
  469. {
  470. "path": "pages/equipment-file/equipment-file",
  471. "style": {
  472. "navigationBarTitleText": "文件信息",
  473. "enablePullDownRefresh": false
  474. }
  475. },
  476. {
  477. "path": "pages/oiling/my-oiling-add",
  478. "style": {
  479. "navigationBarTitleText": "申请加油",
  480. "enablePullDownRefresh": false,
  481. "navigationBarBackgroundColor": "#0082FF",
  482. "navigationBarTextStyle": "white"
  483. }
  484. },
  485. {
  486. "path": "pages/oiling/batch-oiling-select",
  487. "style": {
  488. "navigationBarTitleText": "批量修改选择",
  489. "enablePullDownRefresh": false,
  490. "navigationBarBackgroundColor": "#0082FF",
  491. "navigationBarTextStyle": "white"
  492. }
  493. },
  494. {
  495. "path": "pages/oiling/batch-oiling-update",
  496. "style": {
  497. "navigationBarTitleText": "批量修改",
  498. "enablePullDownRefresh": false,
  499. "navigationBarBackgroundColor": "#0082FF",
  500. "navigationBarTextStyle": "white"
  501. }
  502. },
  503. {
  504. "path": "pages/repair-add/repair-add",
  505. "style": {
  506. "navigationBarTitleText": "报修填报",
  507. "enablePullDownRefresh": false,
  508. "navigationBarBackgroundColor": "#0082FF",
  509. "navigationBarTextStyle": "white",
  510. "app-plus": {
  511. "softinputMode": "adjustResize"
  512. }
  513. }
  514. },
  515. {
  516. "path": "pages/lubrication-add/lubrication-add",
  517. "style": {
  518. "navigationBarTitleText": "润滑任务填报",
  519. "enablePullDownRefresh": false,
  520. "navigationBarBackgroundColor": "#0082FF",
  521. "navigationBarTextStyle": "white"
  522. }
  523. },
  524. {
  525. "path": "pages/oiling/oiling-task",
  526. "style": {
  527. "navigationBarTitleText": "加油任务填报",
  528. "enablePullDownRefresh": false,
  529. "navigationBarBackgroundColor": "#0082FF",
  530. "navigationBarTextStyle": "white"
  531. }
  532. },
  533. {
  534. "path": "pages/service-add/service-add",
  535. "style": {
  536. "navigationBarTitleText": "维修填写",
  537. "enablePullDownRefresh": false,
  538. "navigationBarBackgroundColor": "#0082FF",
  539. "navigationBarTextStyle": "white"
  540. }
  541. },
  542. {
  543. "path": "pages/repair-reason/repair-reason-form",
  544. "style": {
  545. "navigationBarTitleText": "维修报告",
  546. "enablePullDownRefresh": false,
  547. "navigationBarBackgroundColor": "#0082FF",
  548. "navigationBarTextStyle": "white"
  549. }
  550. },
  551. {
  552. "path": "pages/repair-reason/repair-reason-select",
  553. "style": {
  554. "navigationBarTitleText": "选择部件",
  555. "enablePullDownRefresh": false,
  556. "navigationBarBackgroundColor": "#0082FF",
  557. "navigationBarTextStyle": "white"
  558. }
  559. },
  560. {
  561. "path": "pages/receive/receive-add",
  562. "style": {
  563. "navigationBarTitleText": "领用申请",
  564. "enablePullDownRefresh": false,
  565. "navigationBarBackgroundColor": "#0082FF",
  566. "navigationBarTextStyle": "white"
  567. }
  568. },
  569. {
  570. "path": "pages/receive/receive-add-new",
  571. "style": {
  572. "navigationBarTitleText": "领用申请",
  573. "enablePullDownRefresh": false,
  574. "navigationBarBackgroundColor": "#0082FF",
  575. "navigationBarTextStyle": "white"
  576. }
  577. },
  578. {
  579. "path": "pages/use-repair/use-repair",
  580. "style": {
  581. "navigationBarTitleText": "领用申请",
  582. "enablePullDownRefresh": false,
  583. "navigationBarBackgroundColor": "#0082FF",
  584. "navigationBarTextStyle": "white"
  585. }
  586. },
  587. {
  588. "path": "pages/receive/receive",
  589. "style": {
  590. "navigationBarTitleText": "备品领用",
  591. "enablePullDownRefresh": true
  592. }
  593. },
  594. {
  595. "path": "pages/receive/receive-detail",
  596. "style": {
  597. "navigationBarTitleText": "领用详情",
  598. "enablePullDownRefresh": false
  599. }
  600. },
  601. {
  602. "path": "pages/deliver-add/deliver-add",
  603. "style": {
  604. "navigationBarTitleText": "转交信息",
  605. "enablePullDownRefresh": false
  606. }
  607. },
  608. {
  609. "path": "pages/repair/repair-edit",
  610. "style": {
  611. "navigationBarTitleText": "报修验收",
  612. "enablePullDownRefresh": false
  613. }
  614. },
  615. {
  616. "path": "pages/repair/repair-return",
  617. "style": {
  618. "navigationBarTitleText": "驳回",
  619. "enablePullDownRefresh": false
  620. }
  621. },
  622. {
  623. "path": "pages/search/search",
  624. "style": {
  625. "navigationBarTitleText": "搜索",
  626. "enablePullDownRefresh": true
  627. }
  628. },
  629. {
  630. "path": "pages/search/search-store",
  631. "style": {
  632. "navigationBarTitleText": "搜索仓库",
  633. "enablePullDownRefresh": true
  634. }
  635. },
  636. {
  637. "path": "pages/search/spare-search",
  638. "style": {
  639. "navigationBarTitleText": "备件搜索"
  640. }
  641. },
  642. {
  643. "path": "pages/search/spare-search-goods",
  644. "style": {
  645. "navigationBarTitleText": "备件信息搜索",
  646. "navigationStyle": "custom"
  647. }
  648. },
  649. {
  650. "path": "pages/search/spare-search-goods-from-store",
  651. "style": {
  652. "navigationBarTitleText": "仓库备件搜索",
  653. "navigationStyle": "custom"
  654. }
  655. },
  656. {
  657. "path": "pages/out-store/list",
  658. "style": {
  659. "navigationBarTitleText": "出库单",
  660. "enablePullDownRefresh": true
  661. }
  662. },
  663. {
  664. "path": "pages/out-store/out-store-detail",
  665. "style": {
  666. "navigationBarTitleText": "出库单详情",
  667. "enablePullDownRefresh": false
  668. }
  669. },
  670. {
  671. "path": "pages/out-store/out-store-add",
  672. "style": {
  673. "navigationBarTitleText": "出库单新增",
  674. "enablePullDownRefresh": false
  675. }
  676. },
  677. {
  678. "path": "pages/out-store/out-store-add-new",
  679. "style": {
  680. "navigationBarTitleText": "出库单新增",
  681. "enablePullDownRefresh": false
  682. }
  683. },
  684. {
  685. "path": "pages/out-store/out-store-add-scan",
  686. "style": {
  687. "navigationBarTitleText": "扫码出库",
  688. "enablePullDownRefresh": false
  689. }
  690. },
  691. {
  692. "path": "pages/in-store/list",
  693. "style": {
  694. "navigationBarTitleText": "入库单",
  695. "enablePullDownRefresh": true
  696. }
  697. },
  698. {
  699. "path": "pages/in-store/in-store-detail",
  700. "style": {
  701. "navigationBarTitleText": "入库单详情",
  702. "enablePullDownRefresh": false
  703. }
  704. },
  705. {
  706. "path": "pages/in-store/in-store-add",
  707. "style": {
  708. "navigationBarTitleText": "入库单新增",
  709. "enablePullDownRefresh": false
  710. }
  711. },
  712. {
  713. "path": "pages/in-store/in-store-add-new",
  714. "style": {
  715. "navigationBarTitleText": "入库单新增",
  716. "enablePullDownRefresh": false
  717. }
  718. },
  719. {
  720. "path": "pages/store-check/list",
  721. "style": {
  722. "navigationBarTitleText": "盘点任务",
  723. "enablePullDownRefresh": true
  724. }
  725. },
  726. {
  727. "path": "pages/store-check/store-check-detail",
  728. "style": {
  729. "navigationBarTitleText": "盘点任务详情",
  730. "enablePullDownRefresh": false
  731. }
  732. },
  733. {
  734. "path": "pages/store-check/store-check-add",
  735. "style": {
  736. "navigationBarTitleText": "盘点任务执行",
  737. "enablePullDownRefresh": false
  738. }
  739. },
  740. {
  741. "path": "pages/in-store/in-store-add-scan",
  742. "style": {
  743. "navigationBarTitleText": "扫码入库",
  744. "enablePullDownRefresh": false
  745. }
  746. },
  747. {
  748. "path": "pages/out-store/out-store",
  749. "style": {
  750. "navigationBarTitleText": "扫码出库"
  751. }
  752. },
  753. {
  754. "path": "pages/running/running-batch-select",
  755. "style": {
  756. "navigationBarTitleText": "选择运行记录",
  757. "enablePullDownRefresh": false
  758. }
  759. }
  760. ],
  761. "tabBar": {
  762. "selectedColor": "#0082FF",
  763. "list": [
  764. {
  765. "iconPath": "static/tabars/home.png",
  766. "pagePath": "pages/home/home",
  767. "selectedIconPath": "static/tabars/home_s.png",
  768. "text": "首页"
  769. },
  770. {
  771. "iconPath": "static/tabars/order.png",
  772. "pagePath": "pages/operate/operate",
  773. "selectedIconPath": "static/tabars/order_s.png",
  774. "text": "功能"
  775. },
  776. {
  777. "iconPath": "static/tabars/publish.png",
  778. "pagePath": "pages/middle/middle",
  779. "selectedIconPath": "static/tabars/publish.png",
  780. "text": "报修"
  781. },
  782. {
  783. "iconPath": "static/tabars/tiding.png",
  784. "pagePath": "pages/tidings/tidings",
  785. "selectedIconPath": "static/tabars/tiding_s.png",
  786. "text": "消息"
  787. },
  788. {
  789. "iconPath": "static/tabars/mine.png",
  790. "pagePath": "pages/my/my",
  791. "selectedIconPath": "static/tabars/mine_s.png",
  792. "text": "我的"
  793. }
  794. ]
  795. },
  796. "globalStyle": {
  797. "navigationBarTextStyle": "white",
  798. "navigationBarTitleText": "uni-app",
  799. "navigationBarBackgroundColor": "#0082FF",
  800. "backgroundColor": "#F8F8F8"
  801. },
  802. "condition": { //模式配置,仅开发期间生效
  803. "current": 0, //当前激活的模式(list 的索引项)
  804. "list": [
  805. {
  806. "name": "my-oiling-add", //模式名称
  807. "path": "pages/in-store/in-store-add-new", //启动页面,必选
  808. "query": "" //启动参数,在页面的onLoad函数里面得到
  809. }
  810. ]
  811. }
  812. }