You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pages.json 44KB

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