Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

pages.json 48KB

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