Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pages.json 44KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803
  1. {
  2. "mode": "production",
  3. "pages": [{
  4. "path": "pages/index/index",
  5. "style": {
  6. // "navigationBarHidden": true,
  7. "navigationBarTitleText": "首页",
  8. "navigationBarBackgroundColor": "#22dbc8",
  9. "navigationStyle": "custom",
  10. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  11. "transparentTitle": "always",
  12. "titlePenetrate": "YES",
  13. "defaultTitle": "" // 将导航栏默认的 title 置空
  14. }
  15. }
  16. },
  17. {
  18. "path": "pages/order/order",
  19. "style": {
  20. "navigationBarTitleText": "我的订单",
  21. "enablePullDownRefresh": true
  22. }
  23. },
  24. {
  25. "path": "pages/user/user",
  26. "style": {
  27. "navigationBarTitleText": "九州ETC",
  28. "navigationBarBackgroundColor": "#22dbc8",
  29. "navigationStyle": "custom",
  30. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  31. "transparentTitle": "always",
  32. "titlePenetrate": "YES",
  33. "defaultTitle": "" // 将导航栏默认的 title 置空
  34. }
  35. }
  36. },
  37. {
  38. "path": "pages/service/service",
  39. "style": {
  40. "navigationBarTitleText": "九州ETC",
  41. "navigationStyle": "custom",
  42. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  43. "transparentTitle": "always",
  44. "titlePenetrate": "YES",
  45. "defaultTitle": "" // 将导航栏默认的 title 置空
  46. }
  47. }
  48. },
  49. {
  50. "path": "pages/bluetooth/bluetooth",
  51. "style": {
  52. "navigationBarTitleText": "选择蓝牙设备"
  53. }
  54. },
  55. {
  56. "path": "pages/recharge/recharge",
  57. "style": {
  58. "navigationBarTitleText": "用户账户充值",
  59. "enablePullDownRefresh": false
  60. }
  61. },
  62. {
  63. "path": "pages/recharge/select-car",
  64. "style": {
  65. "navigationBarTitleText": "选择车辆",
  66. "enablePullDownRefresh": false
  67. }
  68. },
  69. {
  70. "path": "pages/recharge/result",
  71. "style": {
  72. "navigationBarTitleText": "账户充值-完成",
  73. "enablePullDownRefresh": false
  74. }
  75. },
  76. {
  77. "path": "pages/app/sign",
  78. "style": {
  79. "navigationBarTitleText": "APP扫描签约"
  80. }
  81. }, {
  82. "path": "pages/nfc/nfc",
  83. "style": {
  84. "navigationBarTitleText": "NFC链接",
  85. "enablePullDownRefresh": false
  86. }
  87. }, {
  88. "path": "pages/zaweb/zaweb",
  89. "style": {
  90. "navigationBarTitleText": "在线签约",
  91. "enablePullDownRefresh": false
  92. }
  93. }
  94. ],
  95. "subPackages": [{
  96. "root": "subpackage/after-sale", //售后相关
  97. "pages": [{
  98. "path": "onlineService",
  99. "style": {
  100. "navigationBarTitleText": "在线客服",
  101. "enablePullDownRefresh": false
  102. }
  103. },
  104. {
  105. "path": "transferRecord",
  106. "style": {
  107. "navigationBarTitleText": "过户记录",
  108. "enablePullDownRefresh": false
  109. }
  110. },
  111. {
  112. "path": "empty",
  113. "style": {
  114. "navigationBarTitleText": "支付",
  115. "enablePullDownRefresh": false
  116. }
  117. },
  118. {
  119. "path": "inventory-equipment",
  120. "style": {
  121. "navigationBarTitleText": "库存设备统计",
  122. "enablePullDownRefresh": false
  123. }
  124. },
  125. {
  126. "path": "business-processie",
  127. "style": {
  128. "navigationBarTitleText": "业务操作记录",
  129. "enablePullDownRefresh": false
  130. }
  131. },
  132. {
  133. "path": "report/qingfen",
  134. "style": {
  135. "navigationBarTitleText": "清分对账统计",
  136. "enablePullDownRefresh": false
  137. }
  138. },
  139. {
  140. "path": "report/report",
  141. "style": {
  142. "navigationBarTitleText": "每日渠道推送报表",
  143. "enablePullDownRefresh": false
  144. }
  145. },
  146. {
  147. "path": "report/report-details",
  148. "style": {
  149. "navigationBarTitleText": "每日渠道推送报表详情",
  150. "enablePullDownRefresh": false
  151. }
  152. },
  153. {
  154. "path": "account-recharge/recharge",
  155. "style": {
  156. "navigationBarTitleText": "充值",
  157. "enablePullDownRefresh": false
  158. }
  159. },
  160. {
  161. "path": "account-recharge/recharge-record",
  162. "style": {
  163. "navigationBarTitleText": "充值明细",
  164. "enablePullDownRefresh": false
  165. }
  166. },
  167. {
  168. "path": "account-recharge/consumption-record",
  169. "style": {
  170. "navigationBarTitleText": "消费明细",
  171. "enablePullDownRefresh": false
  172. }
  173. },
  174. {
  175. "path": "account-recharge/open-account",
  176. "style": {
  177. "navigationBarTitleText": "开户",
  178. "enablePullDownRefresh": false
  179. }
  180. },
  181. {
  182. "path": "account-recharge/index",
  183. "style": {
  184. "navigationBarTitleText": "ETC卡",
  185. "enablePullDownRefresh": false
  186. }
  187. },
  188. {
  189. "path": "account-recharge/login",
  190. "style": {
  191. "navigationBarTitleText": "登录",
  192. "enablePullDownRefresh": false
  193. }
  194. },
  195. {
  196. "path": "account-recharge/go-account",
  197. "style": {
  198. "navigationBarTitleText": "开户",
  199. "enablePullDownRefresh": false
  200. }
  201. },
  202. {
  203. "path": "account-recharge/forget-password",
  204. "style": {
  205. "navigationBarTitleText": "忘记密码",
  206. "enablePullDownRefresh": false
  207. }
  208. },
  209. {
  210. "path": "arrears/arrears",
  211. "style": {
  212. "navigationBarTitleText": "欠费补缴",
  213. "enablePullDownRefresh": false
  214. }
  215. },
  216. {
  217. "path": "refund-order-balance/refund-order-balance",
  218. "style": {
  219. "navigationBarTitleText": "余额补领",
  220. "enablePullDownRefresh": false
  221. }
  222. },
  223. {
  224. "path": "refund-order-balance/result",
  225. "style": {
  226. "navigationBarTitleText": "余额补领-办理成功",
  227. "enablePullDownRefresh": false
  228. }
  229. },
  230. {
  231. "path": "refund-order-balance/select-car",
  232. "style": {
  233. "navigationBarTitleText": "余额补领-选择车辆",
  234. "enablePullDownRefresh": false
  235. }
  236. },
  237. {
  238. "path": "deviceInfo/deviceInfo",
  239. "style": {
  240. "navigationBarTitleText": "设备信息",
  241. "enablePullDownRefresh": false
  242. }
  243. },
  244. {
  245. "path": "activation/activate",
  246. "style": {
  247. "navigationBarTitleText": "设备激活",
  248. "enablePullDownRefresh": false
  249. }
  250. },
  251. {
  252. "path": "activation/operation-upload",
  253. "style": {
  254. "navigationBarTitleText": "上传图片"
  255. }
  256. },
  257. {
  258. "path": "activation/operation-tips",
  259. "style": {
  260. "navigationBarTitleText": "操作提示"
  261. }
  262. },
  263. {
  264. "path": "activation-once-again/activation-once-again",
  265. "style": {
  266. "navigationBarTitleText": "OBU重新激活"
  267. }
  268. },
  269. {
  270. "path": "activation-once-again/select-car",
  271. "style": {
  272. "navigationBarTitleText": "选择车辆"
  273. }
  274. },
  275. {
  276. "path": "reportLossCard",
  277. "style": {
  278. "navigationBarTitleText": "卡签挂失/解除挂失",
  279. "enablePullDownRefresh": false
  280. }
  281. },
  282. {
  283. "path": "card-loss-reporting/cardloss",
  284. "style": {
  285. "navigationBarTitleText": "卡签挂失",
  286. "enablePullDownRefresh": false
  287. }
  288. },
  289. {
  290. "path": "orderPage",
  291. "style": {
  292. "navigationBarTitleText": "卡注销退费申请",
  293. "enablePullDownRefresh": false
  294. }
  295. },
  296. {
  297. "path": "refundPage-selectCar",
  298. "style": {
  299. "navigationBarTitleText": "ETC卡注销退费申请-选择车辆",
  300. "enablePullDownRefresh": false
  301. }
  302. },
  303. {
  304. "path": "refundPage",
  305. "style": {
  306. "navigationBarTitleText": "ETC卡注销退费申请",
  307. "enablePullDownRefresh": false
  308. }
  309. },
  310. {
  311. "path": "refundPage-result",
  312. "style": {
  313. "navigationBarTitleText": "ETC卡注销退费申请",
  314. "enablePullDownRefresh": false
  315. }
  316. },
  317. {
  318. "path": "card-loss-reporting/select-car",
  319. "style": {
  320. "navigationBarTitleText": " 卡签挂失/解除挂失-选择车辆",
  321. "enablePullDownRefresh": false
  322. }
  323. },
  324. {
  325. "path": "card-loss-reporting/cardloss-confirm",
  326. "style": {
  327. "navigationBarTitleText": " 卡签挂失/解除挂失-确认",
  328. "enablePullDownRefresh": false
  329. }
  330. },
  331. {
  332. "path": "card-loss-reporting/card-result",
  333. "style": {
  334. "navigationBarTitleText": " 卡签挂失/解除挂失-结果",
  335. "enablePullDownRefresh": false
  336. }
  337. },
  338. {
  339. "path": "transfer-ownership/select-car-transfer",
  340. "style": {
  341. "navigationBarTitleText": " ETC过户-选择车辆",
  342. "enablePullDownRefresh": false
  343. }
  344. },
  345. {
  346. "path": "transfer-ownership/card-result",
  347. "style": {
  348. "navigationBarTitleText": " ETC过户-结果",
  349. "enablePullDownRefresh": false
  350. }
  351. },
  352. {
  353. "path": "transfer-ownership/transfer-confirm",
  354. "style": {
  355. "navigationBarTitleText": " ETC过户-确认",
  356. "enablePullDownRefresh": false
  357. }
  358. },
  359. {
  360. "path": "transfer-ownership/transfer-verification",
  361. "style": {
  362. "navigationBarTitleText": " ETC过户-验证",
  363. "enablePullDownRefresh": false
  364. }
  365. },
  366. {
  367. "path": "card-supplement/reissueForm",
  368. "style": {
  369. "navigationBarTitleText": " 补办ETC卡-填写",
  370. "enablePullDownRefresh": false
  371. }
  372. },
  373. {
  374. "path": "card-supplement/reissuePay",
  375. "style": {
  376. "navigationBarTitleText": "补办ETC卡-支付",
  377. "enablePullDownRefresh": false
  378. }
  379. },
  380. {
  381. "path": "card-deactivation-activation/select-car",
  382. "style": {
  383. "navigationBarTitleText": "卡签停用/启用",
  384. "enablePullDownRefresh": false
  385. }
  386. },
  387. {
  388. "path": "card-deactivation-activation/deactivation-activation-confirm",
  389. "style": {
  390. "navigationBarTitleText": "卡签停用/启用-确认",
  391. "enablePullDownRefresh": false
  392. }
  393. },
  394. {
  395. "path": "card-Renewal/select-car",
  396. "style": {
  397. "navigationBarTitleText": "卡签续期",
  398. "enablePullDownRefresh": false
  399. }
  400. },
  401. {
  402. "path": "card-Renewal/renewal-confirm",
  403. "style": {
  404. "navigationBarTitleText": "卡签续期-确认",
  405. "enablePullDownRefresh": false
  406. }
  407. },
  408. {
  409. "path": "pin-code-deblocking/select-car",
  410. "style": {
  411. "navigationBarTitleText": "卡pin码解锁",
  412. "enablePullDownRefresh": false
  413. }
  414. },
  415. {
  416. "path": "pin-code-deblocking/pin-code-confirm",
  417. "style": {
  418. "navigationBarTitleText": "卡pin码解锁-确认",
  419. "enablePullDownRefresh": false
  420. }
  421. },
  422. {
  423. "path": "ETC-log-off/select-car",
  424. "style": {
  425. "navigationBarTitleText": "ETC注销-选择车辆",
  426. "enablePullDownRefresh": false
  427. }
  428. },
  429. {
  430. "path": "ETC-log-off/log-off-confirm",
  431. "style": {
  432. "navigationBarTitleText": "ETC注销-确认",
  433. "enablePullDownRefresh": false
  434. }
  435. },
  436. {
  437. "path": "ETC-log-off/etc-log-off",
  438. "style": {
  439. "navigationBarTitleText": "ETC注销-填写",
  440. "enablePullDownRefresh": false
  441. }
  442. },
  443. {
  444. "path": "ETC-log-off/upload-card",
  445. "style": {
  446. "navigationBarTitleText": "ETC注销-选择注销原因",
  447. "enablePullDownRefresh": false
  448. }
  449. },
  450. {
  451. "path": "ETC-log-off/log-off-result",
  452. "style": {
  453. "navigationBarTitleText": "ETC注销-成功",
  454. "enablePullDownRefresh": false
  455. }
  456. },
  457. {
  458. "path": "ETC-log-off/etc-log-off-pay",
  459. "style": {
  460. "navigationBarTitleText": "ETC注销-支付",
  461. "enablePullDownRefresh": false
  462. }
  463. },
  464. {
  465. "path": "additional-equipment/select-car",
  466. "style": {
  467. "navigationBarTitleText": "增补OBU-选车",
  468. "enablePullDownRefresh": false
  469. }
  470. },
  471. {
  472. "path": "additional-equipment/additional-equipment-confirm",
  473. "style": {
  474. "navigationBarTitleText": "增补OBU-确认",
  475. "enablePullDownRefresh": false
  476. }
  477. },
  478. {
  479. "path": "additional-equipment/additional-equipment-verification",
  480. "style": {
  481. "navigationBarTitleText": "增补OBU-验证",
  482. "enablePullDownRefresh": false
  483. }
  484. },
  485. {
  486. "path": "additional-equipment/base-change-people",
  487. "style": {
  488. "navigationBarTitleText": "设备补增-个人信息",
  489. "enablePullDownRefresh": false
  490. }
  491. },
  492. {
  493. "path": "additional-equipment/car-change",
  494. "style": {
  495. "navigationBarTitleText": "设备补增-车辆信息",
  496. "enablePullDownRefresh": false
  497. }
  498. },
  499. {
  500. "path": "additional-equipment/pay-page",
  501. "style": {
  502. "navigationBarTitleText": "设备补增-车辆信息",
  503. "enablePullDownRefresh": false
  504. }
  505. },
  506. {
  507. "path": "additional-equipment/result",
  508. "style": {
  509. "navigationBarTitleText": "设备补增-支付成功",
  510. "enablePullDownRefresh": false
  511. }
  512. },
  513. {
  514. "path": "equipment-upgrade/select-car",
  515. "style": {
  516. "navigationBarTitleText": "设备升级-选择车牌",
  517. "enablePullDownRefresh": false
  518. }
  519. },
  520. {
  521. "path": "equipment-upgrade/upgrade-confirm",
  522. "style": {
  523. "navigationBarTitleText": "设备升级-确定",
  524. "enablePullDownRefresh": false
  525. }
  526. },
  527. {
  528. "path": "card-release-pending/select-car",
  529. "style": {
  530. "navigationBarTitleText": "卡签挂起-选择车牌",
  531. "enablePullDownRefresh": false
  532. }
  533. },
  534. {
  535. "path": "card-release-pending/release-pending-confirm",
  536. "style": {
  537. "navigationBarTitleText": "卡签挂起-确认",
  538. "enablePullDownRefresh": false
  539. }
  540. },
  541. {
  542. "path": "card-release-pending/verification",
  543. "style": {
  544. "navigationBarTitleText": "卡签挂起-验证",
  545. "enablePullDownRefresh": false
  546. }
  547. },
  548. {
  549. "path": "card-release-pending/result",
  550. "style": {
  551. "navigationBarTitleText": "卡签挂起-结果",
  552. "enablePullDownRefresh": false
  553. }
  554. },
  555. {
  556. "path": "result-failed",
  557. "style": {
  558. "navigationBarTitleText": "办理失败",
  559. "enablePullDownRefresh": false
  560. }
  561. },
  562. {
  563. "path": "rescind-carId/rescind-carId-select",
  564. "style": {
  565. "navigationBarTitleText": "解除车牌占用",
  566. "enablePullDownRefresh": false
  567. }
  568. },
  569. {
  570. "path": "rescind-carId/verification",
  571. "style": {
  572. "navigationBarTitleText": "验证",
  573. "enablePullDownRefresh": false
  574. }
  575. },
  576. {
  577. "path": "rescind-carId/base-change-people",
  578. "style": {
  579. "navigationBarTitleText": "确认人信息",
  580. "enablePullDownRefresh": false
  581. }
  582. },
  583. {
  584. "path": "rescind-carId/car-change",
  585. "style": {
  586. "navigationBarTitleText": "确认车信息",
  587. "enablePullDownRefresh": false
  588. }
  589. },
  590. {
  591. "path": "rescind-carId/result",
  592. "style": {
  593. "navigationBarTitleText": "解除车牌占用-验证",
  594. "enablePullDownRefresh": false
  595. }
  596. },
  597. {
  598. "path": "replace-equipment/select-car",
  599. "style": {
  600. "navigationBarTitleText": "更换ETC设备-选择车辆",
  601. "enablePullDownRefresh": false
  602. }
  603. },
  604. {
  605. "path": "replace-equipment/replace-equipment-confirm",
  606. "style": {
  607. "navigationBarTitleText": "更换ETC设备-确认",
  608. "enablePullDownRefresh": false
  609. }
  610. },
  611. {
  612. "path": "replace-equipment/verification",
  613. "style": {
  614. "navigationBarTitleText": "更换ETC设备-验证",
  615. "enablePullDownRefresh": false
  616. }
  617. },
  618. {
  619. "path": "replace-equipment/base-change-people",
  620. "style": {
  621. "navigationBarTitleText": "更换ETC设备-个人信息",
  622. "enablePullDownRefresh": false
  623. }
  624. },
  625. {
  626. "path": "replace-equipment/car-change",
  627. "style": {
  628. "navigationBarTitleText": "更换ETC设备-车辆信息",
  629. "enablePullDownRefresh": false
  630. }
  631. },
  632. {
  633. "path": "replace-equipment/form",
  634. "style": {
  635. "navigationBarTitleText": "更换ETC设备-填写信息",
  636. "enablePullDownRefresh": false
  637. }
  638. },
  639. {
  640. "path": "replace-equipment/cancellation-contract",
  641. "style": {
  642. "navigationBarTitleText": "更换ETC设备-解除合约",
  643. "enablePullDownRefresh": false
  644. }
  645. },
  646. {
  647. "path": "replace-equipment/release-products",
  648. "style": {
  649. "navigationBarTitleText": "更换ETC设备-支付账户签约",
  650. "enablePullDownRefresh": false
  651. }
  652. },
  653. {
  654. "path": "replace-equipment/bank-card-add",
  655. "style": {
  656. "navigationBarTitleText": "更换ETC设备-添加银行卡",
  657. "enablePullDownRefresh": false
  658. }
  659. },
  660. {
  661. "path": "replace-equipment/product-detail",
  662. "style": {
  663. "navigationBarTitleText": "更换ETC设备-微信签约",
  664. "enablePullDownRefresh": false
  665. }
  666. },
  667. {
  668. "path": "replace-equipment/signing-bank",
  669. "style": {
  670. "navigationBarTitleText": "更换ETC设备-扣款账户关联",
  671. "enablePullDownRefresh": false
  672. }
  673. },
  674. {
  675. "path": "replace-equipment/pay-page",
  676. "style": {
  677. "navigationBarTitleText": "更换ETC设备-支付",
  678. "enablePullDownRefresh": false
  679. }
  680. },
  681. {
  682. "path": "replace-equipment/result",
  683. "style": {
  684. "navigationBarTitleText": "更换ETC设备-结果",
  685. "enablePullDownRefresh": false
  686. }
  687. },
  688. {
  689. "path": "account-change/select-car",
  690. "style": {
  691. "navigationBarTitleText": "扣款账户变更-选择车辆",
  692. "enablePullDownRefresh": false
  693. }
  694. },
  695. {
  696. "path": "account-change/verification",
  697. "style": {
  698. "navigationBarTitleText": "扣款账户变更-验证",
  699. "enablePullDownRefresh": false
  700. }
  701. },
  702. {
  703. "path": "account-change/cancellation-contract",
  704. "style": {
  705. "navigationBarTitleText": "扣款账户变更-签约账户确认",
  706. "enablePullDownRefresh": false
  707. }
  708. },
  709. {
  710. "path": "account-change/release-products",
  711. "style": {
  712. "navigationBarTitleText": "扣款账户变更-支付账户签约",
  713. "enablePullDownRefresh": false
  714. }
  715. },
  716. {
  717. "path": "account-change/bank-card-add",
  718. "style": {
  719. "navigationBarTitleText": "扣款账户变更-添加银行卡",
  720. "enablePullDownRefresh": false
  721. }
  722. },
  723. {
  724. "path": "account-change/product-detail",
  725. "style": {
  726. "navigationBarTitleText": "扣款账户变更-签约微信",
  727. "enablePullDownRefresh": false
  728. }
  729. },
  730. {
  731. "path": "account-change/signing-bank",
  732. "style": {
  733. "navigationBarTitleText": "扣款账户关联",
  734. "enablePullDownRefresh": false
  735. }
  736. },
  737. {
  738. "path": "account-change/result",
  739. "style": {
  740. "navigationBarTitleText": "扣款账户变更-结果",
  741. "enablePullDownRefresh": false
  742. }
  743. },
  744. {
  745. "path": "to-bookkeeping-card/select-car",
  746. "style": {
  747. "navigationBarTitleText": "储值卡转记账卡-选择车辆",
  748. "enablePullDownRefresh": false
  749. }
  750. },
  751. {
  752. "path": "to-bookkeeping-card/confirm",
  753. "style": {
  754. "navigationBarTitleText": "储值卡转记账卡-确认",
  755. "enablePullDownRefresh": false
  756. }
  757. },
  758. {
  759. "path": "to-bookkeeping-card/verification",
  760. "style": {
  761. "navigationBarTitleText": "储值卡转记账卡-验证",
  762. "enablePullDownRefresh": false
  763. }
  764. },
  765. {
  766. "path": "to-bookkeeping-card/mailing_information",
  767. "style": {
  768. "navigationBarTitleText": "储值卡转记账卡-填写信息",
  769. "enablePullDownRefresh": false
  770. }
  771. },
  772. {
  773. "path": "to-bookkeeping-card/pay-page",
  774. "style": {
  775. "navigationBarTitleText": "储值卡转记账卡-支付",
  776. "enablePullDownRefresh": false
  777. }
  778. },
  779. {
  780. "path": "to-bookkeeping-card/refund",
  781. "style": {
  782. "navigationBarTitleText": "储值卡转记账卡-退费",
  783. "enablePullDownRefresh": false
  784. }
  785. },
  786. {
  787. "path": "to-bookkeeping-card/base-change-people",
  788. "style": {
  789. "navigationBarTitleText": "储值卡转记账卡-个人信息",
  790. "enablePullDownRefresh": false
  791. }
  792. },
  793. {
  794. "path": "to-bookkeeping-card/car-change",
  795. "style": {
  796. "navigationBarTitleText": "储值卡转记账卡-车辆信息",
  797. "enablePullDownRefresh": false
  798. }
  799. },
  800. {
  801. "path": "to-bookkeeping-card/release-products",
  802. "style": {
  803. "navigationBarTitleText": "储值卡转记账卡-支付账户签约",
  804. "enablePullDownRefresh": false
  805. }
  806. },
  807. {
  808. "path": "to-bookkeeping-card/bank-card-add",
  809. "style": {
  810. "navigationBarTitleText": "添加银行卡",
  811. "enablePullDownRefresh": false
  812. }
  813. },
  814. {
  815. "path": "to-bookkeeping-card/product-detail",
  816. "style": {
  817. "navigationBarTitleText": "微信签约",
  818. "enablePullDownRefresh": false
  819. }
  820. },
  821. {
  822. "path": "to-bookkeeping-card/signing-bank",
  823. "style": {
  824. "navigationBarTitleText": "扣款账户关联",
  825. "enablePullDownRefresh": false
  826. }
  827. },
  828. {
  829. "path": "to-bookkeeping-card/result",
  830. "style": {
  831. "navigationBarTitleText": "储值卡转记账卡-结果",
  832. "enablePullDownRefresh": false
  833. }
  834. },
  835. {
  836. "path": "to-bookkeeping-card/choice-product",
  837. "style": {
  838. "navigationBarTitleText": "储值卡转记账卡-选择产品",
  839. "enablePullDownRefresh": false
  840. }
  841. },
  842. {
  843. "path": "to-bookkeeping-card/choice-product-new",
  844. "style": {
  845. "navigationBarTitleText": "储值卡转记账卡-选择产品",
  846. "enablePullDownRefresh": false
  847. }
  848. },
  849. {
  850. "path": "to-bookkeeping-card/detail",
  851. "style": {
  852. "navigationBarTitleText": "储值卡转记账卡-选择详情",
  853. "enablePullDownRefresh": false
  854. }
  855. },
  856. {
  857. "path": "account-opening-template/account-opening-template",
  858. "style": {
  859. "navigationBarTitleText": "",
  860. "enablePullDownRefresh": false
  861. }
  862. }
  863. ]
  864. },
  865. {
  866. "root": "subpackage/orders", //订单管理模块
  867. "pages": [{
  868. "path": "essential-information",
  869. "style": {
  870. "navigationBarTitleText": "九州ETC",
  871. "navigationStyle": "custom",
  872. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  873. "transparentTitle": "always",
  874. "titlePenetrate": "YES",
  875. "defaultTitle": "" // 将导航栏默认的 title 置空
  876. }
  877. }
  878. },
  879. {
  880. "path": "changeInformation",
  881. "style": {
  882. "navigationBarTitleText": "修改资料"
  883. }
  884. },
  885. {
  886. "path": "signUserAgreement",
  887. "style": {
  888. "navigationBarTitleText": "签署用户协议"
  889. }
  890. },
  891. {
  892. "path": "payment/payment",
  893. "style": {
  894. "navigationBarTitleText": "支付"
  895. }
  896. },
  897. {
  898. "path": "sign/sign-up-ali",
  899. "style": {
  900. "navigationBarTitleText": "支付宝代扣"
  901. }
  902. },
  903. {
  904. "path": "deductionAccountAssociation",
  905. "style": {
  906. "navigationBarTitleText": "扣款账户关联",
  907. "navigationStyle": "custom",
  908. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  909. "transparentTitle": "always",
  910. "titlePenetrate": "YES",
  911. "defaultTitle": "" // 将导航栏默认的 title 置空
  912. }
  913. }
  914. },
  915. {
  916. "path": "release-products",
  917. "style": {
  918. "navigationBarTitleText": "支付账户签约",
  919. "navigationStyle": "custom",
  920. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  921. "transparentTitle": "always",
  922. "titlePenetrate": "YES",
  923. "defaultTitle": "" // 将导航栏默认的 title 置空
  924. }
  925. }
  926. },
  927. {
  928. "path": "order_payment",
  929. "style": {
  930. "navigationBarTitleText": "订单支付",
  931. "navigationStyle": "custom",
  932. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  933. "transparentTitle": "always",
  934. "titlePenetrate": "YES",
  935. "defaultTitle": "" // 将导航栏默认的 title 置空
  936. }
  937. }
  938. },
  939. {
  940. "path": "mpng-payment",
  941. "style": {
  942. "navigationBarTitleText": "交通银行支付"
  943. }
  944. },
  945. {
  946. "path": "addAddress",
  947. "style": {
  948. "navigationBarTitleText": "新增收货地址"
  949. }
  950. },
  951. {
  952. "path": "editAddress",
  953. "style": {
  954. "navigationBarTitleText": "修改收货地址"
  955. }
  956. },
  957. {
  958. "path": "opening-account-unit",
  959. "style": {
  960. "navigationBarTitleText": "ETC开户新办申请-单位",
  961. "navigationStyle": "custom",
  962. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  963. "transparentTitle": "always",
  964. "titlePenetrate": "YES",
  965. "defaultTitle": "" // 将导航栏默认的 title 置空
  966. }
  967. }
  968. },
  969. {
  970. "path": "opening-account-people",
  971. "style": {
  972. "navigationBarTitleText": "ETC开户新办申请-个人",
  973. "navigationStyle": "custom",
  974. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  975. "transparentTitle": "always",
  976. "titlePenetrate": "YES", // 允许点击穿透后,才能触发导航栏上的 onTap 事件
  977. "defaultTitle": "" // 将导航栏默认的 title 置空
  978. }
  979. }
  980. },
  981. {
  982. "path": "car-release",
  983. "style": {
  984. "navigationBarTitleText": "行驶证信息上传",
  985. "navigationStyle": "custom",
  986. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  987. "transparentTitle": "always",
  988. "titlePenetrate": "YES",
  989. "defaultTitle": "" // 将导航栏默认的 title 置空
  990. }
  991. }
  992. },
  993. {
  994. "path": "sign-up",
  995. "style": {
  996. "navigationBarTitleText": "微信车主服务"
  997. }
  998. },
  999. {
  1000. "path": "sign-up-ali",
  1001. "style": {
  1002. "navigationBarTitleText": "支付宝签约代扣"
  1003. }
  1004. },
  1005. {
  1006. "path": "interestsList",
  1007. "style": {
  1008. "navigationBarTitleText": "加购权益产品"
  1009. }
  1010. },
  1011. {
  1012. "path": "choice-product",
  1013. "style": {
  1014. "navigationBarTitleText": "选择产品",
  1015. "navigationStyle": "custom",
  1016. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1017. "transparentTitle": "always",
  1018. "titlePenetrate": "YES",
  1019. "defaultTitle": "" // 将导航栏默认的 title 置空
  1020. }
  1021. }
  1022. },
  1023. {
  1024. "path": "product-detail",
  1025. "style": {
  1026. "navigationBarTitleText": "产品详情",
  1027. "navigationStyle": "custom",
  1028. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1029. "transparentTitle": "always",
  1030. "titlePenetrate": "YES",
  1031. "defaultTitle": "" // 将导航栏默认的 title 置空
  1032. }
  1033. }
  1034. },
  1035. {
  1036. "path": "invoiceApply/create-invoice-header-company",
  1037. "style": {
  1038. "navigationBarTitleText": "创建抬头-单位"
  1039. }
  1040. },
  1041. {
  1042. "path": "invoiceApply/create-invoice-header-individual",
  1043. "style": {
  1044. "navigationBarTitleText": "创建抬头-个人"
  1045. }
  1046. },
  1047. {
  1048. "path": "invoiceApply/edit-invoice-header-company",
  1049. "style": {
  1050. "navigationBarTitleText": "编辑抬头-单位"
  1051. }
  1052. },
  1053. {
  1054. "path": "invoiceApply/edit-invoice-header-individual",
  1055. "style": {
  1056. "navigationBarTitleText": "编辑抬头-个人"
  1057. }
  1058. },
  1059. {
  1060. "path": "invoiceApply/invoice-header",
  1061. "style": {
  1062. "navigationBarTitleText": "选择抬头"
  1063. }
  1064. },
  1065. {
  1066. "path": "invoiceApply/invoiceList",
  1067. "style": {
  1068. "navigationBarTitleText": "开票申请"
  1069. }
  1070. },
  1071. {
  1072. "path": "invoiceApply/invoice-step1",
  1073. "style": {
  1074. "navigationBarTitleText": "开票申请"
  1075. }
  1076. },
  1077. {
  1078. "path": "invoiceApply/invoice-step2",
  1079. "style": {
  1080. "navigationBarTitleText": "开票申请"
  1081. }
  1082. },
  1083. {
  1084. "path": "invoice-download",
  1085. "style": {
  1086. "navigationBarTitleText": "下载发票"
  1087. }
  1088. },
  1089. {
  1090. "path": "Invoice-mannager",
  1091. "style": {
  1092. "navigationBarTitleText": "发票管理"
  1093. }
  1094. },
  1095. {
  1096. "path": "moreHighMsg/moreHighMsg",
  1097. "style": {
  1098. "navigationBarTitleText": "高速快讯",
  1099. "enablePullDownRefresh": true
  1100. }
  1101. },
  1102. {
  1103. "path": "moreHighMsg/textDetails",
  1104. "style": {
  1105. "navigationBarTitleText": "文本详情",
  1106. "enablePullDownRefresh": true
  1107. }
  1108. },
  1109. {
  1110. "path": "invoicing-record",
  1111. "style": {
  1112. "navigationBarTitleText": "开票记录"
  1113. }
  1114. },
  1115. {
  1116. "path": "verification-apply",
  1117. "style": {
  1118. "navigationBarTitleText": "验证申请"
  1119. }
  1120. },
  1121. {
  1122. "path": "apply-ex-goods",
  1123. "style": {
  1124. "navigationBarTitleText": "申请换货"
  1125. }
  1126. },
  1127. {
  1128. "path": "apply-ex-goods-step1",
  1129. "style": {
  1130. "navigationBarTitleText": "申请换货"
  1131. }
  1132. },
  1133. {
  1134. "path": "apply-return-goods",
  1135. "style": {
  1136. "navigationBarTitleText": "申请退货"
  1137. }
  1138. },
  1139. {
  1140. "path": "cancel-order",
  1141. "style": {
  1142. "navigationBarTitleText": "取消订单"
  1143. }
  1144. },
  1145. {
  1146. "path": "cardAmountDetail",
  1147. "style": {
  1148. "navigationBarTitleText": "查看进度"
  1149. }
  1150. },
  1151. {
  1152. "path": "cardAmount",
  1153. "style": {
  1154. "navigationBarTitleText": "补卡额申请"
  1155. }
  1156. },
  1157. {
  1158. "path": "flowingWater",
  1159. "style": {
  1160. "navigationBarTitleText": "补卡额圈存"
  1161. }
  1162. },
  1163. {
  1164. "path": "flowingWater-selectCar",
  1165. "style": {
  1166. "navigationBarTitleText": "补卡额圈存-选择车辆"
  1167. }
  1168. },
  1169. {
  1170. "path": "flowingWater-result",
  1171. "style": {
  1172. "navigationBarTitleText": "补卡额-办理成功"
  1173. }
  1174. },
  1175. {
  1176. "path": "order-cardQuota-apply",
  1177. "style": {
  1178. "navigationBarTitleText": "补卡额申请",
  1179. "navigationStyle": "custom",
  1180. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1181. "transparentTitle": "always",
  1182. "titlePenetrate": "YES",
  1183. "defaultTitle": "" // 将导航栏默认的 title 置空
  1184. }
  1185. }
  1186. },
  1187. {
  1188. "path": "order-cardQuota-progress",
  1189. "style": {
  1190. "navigationBarTitleText": "查看进度"
  1191. }
  1192. },
  1193. {
  1194. "path": "order-confirm-receipt",
  1195. "style": {
  1196. "navigationBarTitleText": "确认收货"
  1197. }
  1198. },
  1199. {
  1200. "path": "order-detail-logistics",
  1201. "style": {
  1202. "navigationBarTitleText": "查看物流"
  1203. }
  1204. },
  1205. {
  1206. "path": "order-details-cancel-numberplate",
  1207. "style": {
  1208. "navigationBarTitleText": "订单详情"
  1209. }
  1210. },
  1211. {
  1212. "path": "order-details-card-sign",
  1213. "style": {
  1214. "navigationBarTitleText": "订单详情"
  1215. }
  1216. },
  1217. {
  1218. "path": "order-details-edit-car",
  1219. "style": {
  1220. "navigationBarTitleText": "订单详情"
  1221. }
  1222. },
  1223. {
  1224. "path": "order-details-logoff-etc",
  1225. "style": {
  1226. "navigationBarTitleText": "订单详情"
  1227. }
  1228. },
  1229. {
  1230. "path": "order-details-new",
  1231. "style": {
  1232. "navigationBarTitleText": "订单详情"
  1233. }
  1234. },
  1235. {
  1236. "path": "order-details-obu",
  1237. "style": {
  1238. "navigationBarTitleText": "订单详情"
  1239. }
  1240. },
  1241. {
  1242. "path": "order-details-recharge",
  1243. "style": {
  1244. "navigationBarTitleText": "订单详情"
  1245. }
  1246. },
  1247. {
  1248. "path": "order-evaluate",
  1249. "style": {
  1250. "navigationBarTitleText": "评价"
  1251. }
  1252. },
  1253. {
  1254. "path": "order-evaluate-product",
  1255. "style": {
  1256. "navigationBarTitleText": "产品评价"
  1257. }
  1258. },
  1259. {
  1260. "path": "order-evaluate-salesman",
  1261. "style": {
  1262. "navigationBarTitleText": "满意度评价"
  1263. }
  1264. },
  1265. {
  1266. "path": "payment",
  1267. "style": {
  1268. "navigationBarTitleText": "收银",
  1269. "navigationStyle": "custom",
  1270. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1271. "transparentTitle": "always",
  1272. "titlePenetrate": "YES",
  1273. "defaultTitle": "" // 将导航栏默认的 title 置空
  1274. }
  1275. }
  1276. },
  1277. {
  1278. "path": "refund-confirm",
  1279. "style": {
  1280. "navigationBarTitleText": "欠费补缴",
  1281. "navigationStyle": "custom",
  1282. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1283. "transparentTitle": "always",
  1284. "titlePenetrate": "YES",
  1285. "defaultTitle": "" // 将导航栏默认的 title 置空
  1286. }
  1287. }
  1288. },
  1289. {
  1290. "path": "refund-deposit-card",
  1291. "style": {
  1292. "navigationBarTitleText": "储值卡圈存-退款"
  1293. }
  1294. },
  1295. {
  1296. "path": "refund-deposit-card-selectCar",
  1297. "style": {
  1298. "navigationBarTitleText": "储值卡圈存-退款-选择车辆"
  1299. }
  1300. },
  1301. {
  1302. "path": "refund-order-balance",
  1303. "style": {
  1304. "navigationBarTitleText": "余额补零",
  1305. "navigationStyle": "custom",
  1306. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1307. "transparentTitle": "always",
  1308. "titlePenetrate": "YES",
  1309. "defaultTitle": "" // 将导航栏默认的 title 置空
  1310. }
  1311. }
  1312. }, {
  1313. "path": "verify/verify-phone/verify-phone",
  1314. "style": {
  1315. "navigationBarTitleText": "获取短信验证码",
  1316. "enablePullDownRefresh": false
  1317. }
  1318. }, {
  1319. "path": "verify/verify-phone-code/verify-phone-code",
  1320. "style": {
  1321. "navigationBarTitleText": "短信验证码校验",
  1322. "enablePullDownRefresh": false
  1323. }
  1324. }
  1325. ]
  1326. },
  1327. {
  1328. "root": "subpackage/personal-center", //个人中心
  1329. "pages": [{
  1330. "path": "get-code",
  1331. "style": {
  1332. "navigationBarTitleText": "验证",
  1333. "enablePullDownRefresh": false
  1334. }
  1335. },
  1336. {
  1337. "path": "webview",
  1338. "style": {
  1339. "navigationBarTitleText": "",
  1340. "enablePullDownRefresh": false
  1341. }
  1342. },
  1343. {
  1344. "path": "consumption-record",
  1345. "style": {
  1346. "navigationBarTitleText": "消费明细",
  1347. "enablePullDownRefresh": false
  1348. }
  1349. },
  1350. {
  1351. "path": "remind/remind",
  1352. "style": {
  1353. "navigationBarTitleText": "服务提醒",
  1354. "enablePullDownRefresh": false
  1355. }
  1356. },
  1357. {
  1358. "path": "remind/satisfaction-evaluate",
  1359. "style": {
  1360. "navigationBarTitleText": "满意度评价"
  1361. }
  1362. },
  1363. {
  1364. "path": "remind/evaluate-list",
  1365. "style": {
  1366. "navigationBarTitleText": "评价列表"
  1367. }
  1368. },
  1369. {
  1370. "path": "search/carDetail",
  1371. "style": {
  1372. "navigationBarTitleText": "车辆详情"
  1373. }
  1374. },
  1375. {
  1376. "path": "search/etcFlowingWater",
  1377. "style": {
  1378. "navigationBarTitleText": "ETC通行流水记录"
  1379. }
  1380. },
  1381. {
  1382. "path": "search/select-car",
  1383. "style": {
  1384. "navigationBarTitleText": "选择车辆"
  1385. }
  1386. },
  1387. {
  1388. "path": "search/select-card",
  1389. "style": {
  1390. "navigationBarTitleText": "选择卡号"
  1391. }
  1392. },
  1393. {
  1394. "path": "search/unitUser",
  1395. "style": {
  1396. "navigationBarTitleText": "单位用户信息"
  1397. }
  1398. },
  1399. {
  1400. "path": "search/userInfo",
  1401. "style": {
  1402. "navigationBarTitleText": "个人用户信息"
  1403. }
  1404. },
  1405. {
  1406. "path": "search/obuCancel",
  1407. "style": {
  1408. "navigationBarTitleText": "卡签注销记录"
  1409. }
  1410. },
  1411. {
  1412. "path": "search/cardCancel",
  1413. "style": {
  1414. "navigationBarTitleText": "卡签注销记录"
  1415. }
  1416. },
  1417. {
  1418. "path": "capital/card-loop",
  1419. "style": {
  1420. "navigationBarTitleText": "存储卡圈存"
  1421. }
  1422. },
  1423. {
  1424. "path": "help/help",
  1425. "style": {
  1426. "navigationBarTitleText": "常见问题"
  1427. }
  1428. },
  1429. {
  1430. "path": "old-user",
  1431. "style": {
  1432. "navigationBarTitleText": "历史用户申请",
  1433. "enablePullDownRefresh": true
  1434. }
  1435. },
  1436. {
  1437. "path": "address",
  1438. "style": {
  1439. "navigationBarTitleText": "邮寄地址",
  1440. "enablePullDownRefresh": true
  1441. }
  1442. },
  1443. {
  1444. "path": "install-activation-order",
  1445. "style": {
  1446. "navigationBarTitleText": "安装激活-选择订单",
  1447. "enablePullDownRefresh": true
  1448. }
  1449. },
  1450. {
  1451. "path": "car-submit-record",
  1452. "style": {
  1453. "navigationBarTitleText": "车辆提交记录"
  1454. }
  1455. },
  1456. {
  1457. "path": "official-car-issue",
  1458. "style": {
  1459. "navigationBarTitleText": "公务车发行"
  1460. }
  1461. },
  1462. {
  1463. "path": "query-company-list",
  1464. "style": {
  1465. "navigationBarTitleText": "单位查询"
  1466. }
  1467. },
  1468. {
  1469. "path": "add-company",
  1470. "style": {
  1471. "navigationBarTitleText": "新增单位"
  1472. }
  1473. },
  1474. {
  1475. "path": "add-car",
  1476. "style": {
  1477. "navigationBarTitleText": "新增车辆"
  1478. }
  1479. },
  1480. {
  1481. "path": "official-car-issue-result",
  1482. "style": {
  1483. "navigationBarTitleText": "公务车发行-查询结果"
  1484. }
  1485. },
  1486. {
  1487. "path": "trajectory/trajectory",
  1488. "style": {
  1489. "navigationBarTitleText": "我的通行"
  1490. }
  1491. },
  1492. {
  1493. "path": "trajectory/see-month",
  1494. "style": {
  1495. "navigationBarTitleText": "通行记录"
  1496. }
  1497. },
  1498. {
  1499. "path": "vehicle-information",
  1500. "style": {
  1501. "navigationBarTitleText": "车辆信息"
  1502. }
  1503. },
  1504. {
  1505. "path": "change-password",
  1506. "style": {
  1507. "navigationBarTitleText": "修改密码"
  1508. }
  1509. },
  1510. {
  1511. "path": "progress-query/my-etc",
  1512. "style": {
  1513. "navigationBarTitleText": "我的ETC"
  1514. }
  1515. },
  1516. {
  1517. "path": "setting/setting",
  1518. "style": {
  1519. "navigationBarTitleText": "设置"
  1520. }
  1521. },
  1522. {
  1523. "path": "setting/information-deletion",
  1524. "style": {
  1525. "navigationBarTitleText": "设置-个人信息删除"
  1526. }
  1527. },
  1528. {
  1529. "path": "setting/permission-management",
  1530. "style": {
  1531. "navigationBarTitleText": "设置-权限管理"
  1532. }
  1533. },
  1534. {
  1535. "path": "setting/account-cancellation",
  1536. "style": {
  1537. "navigationBarTitleText": "设置-注销账户"
  1538. }
  1539. },
  1540. {
  1541. "path": "setting/personal-information/corrections",
  1542. "style": {
  1543. "navigationBarTitleText": "设置-个人信息-变更"
  1544. }
  1545. },
  1546. {
  1547. "path": "setting/personal-information/user-change",
  1548. "style": {
  1549. "navigationBarTitleText": "设置-个人信息-修改"
  1550. }
  1551. },
  1552. {
  1553. "path": "setting/personal-information/user-card",
  1554. "style": {
  1555. "navigationBarTitleText": "设置-个人信息-身份证"
  1556. }
  1557. },
  1558. {
  1559. "path": "setting/car-information/car-manage",
  1560. "style": {
  1561. "navigationBarTitleText": "设置-车辆信息-管理"
  1562. }
  1563. },
  1564. {
  1565. "path": "setting/car-information/corrections",
  1566. "style": {
  1567. "navigationBarTitleText": "设置-车辆信息-变更"
  1568. }
  1569. },
  1570. {
  1571. "path": "setting/car-information/car-card",
  1572. "style": {
  1573. "navigationBarTitleText": "设置-车辆信息-行驶证"
  1574. }
  1575. },
  1576. {
  1577. "path": "setting/car-information/car-change",
  1578. "style": {
  1579. "navigationBarTitleText": "设置-车辆信息-修改"
  1580. }
  1581. },
  1582. {
  1583. "path": "setting/car-information/car-create",
  1584. "style": {
  1585. "navigationBarTitleText": "设置-车辆信息-添加"
  1586. }
  1587. },
  1588. {
  1589. "path": "setting/bank-card/bank-card",
  1590. "style": {
  1591. "navigationBarTitleText": "银行卡管理"
  1592. }
  1593. },
  1594. {
  1595. "path": "setting/bank-card/bank-card-add",
  1596. "style": {
  1597. "navigationBarTitleText": "银行卡新增"
  1598. }
  1599. },
  1600. {
  1601. "path": "setting/addressManager",
  1602. "style": {
  1603. "navigationBarTitleText": "地址管理"
  1604. }
  1605. },
  1606. {
  1607. "path": "setting/info-export",
  1608. "style": {
  1609. "navigationBarTitleText": "信息副本导出"
  1610. }
  1611. },
  1612. {
  1613. "path": "setting/user-agreement",
  1614. "style": {
  1615. "navigationBarTitleText": "用户协议"
  1616. }
  1617. },
  1618. {
  1619. "path": "setting/conceal-agreement",
  1620. "style": {
  1621. "navigationBarTitleText": "隐私政策"
  1622. }
  1623. },
  1624. {
  1625. "path": "setting/risk-agreement",
  1626. "style": {
  1627. "navigationBarTitleText": "风险提示告知书"
  1628. }
  1629. },
  1630. {
  1631. "path": "setting/usage-instructions",
  1632. "style": {
  1633. "navigationBarTitleText": "权限使用说明"
  1634. }
  1635. },
  1636. {
  1637. "path": "setting/info_connect",
  1638. "style": {
  1639. "navigationBarTitleText": "个人信息收集清单"
  1640. }
  1641. },
  1642. {
  1643. "path": "setting/change-phone",
  1644. "style": {
  1645. "navigationBarTitleText": "修改手机号"
  1646. }
  1647. },
  1648. {
  1649. "path": "setting/change-phone-code",
  1650. "style": {
  1651. "navigationBarTitleText": "修改手机号"
  1652. }
  1653. },
  1654. {
  1655. "path": "setting/change-phone-code-ali",
  1656. "style": {
  1657. "navigationBarTitleText": "修改手机号"
  1658. }
  1659. },
  1660. {
  1661. "path": "excel",
  1662. "style": {
  1663. "navigationBarTitleText": "表格报表",
  1664. "enablePullDownRefresh": false
  1665. }
  1666. }
  1667. ]
  1668. },
  1669. {
  1670. "root": "login", //登录模块
  1671. "pages": [{
  1672. "path": "login",
  1673. "style": {
  1674. "navigationBarTitleText": "登录"
  1675. }
  1676. },
  1677. {
  1678. "path": "agreement",
  1679. "style": {
  1680. "navigationBarTitleText": "平台用户服务隐私协议"
  1681. }
  1682. },
  1683. {
  1684. "path": "register-step1",
  1685. "style": {
  1686. "navigationBarTitleText": "注册第一步"
  1687. }
  1688. },
  1689. {
  1690. "path": "register-step2",
  1691. "style": {
  1692. "navigationBarTitleText": "注册第二步"
  1693. }
  1694. },
  1695. {
  1696. "path": "register-step2-ali",
  1697. "style": {
  1698. "navigationBarTitleText": "注册第二步"
  1699. }
  1700. },
  1701. {
  1702. "path": "register-step3",
  1703. "style": {
  1704. "navigationBarTitleText": "注册第三步"
  1705. }
  1706. },
  1707. {
  1708. "path": "forget-pwd-step1",
  1709. "style": {
  1710. "navigationBarTitleText": "忘记密码第一步"
  1711. }
  1712. },
  1713. {
  1714. "path": "forget-pwd-step2",
  1715. "style": {
  1716. "navigationBarTitleText": "忘记密码第二步"
  1717. }
  1718. },
  1719. {
  1720. "path": "forget-pwd-step2-ali",
  1721. "style": {
  1722. "navigationBarTitleText": "忘记密码第二步"
  1723. }
  1724. },
  1725. {
  1726. "path": "forget-pwd-step3",
  1727. "style": {
  1728. "navigationBarTitleText": "忘记密码第三步"
  1729. }
  1730. }
  1731. ]
  1732. },
  1733. {
  1734. //其他服务模块
  1735. "root": "subpackage/service",
  1736. "pages": [{
  1737. "path": "trajectory-map",
  1738. "style": {
  1739. "navigationBarTitleText": "我的轨迹"
  1740. }
  1741. },
  1742. {
  1743. "path": "statistics/index",
  1744. "style": {
  1745. "navigationBarTitleText": "发行数据统计"
  1746. }
  1747. }
  1748. ]
  1749. }
  1750. ],
  1751. "tabBar": {
  1752. "color": "#666666",
  1753. "selectedColor": "#00b38a",
  1754. "borderStyle": "black",
  1755. "backgroundColor": "#ffffff",
  1756. "list": [{
  1757. "pagePath": "pages/index/index",
  1758. "iconPath": "static/image/home.png",
  1759. "selectedIconPath": "static/image/home-on.png",
  1760. "text": "首页"
  1761. },
  1762. {
  1763. "pagePath": "pages/order/order",
  1764. "iconPath": "static/image/order.png",
  1765. "selectedIconPath": "static/image/order-on.png",
  1766. "text": "订单管理"
  1767. },
  1768. {
  1769. "pagePath": "pages/user/user",
  1770. "iconPath": "static/image/user.png",
  1771. "selectedIconPath": "static/image/user-on.png",
  1772. "text": "我的"
  1773. }
  1774. ]
  1775. },
  1776. "eslintConfig": {
  1777. "parser": "babel-eslint"
  1778. },
  1779. "globalStyle": {
  1780. "navigationBarTextStyle": "black",
  1781. "navigationBarTitleText": "九州ETC",
  1782. "navigationBarBackgroundColor": "#FFFFFF",
  1783. "backgroundColor": "#eef7f7"
  1784. },
  1785. "uniIdRouter": {},
  1786. "condition": {
  1787. //模式配置,仅开发期间生效
  1788. "current": 0, //当前激活的模式(list 的索引项)
  1789. "list": [{
  1790. "name": "app", //模式名称
  1791. "path": "pages/index/index", //启动页面,必选
  1792. "query": "" //启动参数,在页面的onLoad函数里面得到
  1793. }]
  1794. }
  1795. }