您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pages.json 46KB

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