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 48KB

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