pages.json 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960
  1. {
  2. "insetLoader": {
  3. //配置
  4. "config": {
  5. //将需要引入的组件名起了个confirm的名字在下面label中使用
  6. //右侧"<floatButton ref='confirm' />"为需要插入的组件标签
  7. "confirm": "<floatButton ref='confirm' />"
  8. },
  9. // 全局配置
  10. //需要挂在的组件名
  11. "label": ["confirm"],
  12. //根元素的标签类型 也就是插入到页面哪个根元素下默认为div 但是uniapp中需要写为view
  13. "rootEle": "view"
  14. },
  15. "pages": [{
  16. "path": "pages/index/index",
  17. "style": {
  18. "navigationBarTitleText": "首页"
  19. // "enablePullDownRefresh": true
  20. }
  21. },
  22. {
  23. "path": "pages/bind",
  24. "style": {
  25. "navigationBarTitleText": "授权绑定"
  26. }
  27. },
  28. {
  29. "path": "pages/index/webview",
  30. "style": {
  31. "navigationBarTitleText": "打开企业微信小程序"
  32. }
  33. },
  34. {
  35. "path": "pages/login/index",
  36. "style": {
  37. "navigationBarTitleText": "登录"
  38. }
  39. },
  40. {
  41. "path": "pages/login/indexs",
  42. "style": {
  43. "navigationBarTitleText": "登录"
  44. }
  45. },
  46. {
  47. "path": "pages/goods/index",
  48. "style": {
  49. "navigationBarTitleText": "商城"
  50. }
  51. },
  52. {
  53. "path": "pages/mine/index",
  54. "style": {
  55. "navigationStyle": "custom",
  56. "navigationBarTitleText": "我的"
  57. }
  58. },
  59. {
  60. "path": "pages/workorder/index",
  61. "style": {
  62. "navigationBarTitleText": "工单"
  63. }
  64. },
  65. {
  66. "path": "pages/workorder/indexView",
  67. "style": {
  68. "navigationBarTitleText": "工单"
  69. }
  70. }
  71. ],
  72. "subpackages": [
  73. {
  74. "root": "packageHome",
  75. "name": "packageHome",
  76. "pages": [
  77. {
  78. "path": "pages/service/chargeStandard",
  79. "style": {
  80. "navigationBarTitleText": "收费标准"
  81. }
  82. },
  83. {
  84. "path": "pages/service/troubleshoot",
  85. "style": {
  86. "navigationBarTitleText": "故障自查"
  87. }
  88. },
  89. {
  90. "path": "pages/service/classify",
  91. "style": {
  92. "navigationBarTitleText": "选择服务产品"
  93. }
  94. },
  95. {
  96. "path": "pages/service/tenancy",
  97. "style": {
  98. "navigationBarTitleText": "选择产品"
  99. }
  100. },
  101. {
  102. "path": "pages/service/tenancyDetail",
  103. "style": {
  104. "navigationBarTitleText": "商品详情"
  105. }
  106. },
  107. {
  108. "path": "pages/service/confirmTenancyOrder",
  109. "style": {
  110. "navigationBarTitleText": "确认订单"
  111. }
  112. },
  113. {
  114. "path": "pages/addvalue/serviceBuy",
  115. "style": {
  116. "navigationBarTitleText": "购买延保"
  117. }
  118. },
  119. {
  120. "path": "pages/addvalue/serviceUse",
  121. "style": {
  122. "navigationBarTitleText": "创建延保单"
  123. }
  124. },
  125. {
  126. "path": "pages/addvalue/explainList",
  127. "style": {
  128. "navigationBarTitleText": "延保服务"
  129. }
  130. },
  131. {
  132. "path": "pages/addvalue/explainDetail",
  133. "style": {
  134. "navigationBarTitleText": "服务说明"
  135. }
  136. },
  137. {
  138. "path": "pages/addvalue/orderList",
  139. "style": {
  140. "navigationBarTitleText": "我的延保"
  141. }
  142. },
  143. {
  144. "path": "pages/addvalue/orderDetail",
  145. "style": {
  146. "navigationBarTitleText": "延保详情"
  147. }
  148. },
  149. {
  150. "path": "pages/addvalue/websiteList",
  151. "style": {
  152. "navigationBarTitleText": "服务网点"
  153. }
  154. },
  155. {
  156. "path": "pages/addvalue/check",
  157. "style": {
  158. "navigationBarTitleText": "延保查询"
  159. }
  160. },
  161. {
  162. "path": "pages/maintenance/applyList",
  163. "style": {
  164. "navigationBarTitleText": "费用申请单"
  165. }
  166. },
  167. {
  168. "path": "pages/maintenance/applyDetail",
  169. "style": {
  170. "navigationBarTitleText": "费用申请详情"
  171. }
  172. },
  173. {
  174. "path": "pages/maintenance/create",
  175. "style": {
  176. "navigationBarTitleText": "创建维保单"
  177. }
  178. },
  179. {
  180. "path": "pages/maintenance/project",
  181. "style": {
  182. "navigationBarTitleText": "选择项目信息"
  183. }
  184. },
  185. {
  186. "path": "pages/maintenance/product",
  187. "style": {
  188. "navigationBarTitleText": "选择产品"
  189. }
  190. },
  191. {
  192. "path": "pages/codeActivity/activityList",
  193. "style": {
  194. "navigationBarTitleText": "活动列表"
  195. }
  196. },
  197. {
  198. "path": "pages/codeActivity/activityForm",
  199. "style": {
  200. "navigationBarTitleText": "填写信息"
  201. }
  202. },
  203. {
  204. "path": "pages/codeActivity/activityExplain",
  205. "style": {
  206. "navigationBarTitleText": "活动说明"
  207. }
  208. },
  209. {
  210. "path": "pages/codeActivity/applyList",
  211. "style": {
  212. "navigationBarTitleText": "报名记录"
  213. }
  214. },
  215. {
  216. "path": "pages/codeActivity/applyDetail",
  217. "style": {
  218. "navigationBarTitleText": "报名详情"
  219. }
  220. },
  221. {
  222. "path": "pages/recycle/index",
  223. "style": {
  224. "navigationBarTitleText": "二手商城"
  225. }
  226. },
  227. {
  228. "path": "pages/recycle/search",
  229. "style": {
  230. "navigationBarTitleText": "搜索商品"
  231. }
  232. },
  233. {
  234. "path": "pages/recycle/issue",
  235. "style": {
  236. "navigationBarTitleText": "发布"
  237. }
  238. },
  239. {
  240. "path": "pages/recycle/goodsDetail",
  241. "style": {
  242. "navigationBarTitleText": "商品详情"
  243. }
  244. },
  245. {
  246. "path": "pages/recycle/order",
  247. "style": {
  248. "navigationBarTitleText": "确认订单"
  249. }
  250. },
  251. {
  252. "path": "pages/recycle/issue/list",
  253. "style": {
  254. "navigationBarTitleText": "已发布的"
  255. }
  256. },
  257. {
  258. "path": "pages/recycle/issue/detail",
  259. "style": {
  260. "navigationBarTitleText": "详情"
  261. }
  262. },
  263. {
  264. "path": "pages/recycle/order/list",
  265. "style": {
  266. "navigationBarTitleText": "我买到的"
  267. }
  268. },
  269. {
  270. "path": "pages/recycle/order/detail",
  271. "style": {
  272. "navigationBarTitleText": "详情"
  273. }
  274. },
  275. {
  276. "path": "pages/recycle/order/logistics",
  277. "style": {
  278. "navigationBarTitleText": "查看物流"
  279. }
  280. },
  281. {
  282. "path": "pages/recycle/order/refundForm",
  283. "style": {
  284. "navigationBarTitleText": "申请售后"
  285. }
  286. },
  287. {
  288. "path": "pages/recycle/order/refundDetail",
  289. "style": {
  290. "navigationBarTitleText": "售后详情"
  291. }
  292. }
  293. ]
  294. }, {
  295. "root": "packageGoods",
  296. "name": "packageGoods",
  297. "pages": [
  298. {
  299. "path": "pages/classify",
  300. "style": {
  301. "navigationBarTitleText": "分类"
  302. }
  303. },
  304. {
  305. "path": "pages/list",
  306. "style": {
  307. "navigationBarTitleText": "列表"
  308. }
  309. },
  310. {
  311. "path": "pages/cart",
  312. "style": {
  313. "navigationBarTitleText": "购物车"
  314. }
  315. },
  316. {
  317. "path": "pages/search",
  318. "style": {
  319. "navigationBarTitleText": "搜索商品"
  320. }
  321. },
  322. {
  323. "path": "pages/detail",
  324. "style": {
  325. "navigationBarTitleText": "商品详情"
  326. }
  327. },
  328. {
  329. "path": "pages/evaluate",
  330. "style": {
  331. "navigationBarTitleText": "全部评价"
  332. }
  333. },
  334. {
  335. "path": "pages/order",
  336. "style": {
  337. "navigationBarTitleText": "确认订单"
  338. }
  339. },
  340. {
  341. "path": "pages/coupon",
  342. "style": {
  343. "navigationBarTitleText": "我的优惠券"
  344. }
  345. },
  346. {
  347. "path": "pages/seckill",
  348. "style": {
  349. "navigationBarTitleText": "限时秒杀"
  350. }
  351. },
  352. {
  353. "path": "pages/index",
  354. "style": {
  355. "navigationBarTitleText": "商品列表"
  356. }
  357. },
  358. {
  359. "path": "pages/activity",
  360. "style": {
  361. "navigationBarTitleText": "活动专区"
  362. }
  363. },
  364. {
  365. "path": "pages/tradein/category",
  366. "style": {
  367. "navigationBarTitleText": "选择分类"
  368. }
  369. },
  370. {
  371. "path": "pages/tradein/form",
  372. "style": {
  373. "navigationBarTitleText": "旧机信息"
  374. }
  375. }
  376. ]
  377. }, {
  378. "root": "packageMine",
  379. "name": "packageMine",
  380. "pages": [
  381. {
  382. "path": "pages/mySecurityFee",
  383. "style": {
  384. "navigationBarTitleText": "我的安维费"
  385. }
  386. },
  387. {
  388. "path": "pages/securityFeeDetails",
  389. "style": {
  390. "navigationBarTitleText": "费用明细"
  391. }
  392. },
  393. {
  394. "path": "pages/phone",
  395. "style": {
  396. "navigationBarTitleText": "绑定手机号"
  397. }
  398. },
  399. {
  400. "path": "pages/agreement",
  401. "style": {
  402. "navigationBarTitleText": "用户协议"
  403. }
  404. },
  405. {
  406. "path": "pages/userinfo",
  407. "style": {
  408. "navigationBarTitleText": "个人资料"
  409. }
  410. },
  411. {
  412. "path": "pages/address/list",
  413. "style": {
  414. "navigationBarTitleText": "我的收货地址"
  415. }
  416. },
  417. {
  418. "path": "pages/address/form",
  419. "style": {
  420. "navigationBarTitleText": "新增收货地址"
  421. }
  422. },
  423. {
  424. "path": "pages/coupon/list",
  425. "style": {
  426. "navigationBarTitleText": "优惠券"
  427. }
  428. },
  429. {
  430. "path": "pages/collection",
  431. "style": {
  432. "navigationBarTitleText": "我的收藏"
  433. }
  434. },
  435. {
  436. "path": "pages/ranking/list",
  437. "style": {
  438. "navigationStyle": "custom",
  439. "navigationBarTitleText": "收益排行榜"
  440. }
  441. },
  442. {
  443. "path": "pages/ranking/report",
  444. "style": {
  445. "navigationBarTitleText": "我的月报"
  446. }
  447. },
  448. {
  449. "path": "pages/mallCode",
  450. "style": {
  451. "navigationBarTitleText": "商城二维码"
  452. }
  453. },
  454. {
  455. "path": "pages/profit/list",
  456. "style": {
  457. "navigationBarTitleText": "我的收益"
  458. }
  459. },
  460. {
  461. "path": "pages/profit/return",
  462. "style": {
  463. "navigationBarTitleText": "退款明细"
  464. }
  465. },
  466. {
  467. "path": "pages/profit/detail",
  468. "style": {
  469. "navigationBarTitleText": "收益详情"
  470. }
  471. },
  472. {
  473. "path": "pages/profit/ybdetail",
  474. "style": {
  475. "navigationBarTitleText": "收益详情"
  476. }
  477. },
  478. {
  479. "path": "pages/salesProfit/index",
  480. "style": {
  481. "navigationBarTitleText": "销售收益",
  482. "navigationBarBackgroundColor": "#3D8FFD",
  483. "navigationBarTextStyle": "white"
  484. }
  485. },
  486. {
  487. "path": "pages/salesProfit/orderList",
  488. "style": {
  489. "navigationBarTitleText": "销售订单"
  490. }
  491. },
  492. {
  493. "path": "pages/salesProfit/withdraw/list",
  494. "style": {
  495. "navigationBarTitleText": "提现明细"
  496. }
  497. },
  498. {
  499. "path": "pages/salesProfit/withdraw/orderList",
  500. "style": {
  501. "navigationBarTitleText": "提现订单明细"
  502. }
  503. },
  504. {
  505. "path": "pages/salesProfit/withdraw/detail",
  506. "style": {
  507. "navigationBarTitleText": "提现详情"
  508. }
  509. },
  510. {
  511. "path": "pages/salesProfit/withdraw/index",
  512. "style": {
  513. "navigationBarTitleText": "我要提现"
  514. }
  515. },
  516. {
  517. "path": "pages/salesProfit/account/index",
  518. "style": {
  519. "navigationBarTitleText": "账户管理"
  520. }
  521. },
  522. {
  523. "path": "pages/salesProfit/account/form",
  524. "style": {
  525. "navigationBarTitleText": "新增账户"
  526. }
  527. },
  528. {
  529. "path": "pages/order/list",
  530. "style": {
  531. "navigationBarTitleText": "我的订单"
  532. }
  533. },
  534. {
  535. "path": "pages/order/detail",
  536. "style": {
  537. "navigationBarTitleText": "订单详情"
  538. }
  539. },
  540. {
  541. "path": "pages/order/invoice",
  542. "style": {
  543. "navigationBarTitleText": "查看发票"
  544. }
  545. },
  546. {
  547. "path": "pages/order/logistics",
  548. "style": {
  549. "navigationBarTitleText": "物流详情"
  550. }
  551. },
  552. {
  553. "path": "pages/order/changeAddress",
  554. "style": {
  555. "navigationBarTitleText": "修改地址"
  556. }
  557. },
  558. {
  559. "path": "pages/order/evaluate",
  560. "style": {
  561. "navigationBarTitleText": "评价"
  562. }
  563. },
  564. {
  565. "path": "pages/order/return/apply",
  566. "style": {
  567. "navigationBarTitleText": "退货申请"
  568. }
  569. },
  570. {
  571. "path": "pages/order/return/detail",
  572. "style": {
  573. "navigationBarTitleText": "售后详情"
  574. }
  575. },
  576. {
  577. "path": "pages/workerEnter",
  578. "style": {
  579. "navigationBarTitleText": "成为师傅"
  580. }
  581. },
  582. {
  583. "path": "pages/distributorEnter",
  584. "style": {
  585. "navigationBarTitleText": "成为分销员"
  586. }
  587. },
  588. {
  589. "path": "pages/myWebsit",
  590. "style": {
  591. "navigationBarTitleText": "入驻网点"
  592. }
  593. },
  594. {
  595. "path": "pages/notice/list",
  596. "style": {
  597. "navigationBarTitleText": "消息中心"
  598. }
  599. },
  600. {
  601. "path": "pages/notice/detail",
  602. "style": {
  603. "navigationBarTitleText": "详情"
  604. }
  605. },
  606. {
  607. "path": "pages/invoice/form",
  608. "style": {
  609. "navigationBarTitleText": "请填写发票信息"
  610. }
  611. },
  612. {
  613. "path": "pages/invoice/result",
  614. "style": {
  615. "navigationBarTitleText": "请填写发票信息"
  616. }
  617. },
  618. {
  619. "path": "pages/invoice/detail",
  620. "style": {
  621. "navigationBarTitleText": "发票详情"
  622. }
  623. },
  624. {
  625. "path": "pages/invoice/list",
  626. "style": {
  627. "navigationBarTitleText": "发票申请记录"
  628. }
  629. }
  630. // {
  631. // "path": "pages/mine/groupbuy/list",
  632. // "style": {
  633. // "navigationBarTitleText": "我的团购",
  634. // "enablePullDownRefresh": true
  635. // }
  636. // }
  637. ]
  638. }, {
  639. "root": "packageMaterial",
  640. "name": "packageMaterial",
  641. "pages": [
  642. {
  643. "path": "pages/index",
  644. "style": {
  645. "navigationBarTitleText": "辅配件"
  646. }
  647. },
  648. {
  649. "path": "pages/stock/index",
  650. "style": {
  651. "navigationBarTitleText": "我的库存"
  652. }
  653. },
  654. {
  655. "path": "pages/stock/stockDetail",
  656. "style": {
  657. "navigationBarTitleText": "库存明细"
  658. }
  659. },
  660. {
  661. "path": "pages/stock/useRecord",
  662. "style": {
  663. "navigationBarTitleText": "使用记录"
  664. }
  665. },
  666. {
  667. "path": "pages/stock/buyRecord",
  668. "style": {
  669. "navigationBarTitleText": "购买记录"
  670. }
  671. },
  672. {
  673. "path": "pages/stock/buyDetail",
  674. "style": {
  675. "navigationBarTitleText": "订单详情",
  676. "navigationBarBackgroundColor": "#C8E0FB"
  677. }
  678. },
  679. {
  680. "path": "pages/stock/returnList",
  681. "style": {
  682. "navigationBarTitleText": "新旧件返还"
  683. }
  684. },
  685. {
  686. "path": "pages/stock/returnDetail",
  687. "style": {
  688. "navigationBarTitleText": "订单详情",
  689. "navigationBarBackgroundColor": "#C8E0FB"
  690. }
  691. },
  692. {
  693. "path": "pages/stock/orderDetail",
  694. "style": {
  695. "navigationBarTitleText": "订单详情",
  696. "navigationBarBackgroundColor": "#C8E0FB"
  697. }
  698. },
  699. {
  700. "path": "pages/apply/index",
  701. "style": {
  702. "navigationBarTitleText": "新增申领"
  703. }
  704. },
  705. {
  706. "path": "pages/apply/website",
  707. "style": {
  708. "navigationBarTitleText": "选择购买网点"
  709. }
  710. },
  711. {
  712. "path": "pages/apply/product",
  713. "style": {
  714. "navigationBarTitleText": "选择产品"
  715. }
  716. },
  717. {
  718. "path": "pages/apply/order",
  719. "style": {
  720. "navigationBarTitleText": "确认订单"
  721. }
  722. },
  723. {
  724. "path": "pages/apply/pay",
  725. "style": {
  726. "navigationBarTitleText": "确认支付"
  727. }
  728. },
  729. {
  730. "path": "pages/sale/index",
  731. "style": {
  732. "navigationBarTitleText": "辅材收款"
  733. }
  734. },
  735. {
  736. "path": "pages/sale/product",
  737. "style": {
  738. "navigationBarTitleText": "选择产品"
  739. }
  740. },
  741. {
  742. "path": "pages/sale/orderList",
  743. "style": {
  744. "navigationBarTitleText": "订单列表"
  745. }
  746. },
  747. {
  748. "path": "pages/sale/orderDetail",
  749. "style": {
  750. "navigationBarTitleText": "订单详情",
  751. "navigationBarBackgroundColor": "#C8E0FB"
  752. }
  753. },
  754. {
  755. "path": "pages/sale/order",
  756. "style": {
  757. "navigationBarTitleText": "确认订单"
  758. }
  759. },
  760. {
  761. "path": "pages/sale/pay",
  762. "style": {
  763. "navigationBarTitleText": "确认支付"
  764. }
  765. },
  766. {
  767. "path": "pages/sale/result",
  768. "style": {
  769. "navigationBarTitleText": "支付结果"
  770. }
  771. },
  772. {
  773. "path": "pages/partsApply/form",
  774. "style": {
  775. "navigationBarTitleText": "配件申请"
  776. }
  777. },
  778. {
  779. "path": "pages/partsApply/list",
  780. "style": {
  781. "navigationBarTitleText": "配件申请记录"
  782. }
  783. },
  784. {
  785. "path": "pages/partsApply/detail",
  786. "style": {
  787. "navigationBarTitleText": "详情",
  788. "navigationBarBackgroundColor": "#C8E0FB"
  789. }
  790. }
  791. ]
  792. },
  793. {
  794. "root": "packageWorkorder",
  795. "name": "packageWorkorder",
  796. "pages": [
  797. {
  798. "path": "pages/create/index",
  799. "style": {
  800. "navigationBarTitleText": "创建服务单"
  801. }
  802. },
  803. {
  804. "path": "pages/create/classify",
  805. "style": {
  806. "navigationBarTitleText": "选择产品"
  807. }
  808. },
  809. {
  810. "path": "pages/orderList",
  811. "style": {
  812. "navigationBarTitleText": "工单",
  813. "navigationBarBackgroundColor": "#3D8FFD",
  814. "navigationBarTextStyle": "white"
  815. }
  816. },
  817. {
  818. "path": "pages/tenancyOrderList",
  819. "style": {
  820. "navigationBarTitleText": "我的租赁单"
  821. }
  822. },
  823. {
  824. "path": "pages/tenancyOrderDetail",
  825. "style": {
  826. "navigationBarTitleText": "租赁详情"
  827. }
  828. },
  829. {
  830. "path": "pages/tenancyRepairOrder",
  831. "style": {
  832. "navigationBarTitleText": "租赁报修单"
  833. }
  834. },
  835. {
  836. "path": "pages/tenancyReletOrder",
  837. "style": {
  838. "navigationBarTitleText": "确认续租"
  839. }
  840. },
  841. {
  842. "path": "pages/search",
  843. "style": {
  844. "navigationBarTitleText": "工单搜索"
  845. }
  846. },
  847. {
  848. "path": "pages/orderDetail",
  849. "style": {
  850. "navigationBarTitleText": "服务详情",
  851. "navigationBarBackgroundColor": "#C8E0FB"
  852. }
  853. },
  854. {
  855. "path": "pages/userWorkorderList",
  856. "style": {
  857. "navigationBarTitleText": "我的服务单"
  858. }
  859. },
  860. {
  861. "path": "pages/userWorkorderDetail",
  862. "style": {
  863. "navigationBarTitleText": "服务详情"
  864. }
  865. },
  866. {
  867. "path": "pages/processFeedback",
  868. "style": {
  869. "navigationBarTitleText": "过程反馈"
  870. }
  871. },
  872. {
  873. "path": "pages/bookTime",
  874. "style": {
  875. "navigationBarTitleText": "预约"
  876. }
  877. },
  878. {
  879. "path": "pages/signName",
  880. "style": {
  881. "navigationBarTitleText": "签名"
  882. }
  883. },
  884. {
  885. "path": "pages/feedbackList",
  886. "style": {
  887. "navigationBarTitleText": "过程反馈"
  888. }
  889. },
  890. {
  891. "path": "pages/overDetail",
  892. "style": {
  893. "navigationBarTitleText": "完工明细"
  894. }
  895. },
  896. {
  897. "path": "pages/infoCollect/list",
  898. "style": {
  899. "navigationBarTitleText": "信息采集"
  900. }
  901. },
  902. {
  903. "path": "pages/infoCollect/form",
  904. "style": {
  905. "navigationBarTitleText": "信息采集"
  906. }
  907. },
  908. {
  909. "path": "pages/appraise",
  910. "style": {
  911. "navigationBarTitleText": "服务评价"
  912. }
  913. }
  914. ]
  915. }
  916. ],
  917. "easycom": {
  918. // "zj-(.*)": "@/components/zj-container/zj-$1.vue",
  919. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  920. },
  921. "globalStyle": {
  922. "navigationBarTextStyle": "black",
  923. "navigationBarTitleText": "商城",
  924. "navigationBarBackgroundColor": "#FFFFFF",
  925. "backgroundColor": "#F7F8FF",
  926. "app-plus": {
  927. "background": "#efeff4"
  928. }
  929. },
  930. "tabBar": {
  931. "color": "#7A7E83",
  932. "selectedColor": "#3D8FFD",
  933. "borderStyle": "black",
  934. "backgroundColor": "#ffffff",
  935. "list": [{
  936. "pagePath": "pages/index/index",
  937. "iconPath": "static/tabBar/icon_1.png",
  938. "selectedIconPath": "static/tabBar/icon_1_cur.png",
  939. "text": "首页"
  940. }, {
  941. "pagePath": "pages/workorder/index",
  942. "iconPath": "static/tabBar/icon_2.png",
  943. "selectedIconPath": "static/tabBar/icon_2_cur.png",
  944. "text": "工单"
  945. }, {
  946. "pagePath": "pages/goods/index",
  947. "iconPath": "static/tabBar/icon_3.png",
  948. "selectedIconPath": "static/tabBar/icon_3_cur.png",
  949. "text": "商城"
  950. }, {
  951. "pagePath": "pages/mine/index",
  952. "iconPath": "static/tabBar/icon_4.png",
  953. "selectedIconPath": "static/tabBar/icon_4_cur.png",
  954. "text": "我的"
  955. }]
  956. }
  957. }