pages.json 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312
  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. {
  17. "path": "pages/index/index",
  18. "style": {
  19. "navigationBarTitleText": "首页"
  20. // "enablePullDownRefresh": true
  21. }
  22. },
  23. {
  24. "path": "pages/signName",
  25. "style": {
  26. "navigationStyle": "custom",
  27. "navigationBarTitleText": "签名"
  28. // "enablePullDownRefresh": true
  29. }
  30. },
  31. {
  32. "path": "pages/repairConfirmation",
  33. "style": {
  34. "navigationBarTitleText": "确认书"
  35. // "enablePullDownRefresh": true
  36. }
  37. },
  38. {
  39. "path": "pages/signatureConfirmation",
  40. "style": {
  41. "navigationBarTitleText": "师傅签名确认书"
  42. }
  43. },
  44. {
  45. "path": "pages/bind",
  46. "style": {
  47. "navigationBarTitleText": "授权绑定"
  48. }
  49. },
  50. {
  51. "path": "pages/index/webview",
  52. "style": {
  53. "navigationBarTitleText": "打开企业微信小程序"
  54. }
  55. },
  56. {
  57. "path": "pages/login/index",
  58. "style": {
  59. "navigationBarTitleText": "登录"
  60. }
  61. },
  62. {
  63. "path": "pages/login/indexs",
  64. "style": {
  65. "navigationBarTitleText": "登录"
  66. }
  67. },
  68. {
  69. "path": "pages/goods/index",
  70. "style": {
  71. "navigationBarTitleText": "商城"
  72. }
  73. },
  74. {
  75. "path": "pages/mine/index",
  76. "style": {
  77. "navigationStyle": "custom",
  78. "navigationBarTitleText": "我的"
  79. }
  80. },
  81. {
  82. "path": "pages/workorder/index",
  83. "style": {
  84. "navigationBarTitleText": "工单"
  85. }
  86. },
  87. {
  88. "path": "pages/workorder/indexView",
  89. "style": {
  90. "navigationBarTitleText": "工单"
  91. }
  92. }
  93. ],
  94. "subpackages": [
  95. {
  96. "root": "packageEnter",
  97. "name": "packageEnter",
  98. "pages": [
  99. {
  100. "path": "pages/insurance/myInsuranceBuy/index",
  101. "style": {
  102. "navigationBarTitleText": "购买保险"
  103. }
  104. },
  105. {
  106. "path": "pages/insurance/myInsurance/index",
  107. "style": {
  108. "navigationBarTitleText": "我的保险"
  109. }
  110. },
  111. {
  112. "path": "pages/insurance/insuranceContract/index",
  113. "style": {
  114. "navigationBarTitleText": "保险合同"
  115. }
  116. },
  117. {
  118. "path": "pages/insurance/determineInfo/index",
  119. "style": {
  120. "navigationBarTitleText": "确定信息"
  121. }
  122. },
  123. {
  124. "path": "pages/insurance/detailsAgreement/index",
  125. "style": {
  126. "navigationBarTitleText": ""
  127. }
  128. },
  129. {
  130. "path": "pages/insurance/insurancePolicy/index",
  131. "style": {
  132. "navigationBarTitleText": "保险单"
  133. }
  134. },
  135. {
  136. "path": "pages/insurance/policyParticulars/index",
  137. "style": {
  138. "navigationBarTitleText": "保单详情",
  139. "navigationBarBackgroundColor": "#3D8FFD"
  140. }
  141. }
  142. ]
  143. },
  144. {
  145. "root": "packageAttachment",
  146. "name": "packageAttachment",
  147. "pages": [
  148. {
  149. "path": "pages/fittingsManagement/index",
  150. "style": {
  151. "navigationBarTitleText": "配件管理",
  152. "enablePullDownRefresh": false,
  153. "navigationBarTextStyle": "white",
  154. "navigationBarBackgroundColor": "#6DA7FF"
  155. }
  156. },
  157. {
  158. "path": "pages/sparePartsInventory/choosingAccessories",
  159. "style": {
  160. "navigationBarTitleText": "添加配件",
  161. "enablePullDownRefresh": false
  162. }
  163. },
  164. {
  165. "path": "pages/applicationParts/confirmOrder",
  166. "style": {
  167. "navigationBarTitleText": "确认订单",
  168. "enablePullDownRefresh": false
  169. }
  170. },
  171. {
  172. "path": "pages/orderOfSales/index",
  173. "style": {
  174. "navigationBarTitleText": "配件申请",
  175. "enablePullDownRefresh": false
  176. }
  177. },
  178. {
  179. "path": "pages/applicationParts/applicationPartsForm",
  180. "style": {
  181. "navigationBarTitleText": "购买配件",
  182. "enablePullDownRefresh": false
  183. }
  184. },
  185. {
  186. "path": "pages/applicationParts/state",
  187. "style": {
  188. "navigationBarTitleText": "支付订单",
  189. "enablePullDownRefresh": false
  190. }
  191. },
  192. {
  193. "path": "pages/sparePartsInventory/index",
  194. "style": {
  195. "navigationBarTitleText": "配件库存",
  196. "enablePullDownRefresh": false
  197. }
  198. },
  199. {
  200. "path": "pages/forwardSaleOrder/index",
  201. "style": {
  202. "navigationBarTitleText": "转销售单",
  203. "enablePullDownRefresh": false
  204. }
  205. },
  206. {
  207. "path": "pages/applicationParts/index",
  208. "style": {
  209. "navigationBarTitleText": "配件申请",
  210. "navigationStyle": "custom",
  211. "disableScroll": true
  212. }
  213. },
  214. {
  215. "path": "pages/beyondInsuranceTransferToSale/index",
  216. "style": {
  217. "navigationBarTitleText": "保外转销售单",
  218. "enablePullDownRefresh": false
  219. }
  220. },
  221. {
  222. "path": "pages/forwardSaleOrder/details",
  223. "style": {
  224. "navigationBarTitleText": "详情",
  225. "enablePullDownRefresh": false
  226. }
  227. },
  228. {
  229. "path": "pages/applyReturnOfNewPiece/index",
  230. "style": {
  231. "navigationBarTitleText": "申请新件返还",
  232. "enablePullDownRefresh": false
  233. }
  234. },
  235. {
  236. "path": "pages/orderOfSales/details",
  237. "style": {
  238. "navigationBarTitleText": "配件申请",
  239. "enablePullDownRefresh": false
  240. }
  241. },
  242. {
  243. "path": "pages/applicationParts/orderPayment",
  244. "style": {
  245. "navigationBarTitleText": "支付订单",
  246. "enablePullDownRefresh": false
  247. }
  248. },
  249. {
  250. "path": "pages/returnOfNewParts/details",
  251. "style": {
  252. "navigationBarTitleText": "详情",
  253. "enablePullDownRefresh": false
  254. }
  255. },
  256. {
  257. "path": "pages/returnOfOldParts/details",
  258. "style": {
  259. "navigationBarTitleText": "详情",
  260. "enablePullDownRefresh": false
  261. }
  262. },
  263. {
  264. "path": "pages/returnOfOldParts/workOrderView",
  265. "style": {
  266. "navigationBarTitleText": "工单查看",
  267. "enablePullDownRefresh": false
  268. }
  269. },
  270. {
  271. "path": "pages/returnOfOldParts/index",
  272. "style": {
  273. "navigationBarTitleText": "旧件返还",
  274. "enablePullDownRefresh": false
  275. }
  276. },
  277. {
  278. "path": "pages/returnOfNewParts/index",
  279. "style": {
  280. "navigationBarTitleText": "新件返还",
  281. "enablePullDownRefresh": false
  282. }
  283. },
  284. {
  285. "path": "pages/applyReturnOfNewPiece/state",
  286. "style": {
  287. "navigationBarTitleText": "申请新件返还状态",
  288. "enablePullDownRefresh": false
  289. }
  290. }
  291. ]
  292. },
  293. {
  294. "root": "packageHome",
  295. "name": "packageHome",
  296. "pages": [
  297. {
  298. "path": "pages/service/chargeStandard",
  299. "style": {
  300. "navigationBarTitleText": "收费标准"
  301. }
  302. },
  303. {
  304. "path": "pages/service/troubleshoot",
  305. "style": {
  306. "navigationBarTitleText": "故障自查"
  307. }
  308. },
  309. {
  310. "path": "pages/service/classify",
  311. "style": {
  312. "navigationBarTitleText": "选择服务产品"
  313. }
  314. },
  315. {
  316. "path": "pages/service/tenancy",
  317. "style": {
  318. "navigationBarTitleText": "选择产品"
  319. }
  320. },
  321. {
  322. "path": "pages/service/tenancyDetail",
  323. "style": {
  324. "navigationBarTitleText": "商品详情"
  325. }
  326. },
  327. {
  328. "path": "pages/service/confirmTenancyOrder",
  329. "style": {
  330. "navigationBarTitleText": "确认订单"
  331. }
  332. },
  333. {
  334. "path": "pages/addvalue/serviceBuy",
  335. "style": {
  336. "navigationBarTitleText": "购买延保"
  337. }
  338. },
  339. {
  340. "path": "pages/addvalue/serviceUse",
  341. "style": {
  342. "navigationBarTitleText": "创建延保单"
  343. }
  344. },
  345. {
  346. "path": "pages/addvalue/explainList",
  347. "style": {
  348. "navigationBarTitleText": "延保服务"
  349. }
  350. },
  351. {
  352. "path": "pages/addvalue/explainDetail",
  353. "style": {
  354. "navigationBarTitleText": "服务说明"
  355. }
  356. },
  357. {
  358. "path": "pages/addvalue/orderList",
  359. "style": {
  360. "navigationBarTitleText": "我的延保"
  361. }
  362. },
  363. {
  364. "path": "pages/addvalue/orderDetail",
  365. "style": {
  366. "navigationBarTitleText": "延保详情"
  367. }
  368. },
  369. {
  370. "path": "pages/addvalue/websiteList",
  371. "style": {
  372. "navigationBarTitleText": "服务网点"
  373. }
  374. },
  375. {
  376. "path": "pages/addvalue/check",
  377. "style": {
  378. "navigationBarTitleText": "延保查询"
  379. }
  380. },
  381. {
  382. "path": "pages/maintenance/applyList",
  383. "style": {
  384. "navigationBarTitleText": "费用申请单"
  385. }
  386. },
  387. {
  388. "path": "pages/maintenance/applyDetail",
  389. "style": {
  390. "navigationBarTitleText": "费用申请详情"
  391. }
  392. },
  393. {
  394. "path": "pages/maintenance/create",
  395. "style": {
  396. "navigationBarTitleText": "创建维保单"
  397. }
  398. },
  399. {
  400. "path": "pages/maintenance/project",
  401. "style": {
  402. "navigationBarTitleText": "选择项目信息"
  403. }
  404. },
  405. {
  406. "path": "pages/maintenance/product",
  407. "style": {
  408. "navigationBarTitleText": "选择产品"
  409. }
  410. },
  411. {
  412. "path": "pages/codeActivity/activityList",
  413. "style": {
  414. "navigationBarTitleText": "活动列表"
  415. }
  416. },
  417. {
  418. "path": "pages/codeActivity/activityForm",
  419. "style": {
  420. "navigationBarTitleText": "填写信息"
  421. }
  422. },
  423. {
  424. "path": "pages/codeActivity/activityExplain",
  425. "style": {
  426. "navigationBarTitleText": "活动说明"
  427. }
  428. },
  429. {
  430. "path": "pages/codeActivity/applyList",
  431. "style": {
  432. "navigationBarTitleText": "报名记录"
  433. }
  434. },
  435. {
  436. "path": "pages/codeActivity/applyDetail",
  437. "style": {
  438. "navigationBarTitleText": "报名详情"
  439. }
  440. },
  441. {
  442. "path": "pages/recycle/index",
  443. "style": {
  444. "navigationBarTitleText": "二手商城"
  445. }
  446. },
  447. {
  448. "path": "pages/recycle/search",
  449. "style": {
  450. "navigationBarTitleText": "搜索商品"
  451. }
  452. },
  453. {
  454. "path": "pages/recycle/issue",
  455. "style": {
  456. "navigationBarTitleText": "发布"
  457. }
  458. },
  459. {
  460. "path": "pages/recycle/goodsDetail",
  461. "style": {
  462. "navigationBarTitleText": "商品详情"
  463. }
  464. },
  465. {
  466. "path": "pages/recycle/order",
  467. "style": {
  468. "navigationBarTitleText": "确认订单"
  469. }
  470. },
  471. {
  472. "path": "pages/recycle/issue/list",
  473. "style": {
  474. "navigationBarTitleText": "已发布的"
  475. }
  476. },
  477. {
  478. "path": "pages/recycle/issue/detail",
  479. "style": {
  480. "navigationBarTitleText": "详情"
  481. }
  482. },
  483. {
  484. "path": "pages/recycle/order/list",
  485. "style": {
  486. "navigationBarTitleText": "我买到的"
  487. }
  488. },
  489. {
  490. "path": "pages/recycle/order/detail",
  491. "style": {
  492. "navigationBarTitleText": "详情"
  493. }
  494. },
  495. {
  496. "path": "pages/recycle/order/logistics",
  497. "style": {
  498. "navigationBarTitleText": "查看物流"
  499. }
  500. },
  501. {
  502. "path": "pages/recycle/order/refundForm",
  503. "style": {
  504. "navigationBarTitleText": "申请售后"
  505. }
  506. },
  507. {
  508. "path": "pages/recycle/order/refundDetail",
  509. "style": {
  510. "navigationBarTitleText": "售后详情"
  511. }
  512. }
  513. ]
  514. },
  515. {
  516. "root": "packageGoods",
  517. "name": "packageGoods",
  518. "pages": [
  519. {
  520. "path": "pages/classify",
  521. "style": {
  522. "navigationBarTitleText": "分类"
  523. }
  524. },
  525. {
  526. "path": "pages/list",
  527. "style": {
  528. "navigationBarTitleText": "列表"
  529. }
  530. },
  531. {
  532. "path": "pages/cart",
  533. "style": {
  534. "navigationBarTitleText": "购物车"
  535. }
  536. },
  537. {
  538. "path": "pages/search",
  539. "style": {
  540. "navigationBarTitleText": "搜索商品"
  541. }
  542. },
  543. {
  544. "path": "pages/detail",
  545. "style": {
  546. "navigationBarTitleText": "商品详情"
  547. }
  548. },
  549. {
  550. "path": "pages/evaluate",
  551. "style": {
  552. "navigationBarTitleText": "全部评价"
  553. }
  554. },
  555. {
  556. "path": "pages/order",
  557. "style": {
  558. "navigationBarTitleText": "确认订单"
  559. }
  560. },
  561. {
  562. "path": "pages/coupon",
  563. "style": {
  564. "navigationBarTitleText": "我的优惠券"
  565. }
  566. },
  567. {
  568. "path": "pages/seckill",
  569. "style": {
  570. "navigationBarTitleText": "限时秒杀"
  571. }
  572. },
  573. {
  574. "path": "pages/index",
  575. "style": {
  576. "navigationBarTitleText": "商品列表"
  577. }
  578. },
  579. {
  580. "path": "pages/activity",
  581. "style": {
  582. "navigationBarTitleText": "活动专区"
  583. }
  584. },
  585. {
  586. "path": "pages/tradein/category",
  587. "style": {
  588. "navigationBarTitleText": "选择分类"
  589. }
  590. },
  591. {
  592. "path": "pages/tradein/form",
  593. "style": {
  594. "navigationBarTitleText": "旧机信息"
  595. }
  596. }
  597. ]
  598. },
  599. {
  600. "root": "packageMine",
  601. "name": "packageMine",
  602. "pages": [
  603. {
  604. "path": "pages/qualityGuaranteeFund",
  605. "style": {
  606. "navigationBarTitleText": "质保金明细"
  607. }
  608. },
  609. {
  610. "path": "pages/masterGroup/index",
  611. "style": {
  612. "navigationBarTitleText": "师傅组别"
  613. }
  614. },
  615. {
  616. "path": "pages/masterGroup/createGroup",
  617. "style": {
  618. "navigationBarTitleText": "创建组别"
  619. }
  620. },
  621. {
  622. "path": "pages/coreLssuedFile/index",
  623. "style": {
  624. "navigationBarTitleText": "中心文件下发"
  625. }
  626. },
  627. {
  628. "path": "pages/coreLssuedFile/detail",
  629. "style": {
  630. "navigationBarTitleText": "文件详情"
  631. }
  632. },
  633. {
  634. "path": "pages/mySecurityFee",
  635. "style": {
  636. "navigationBarTitleText": "我的安维费"
  637. }
  638. },
  639. {
  640. "path": "pages/wodeanwei",
  641. "style": {
  642. "navigationBarTitleText": "我的安维费"
  643. }
  644. },
  645. {
  646. "path": "pages/repairSettle/detail",
  647. "style": {
  648. "navigationBarTitleText": "详情"
  649. }
  650. },
  651. {
  652. "path": "pages/repairSettle/detailed",
  653. "style": {
  654. "navigationBarTitleText": "明细"
  655. }
  656. },
  657. {
  658. "path": "pages/repairSettle/list",
  659. "style": {
  660. "navigationBarTitleText": "维修费用结算"
  661. }
  662. },
  663. {
  664. "path": "pages/securityFeeDetails",
  665. "style": {
  666. "navigationBarTitleText": "费用明细"
  667. }
  668. },
  669. {
  670. "path": "pages/phone",
  671. "style": {
  672. "navigationBarTitleText": "绑定手机号"
  673. }
  674. },
  675. {
  676. "path": "pages/phoneUpdate",
  677. "style": {
  678. "navigationBarTitleText": "修改手机号"
  679. }
  680. },
  681. {
  682. "path": "pages/agreement",
  683. "style": {
  684. "navigationBarTitleText": "用户协议"
  685. }
  686. },
  687. {
  688. "path": "pages/userinfo",
  689. "style": {
  690. "navigationBarTitleText": "个人资料"
  691. }
  692. },
  693. {
  694. "path": "pages/address/list",
  695. "style": {
  696. "navigationBarTitleText": "我的收货地址"
  697. }
  698. },
  699. {
  700. "path": "pages/address/form",
  701. "style": {
  702. "navigationBarTitleText": "新增收货地址"
  703. }
  704. },
  705. {
  706. "path": "pages/coupon/list",
  707. "style": {
  708. "navigationBarTitleText": "优惠券"
  709. }
  710. },
  711. {
  712. "path": "pages/collection",
  713. "style": {
  714. "navigationBarTitleText": "我的收藏"
  715. }
  716. },
  717. {
  718. "path": "pages/ranking/list",
  719. "style": {
  720. "navigationStyle": "custom",
  721. "navigationBarTitleText": "收益排行榜"
  722. }
  723. },
  724. {
  725. "path": "pages/ranking/report",
  726. "style": {
  727. "navigationBarTitleText": "我的月报"
  728. }
  729. },
  730. {
  731. "path": "pages/mallCode",
  732. "style": {
  733. "navigationBarTitleText": "商城二维码"
  734. }
  735. },
  736. {
  737. "path": "pages/profit/list",
  738. "style": {
  739. "navigationBarTitleText": "我的收益"
  740. }
  741. },
  742. {
  743. "path": "pages/profit/return",
  744. "style": {
  745. "navigationBarTitleText": "退款明细"
  746. }
  747. },
  748. {
  749. "path": "pages/profit/detail",
  750. "style": {
  751. "navigationBarTitleText": "收益详情"
  752. }
  753. },
  754. {
  755. "path": "pages/profit/ybdetail",
  756. "style": {
  757. "navigationBarTitleText": "收益详情"
  758. }
  759. },
  760. {
  761. "path": "pages/salesProfit/index",
  762. "style": {
  763. "navigationBarTitleText": "销售收益",
  764. "navigationBarBackgroundColor": "#3D8FFD",
  765. "navigationBarTextStyle": "white"
  766. }
  767. },
  768. {
  769. "path": "pages/salesProfit/orderList",
  770. "style": {
  771. "navigationBarTitleText": "销售订单"
  772. }
  773. },
  774. {
  775. "path": "pages/salesProfit/orderDetail",
  776. "style": {
  777. "navigationBarTitleText": "订单详情",
  778. "navigationBarBackgroundColor": "#C8E0FB"
  779. }
  780. },
  781. {
  782. "path": "pages/salesProfit/withdraw/list",
  783. "style": {
  784. "navigationBarTitleText": "提现明细"
  785. }
  786. },
  787. {
  788. "path": "pages/salesProfit/withdraw/orderList",
  789. "style": {
  790. "navigationBarTitleText": "提现订单明细"
  791. }
  792. },
  793. {
  794. "path": "pages/salesProfit/withdraw/detail",
  795. "style": {
  796. "navigationBarTitleText": "提现详情"
  797. }
  798. },
  799. {
  800. "path": "pages/salesProfit/withdraw/index",
  801. "style": {
  802. "navigationBarTitleText": "我要提现"
  803. }
  804. },
  805. {
  806. "path": "pages/salesProfit/account/index",
  807. "style": {
  808. "navigationBarTitleText": "账户管理"
  809. }
  810. },
  811. {
  812. "path": "pages/salesProfit/account/form",
  813. "style": {
  814. "navigationBarTitleText": "新增账户"
  815. }
  816. },
  817. {
  818. "path": "pages/order/list",
  819. "style": {
  820. "navigationBarTitleText": "我的订单"
  821. }
  822. },
  823. {
  824. "path": "pages/order/detail",
  825. "style": {
  826. "navigationBarTitleText": "订单详情"
  827. }
  828. },
  829. {
  830. "path": "pages/order/invoice",
  831. "style": {
  832. "navigationBarTitleText": "查看发票"
  833. }
  834. },
  835. {
  836. "path": "pages/order/logistics",
  837. "style": {
  838. "navigationBarTitleText": "物流详情"
  839. }
  840. },
  841. {
  842. "path": "pages/order/changeAddress",
  843. "style": {
  844. "navigationBarTitleText": "修改地址"
  845. }
  846. },
  847. {
  848. "path": "pages/order/evaluate",
  849. "style": {
  850. "navigationBarTitleText": "评价"
  851. }
  852. },
  853. {
  854. "path": "pages/order/return/apply",
  855. "style": {
  856. "navigationBarTitleText": "退货申请"
  857. }
  858. },
  859. {
  860. "path": "pages/order/return/detail",
  861. "style": {
  862. "navigationBarTitleText": "售后详情"
  863. }
  864. },
  865. {
  866. "path": "pages/workerEnter",
  867. "style": {
  868. "navigationBarTitleText": "成为师傅"
  869. }
  870. },
  871. {
  872. "path": "pages/distributorEnter",
  873. "style": {
  874. "navigationBarTitleText": "成为分销员"
  875. }
  876. },
  877. {
  878. "path": "pages/myWebsit",
  879. "style": {
  880. "navigationBarTitleText": "入驻网点"
  881. }
  882. },
  883. {
  884. "path": "pages/notice/list",
  885. "style": {
  886. "navigationBarTitleText": "消息中心"
  887. }
  888. },
  889. {
  890. "path": "pages/notice/detail",
  891. "style": {
  892. "navigationBarTitleText": "详情"
  893. }
  894. },
  895. {
  896. "path": "pages/invoice/form",
  897. "style": {
  898. "navigationBarTitleText": "请填写发票信息"
  899. }
  900. },
  901. {
  902. "path": "pages/invoice/result",
  903. "style": {
  904. "navigationBarTitleText": "请填写发票信息"
  905. }
  906. },
  907. {
  908. "path": "pages/invoice/detail",
  909. "style": {
  910. "navigationBarTitleText": "发票详情"
  911. }
  912. },
  913. {
  914. "path": "pages/invoice/list",
  915. "style": {
  916. "navigationBarTitleText": "发票申请记录"
  917. }
  918. }
  919. // {
  920. // "path": "pages/mine/groupbuy/list",
  921. // "style": {
  922. // "navigationBarTitleText": "我的团购",
  923. // "enablePullDownRefresh": true
  924. // }
  925. // }
  926. ]
  927. },
  928. {
  929. "root": "packageMaterial",
  930. "name": "packageMaterial",
  931. "pages": [
  932. {
  933. "path": "pages/index",
  934. "style": {
  935. "navigationBarTitleText": "辅配件"
  936. }
  937. },
  938. {
  939. "path": "pages/stock/index",
  940. "style": {
  941. "navigationBarTitleText": "我的库存"
  942. }
  943. },
  944. {
  945. "path": "pages/stock/stockDetail",
  946. "style": {
  947. "navigationBarTitleText": "库存明细"
  948. }
  949. },
  950. {
  951. "path": "pages/stock/useRecord",
  952. "style": {
  953. "navigationBarTitleText": "使用记录"
  954. }
  955. },
  956. {
  957. "path": "pages/stock/buyRecord",
  958. "style": {
  959. "navigationBarTitleText": "购买记录"
  960. }
  961. },
  962. {
  963. "path": "pages/stock/buyDetail",
  964. "style": {
  965. "navigationBarTitleText": "订单详情",
  966. "navigationBarBackgroundColor": "#C8E0FB"
  967. }
  968. },
  969. {
  970. "path": "pages/stock/returnList",
  971. "style": {
  972. "navigationBarTitleText": "新旧件返还"
  973. }
  974. },
  975. {
  976. "path": "pages/stock/returnDetail",
  977. "style": {
  978. "navigationBarTitleText": "订单详情",
  979. "navigationBarBackgroundColor": "#C8E0FB"
  980. }
  981. },
  982. {
  983. "path": "pages/stock/orderDetail",
  984. "style": {
  985. "navigationBarTitleText": "订单详情",
  986. "navigationBarBackgroundColor": "#C8E0FB"
  987. }
  988. },
  989. {
  990. "path": "pages/apply/index",
  991. "style": {
  992. "navigationBarTitleText": "新增申领"
  993. }
  994. },
  995. {
  996. "path": "pages/apply/website",
  997. "style": {
  998. "navigationBarTitleText": "选择购买网点"
  999. }
  1000. },
  1001. {
  1002. "path": "pages/apply/product",
  1003. "style": {
  1004. "navigationBarTitleText": "选择产品"
  1005. }
  1006. },
  1007. {
  1008. "path": "pages/apply/order",
  1009. "style": {
  1010. "navigationBarTitleText": "确认订单"
  1011. }
  1012. },
  1013. {
  1014. "path": "pages/apply/pay",
  1015. "style": {
  1016. "navigationBarTitleText": "确认支付"
  1017. }
  1018. },
  1019. {
  1020. "path": "pages/sale/index",
  1021. "style": {
  1022. "navigationBarTitleText": "辅材收款"
  1023. }
  1024. },
  1025. {
  1026. "path": "pages/sale/product",
  1027. "style": {
  1028. "navigationBarTitleText": "选择产品"
  1029. }
  1030. },
  1031. {
  1032. "path": "pages/sale/orderList",
  1033. "style": {
  1034. "navigationBarTitleText": "订单列表"
  1035. }
  1036. },
  1037. {
  1038. "path": "pages/sale/orderDetail",
  1039. "style": {
  1040. "navigationBarTitleText": "订单详情",
  1041. "navigationBarBackgroundColor": "#C8E0FB"
  1042. }
  1043. },
  1044. {
  1045. "path": "pages/sale/order",
  1046. "style": {
  1047. "navigationBarTitleText": "确认订单"
  1048. }
  1049. },
  1050. {
  1051. "path": "pages/sale/pay",
  1052. "style": {
  1053. "navigationBarTitleText": "确认支付"
  1054. }
  1055. },
  1056. {
  1057. "path": "pages/sale/result",
  1058. "style": {
  1059. "navigationBarTitleText": "支付结果"
  1060. }
  1061. },
  1062. {
  1063. "path": "pages/newSale/index",
  1064. "style": {
  1065. "navigationBarTitleText": "配件收款"
  1066. }
  1067. },
  1068. {
  1069. "path": "pages/newSale/product",
  1070. "style": {
  1071. "navigationBarTitleText": "选择产品"
  1072. }
  1073. },
  1074. {
  1075. "path": "pages/newSale/orderList",
  1076. "style": {
  1077. "navigationBarTitleText": "订单列表"
  1078. }
  1079. },
  1080. {
  1081. "path": "pages/newSale/orderDetail",
  1082. "style": {
  1083. "navigationBarTitleText": "订单详情",
  1084. "navigationBarBackgroundColor": "#C8E0FB"
  1085. }
  1086. },
  1087. {
  1088. "path": "pages/newSale/order",
  1089. "style": {
  1090. "navigationBarTitleText": "确认订单"
  1091. }
  1092. },
  1093. {
  1094. "path": "pages/newSale/pay",
  1095. "style": {
  1096. "navigationBarTitleText": "确认支付"
  1097. }
  1098. },
  1099. {
  1100. "path": "pages/newSale/result",
  1101. "style": {
  1102. "navigationBarTitleText": "支付结果"
  1103. }
  1104. },
  1105. {
  1106. "path": "pages/partsApply/form",
  1107. "style": {
  1108. "navigationBarTitleText": "配件申请"
  1109. }
  1110. },
  1111. {
  1112. "path": "pages/partsApply/list",
  1113. "style": {
  1114. "navigationBarTitleText": "配件申请记录"
  1115. }
  1116. },
  1117. {
  1118. "path": "pages/partsApply/detail",
  1119. "style": {
  1120. "navigationBarTitleText": "详情",
  1121. "navigationBarBackgroundColor": "#C8E0FB"
  1122. }
  1123. }
  1124. ]
  1125. },
  1126. {
  1127. "root": "packageWorkorder",
  1128. "name": "packageWorkorder",
  1129. "pages": [
  1130. {
  1131. "path": "pages/myNanDu",
  1132. "style": {
  1133. "navigationBarTitleText": "难度费用"
  1134. }
  1135. },
  1136. {
  1137. "path": "pages/nandufysq",
  1138. "style": {
  1139. "navigationBarTitleText": "难度费用申请"
  1140. }
  1141. },
  1142. {
  1143. "path": "pages/create/index",
  1144. "style": {
  1145. "navigationBarTitleText": "创建服务单"
  1146. }
  1147. },
  1148. {
  1149. "path": "pages/create/classify",
  1150. "style": {
  1151. "navigationBarTitleText": "选择产品"
  1152. }
  1153. },
  1154. {
  1155. "path": "pages/orderList",
  1156. "style": {
  1157. "navigationBarTitleText": "工单",
  1158. "navigationBarBackgroundColor": "#3D8FFD",
  1159. "navigationBarTextStyle": "white"
  1160. }
  1161. },
  1162. {
  1163. "path": "pages/tenancyOrderList",
  1164. "style": {
  1165. "navigationBarTitleText": "我的租赁单"
  1166. }
  1167. },
  1168. {
  1169. "path": "pages/tenancyOrderDetail",
  1170. "style": {
  1171. "navigationBarTitleText": "租赁详情"
  1172. }
  1173. },
  1174. {
  1175. "path": "pages/tenancyRepairOrder",
  1176. "style": {
  1177. "navigationBarTitleText": "租赁报修单"
  1178. }
  1179. },
  1180. {
  1181. "path": "pages/tenancyReletOrder",
  1182. "style": {
  1183. "navigationBarTitleText": "确认续租"
  1184. }
  1185. },
  1186. {
  1187. "path": "pages/search",
  1188. "style": {
  1189. "navigationBarTitleText": "工单搜索"
  1190. }
  1191. },
  1192. {
  1193. "path": "pages/orderDetail",
  1194. "style": {
  1195. "navigationBarTitleText": "服务详情",
  1196. "navigationBarBackgroundColor": "#C8E0FB"
  1197. }
  1198. },
  1199. {
  1200. "path": "pages/userWorkorderList",
  1201. "style": {
  1202. "navigationBarTitleText": "我的服务单"
  1203. }
  1204. },
  1205. {
  1206. "path": "pages/userWorkorderDetail",
  1207. "style": {
  1208. "navigationBarTitleText": "服务详情"
  1209. }
  1210. },
  1211. {
  1212. "path": "pages/processFeedback",
  1213. "style": {
  1214. "navigationBarTitleText": "过程反馈"
  1215. }
  1216. },
  1217. {
  1218. "path": "pages/bookTime",
  1219. "style": {
  1220. "navigationBarTitleText": "预约"
  1221. }
  1222. },
  1223. {
  1224. "path": "pages/signName",
  1225. "style": {
  1226. "navigationBarTitleText": "签名"
  1227. }
  1228. },
  1229. {
  1230. "path": "pages/feedbackList",
  1231. "style": {
  1232. "navigationBarTitleText": "过程反馈"
  1233. }
  1234. },
  1235. {
  1236. "path": "pages/overDetail",
  1237. "style": {
  1238. "navigationBarTitleText": "完工明细"
  1239. }
  1240. },
  1241. {
  1242. "path": "pages/infoCollect/list",
  1243. "style": {
  1244. "navigationBarTitleText": "信息采集"
  1245. }
  1246. },
  1247. {
  1248. "path": "pages/infoCollect/form",
  1249. "style": {
  1250. "navigationBarTitleText": "信息采集"
  1251. }
  1252. },
  1253. {
  1254. "path": "pages/appraise",
  1255. "style": {
  1256. "navigationBarTitleText": "服务评价"
  1257. }
  1258. }
  1259. ]
  1260. }
  1261. ],
  1262. "easycom": {
  1263. // "zj-(.*)": "@/components/zj-container/zj-$1.vue",
  1264. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  1265. },
  1266. "globalStyle": {
  1267. "navigationBarTextStyle": "black",
  1268. "navigationBarTitleText": "商城",
  1269. "navigationBarBackgroundColor": "#FFFFFF",
  1270. "backgroundColor": "#F7F8FF",
  1271. "app-plus": {
  1272. "background": "#efeff4"
  1273. }
  1274. },
  1275. "tabBar": {
  1276. "color": "#7A7E83",
  1277. "selectedColor": "#3D8FFD",
  1278. "borderStyle": "black",
  1279. "backgroundColor": "#ffffff",
  1280. "list": [
  1281. {
  1282. "pagePath": "pages/index/index",
  1283. "iconPath": "static/tabBar/icon_1.png",
  1284. "selectedIconPath": "static/tabBar/icon_1_cur.png",
  1285. "text": "首页"
  1286. },
  1287. {
  1288. "pagePath": "pages/workorder/index",
  1289. "iconPath": "static/tabBar/icon_2.png",
  1290. "selectedIconPath": "static/tabBar/icon_2_cur.png",
  1291. "text": "工单"
  1292. },
  1293. // {
  1294. // "pagePath": "pages/goods/index",
  1295. // "iconPath": "static/tabBar/icon_3.png",
  1296. // "selectedIconPath": "static/tabBar/icon_3_cur.png",
  1297. // "text": "商城"
  1298. // },
  1299. {
  1300. "pagePath": "pages/mine/index",
  1301. "iconPath": "static/tabBar/icon_4.png",
  1302. "selectedIconPath": "static/tabBar/icon_4_cur.png",
  1303. "text": "我的"
  1304. }
  1305. ]
  1306. }
  1307. }