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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019
  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. }
  693. },
  694. {
  695. "path": "replace-equipment/order-payment",
  696. "style": {
  697. "navigationBarTitleText": "支付",
  698. "enablePullDownRefresh": false
  699. }
  700. },
  701. {
  702. "path": "replace-equipment/verification",
  703. "style": {
  704. "navigationBarTitleText": "更换ETC设备-验证",
  705. "enablePullDownRefresh": false
  706. }
  707. },
  708. {
  709. "path": "replace-equipment/verification-huanhuo",
  710. "style": {
  711. "navigationBarTitleText": "更换ETC设备-换货-验证",
  712. "enablePullDownRefresh": false
  713. }
  714. },
  715. {
  716. "path": "replace-equipment/base-change-people",
  717. "style": {
  718. "navigationBarTitleText": "更换ETC设备-个人信息",
  719. "enablePullDownRefresh": false
  720. }
  721. },
  722. {
  723. "path": "replace-equipment/car-change",
  724. "style": {
  725. "navigationBarTitleText": "更换ETC设备-车辆信息",
  726. "enablePullDownRefresh": false
  727. }
  728. },
  729. {
  730. "path": "replace-equipment/form",
  731. "style": {
  732. "navigationBarTitleText": "更换ETC设备-填写信息",
  733. "enablePullDownRefresh": false
  734. }
  735. },
  736. {
  737. "path": "replace-equipment/form-huanhuo",
  738. "style": {
  739. "navigationBarTitleText": "换货-填写信息",
  740. "enablePullDownRefresh": false
  741. }
  742. },
  743. {
  744. "path": "replace-equipment/cancellation-contract",
  745. "style": {
  746. "navigationBarTitleText": "更换ETC设备-解除合约",
  747. "enablePullDownRefresh": false
  748. }
  749. },
  750. {
  751. "path": "replace-equipment/release-products",
  752. "style": {
  753. "navigationBarTitleText": "更换ETC设备-支付账户签约",
  754. "enablePullDownRefresh": false
  755. }
  756. },
  757. {
  758. "path": "replace-equipment/bank-card-add",
  759. "style": {
  760. "navigationBarTitleText": "更换ETC设备-添加银行卡",
  761. "enablePullDownRefresh": false
  762. }
  763. },
  764. {
  765. "path": "replace-equipment/product-detail",
  766. "style": {
  767. "navigationBarTitleText": "更换ETC设备-微信签约",
  768. "enablePullDownRefresh": false
  769. }
  770. },
  771. {
  772. "path": "replace-equipment/signing-bank",
  773. "style": {
  774. "navigationBarTitleText": "更换ETC设备-扣款账户关联",
  775. "enablePullDownRefresh": false
  776. }
  777. },
  778. {
  779. "path": "replace-equipment/pay-page",
  780. "style": {
  781. "navigationBarTitleText": "更换ETC设备-支付",
  782. "enablePullDownRefresh": false
  783. }
  784. },
  785. {
  786. "path": "replace-equipment/result",
  787. "style": {
  788. "navigationBarTitleText": "更换ETC设备-结果",
  789. "enablePullDownRefresh": false
  790. }
  791. },
  792. {
  793. "path": "account-change/select-car",
  794. "style": {
  795. "navigationBarTitleText": "扣款账户变更-选择车辆",
  796. "enablePullDownRefresh": false
  797. }
  798. },
  799. {
  800. "path": "account-change/verification",
  801. "style": {
  802. "navigationBarTitleText": "扣款账户变更-验证",
  803. "enablePullDownRefresh": false
  804. }
  805. },
  806. {
  807. "path": "account-change/cancellation-contract",
  808. "style": {
  809. "navigationBarTitleText": "扣款账户变更-签约账户确认",
  810. "enablePullDownRefresh": false
  811. }
  812. },
  813. {
  814. "path": "account-change/release-products",
  815. "style": {
  816. "navigationBarTitleText": "扣款账户变更-支付账户签约",
  817. "enablePullDownRefresh": false
  818. }
  819. },
  820. {
  821. "path": "account-change/bank-card-add",
  822. "style": {
  823. "navigationBarTitleText": "扣款账户变更-添加银行卡",
  824. "enablePullDownRefresh": false
  825. }
  826. },
  827. {
  828. "path": "account-change/product-detail",
  829. "style": {
  830. "navigationBarTitleText": "扣款账户变更-签约微信",
  831. "enablePullDownRefresh": false
  832. }
  833. },
  834. {
  835. "path": "account-change/signing-bank",
  836. "style": {
  837. "navigationBarTitleText": "扣款账户关联",
  838. "enablePullDownRefresh": false
  839. }
  840. },
  841. {
  842. "path": "account-change/result",
  843. "style": {
  844. "navigationBarTitleText": "扣款账户变更-结果",
  845. "enablePullDownRefresh": false
  846. }
  847. },
  848. {
  849. "path": "to-bookkeeping-card/confirm",
  850. "style": {
  851. "navigationBarTitleText": "储值卡转记账卡-确认",
  852. "enablePullDownRefresh": false
  853. }
  854. },
  855. {
  856. "path": "to-bookkeeping-card/verification",
  857. "style": {
  858. "navigationBarTitleText": "储值卡转记账卡-验证",
  859. "enablePullDownRefresh": false
  860. }
  861. },
  862. {
  863. "path": "to-bookkeeping-card/mailing_information",
  864. "style": {
  865. "navigationBarTitleText": "储值卡转记账卡-填写信息",
  866. "enablePullDownRefresh": false
  867. }
  868. },
  869. {
  870. "path": "to-bookkeeping-card/pay-page",
  871. "style": {
  872. "navigationBarTitleText": "储值卡转记账卡-支付",
  873. "enablePullDownRefresh": false
  874. }
  875. },
  876. {
  877. "path": "to-bookkeeping-card/refund",
  878. "style": {
  879. "navigationBarTitleText": "储值卡转记账卡-退费",
  880. "enablePullDownRefresh": false
  881. }
  882. },
  883. {
  884. "path": "to-bookkeeping-card/base-change-people",
  885. "style": {
  886. "navigationBarTitleText": "储值卡转记账卡-个人信息",
  887. "enablePullDownRefresh": false
  888. }
  889. },
  890. {
  891. "path": "to-bookkeeping-card/car-change",
  892. "style": {
  893. "navigationBarTitleText": "储值卡转记账卡-车辆信息",
  894. "enablePullDownRefresh": false
  895. }
  896. },
  897. {
  898. "path": "to-bookkeeping-card/release-products",
  899. "style": {
  900. "navigationBarTitleText": "储值卡转记账卡-支付账户签约",
  901. "enablePullDownRefresh": false
  902. }
  903. },
  904. {
  905. "path": "to-bookkeeping-card/bank-card-add",
  906. "style": {
  907. "navigationBarTitleText": "添加银行卡",
  908. "enablePullDownRefresh": false
  909. }
  910. },
  911. {
  912. "path": "to-bookkeeping-card/product-detail",
  913. "style": {
  914. "navigationBarTitleText": "微信签约",
  915. "enablePullDownRefresh": false
  916. }
  917. },
  918. {
  919. "path": "to-bookkeeping-card/signing-bank",
  920. "style": {
  921. "navigationBarTitleText": "扣款账户关联",
  922. "enablePullDownRefresh": false
  923. }
  924. },
  925. {
  926. "path": "to-bookkeeping-card/result",
  927. "style": {
  928. "navigationBarTitleText": "储值卡转记账卡-结果",
  929. "enablePullDownRefresh": false
  930. }
  931. },
  932. {
  933. "path": "to-bookkeeping-card/choice-product-new",
  934. "style": {
  935. "navigationBarTitleText": "储值卡转记账卡-选择产品",
  936. "enablePullDownRefresh": false
  937. }
  938. },
  939. {
  940. "path": "to-bookkeeping-card/detail",
  941. "style": {
  942. "navigationBarTitleText": "储值卡转记账卡-选择详情",
  943. "enablePullDownRefresh": false
  944. }
  945. },
  946. {
  947. "path": "account-opening-template/account-opening-template",
  948. "style": {
  949. "navigationBarTitleText": "",
  950. "enablePullDownRefresh": false
  951. }
  952. }
  953. ]
  954. },
  955. {
  956. "root": "subpackage/orders", //订单管理模块
  957. "pages": [
  958. {
  959. "path": "essential-information-two",
  960. "style": {
  961. "navigationBarTitleText": "九州ETC",
  962. "navigationStyle": "custom",
  963. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  964. "transparentTitle": "always",
  965. "titlePenetrate": "YES",
  966. "defaultTitle": "" // 将导航栏默认的 title 置空
  967. }
  968. }
  969. },
  970. {
  971. "path": "essential-information",
  972. "style": {
  973. "navigationBarTitleText": "九州ETC",
  974. "navigationStyle": "custom",
  975. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  976. "transparentTitle": "always",
  977. "titlePenetrate": "YES",
  978. "defaultTitle": "" // 将导航栏默认的 title 置空
  979. }
  980. }
  981. },
  982. {
  983. "path": "signUserAgreement",
  984. "style": {
  985. "navigationBarTitleText": "签署用户协议"
  986. }
  987. },
  988. {
  989. "path": "payment/payment",
  990. "style": {
  991. "navigationBarTitleText": "支付"
  992. }
  993. },
  994. {
  995. "path": "sign/sign-up-ali",
  996. "style": {
  997. "navigationBarTitleText": "支付宝代扣"
  998. }
  999. },
  1000. {
  1001. "path": "deductionAccountAssociation",
  1002. "style": {
  1003. "navigationBarTitleText": "扣款账户关联",
  1004. "navigationStyle": "custom",
  1005. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1006. "transparentTitle": "always",
  1007. "titlePenetrate": "YES",
  1008. "defaultTitle": "" // 将导航栏默认的 title 置空
  1009. }
  1010. }
  1011. },
  1012. {
  1013. "path": "release-products",
  1014. "style": {
  1015. "navigationBarTitleText": "支付账户签约",
  1016. "navigationStyle": "custom",
  1017. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1018. "transparentTitle": "always",
  1019. "titlePenetrate": "YES",
  1020. "defaultTitle": "" // 将导航栏默认的 title 置空
  1021. }
  1022. }
  1023. },
  1024. {
  1025. "path": "order_payment",
  1026. "style": {
  1027. "navigationBarTitleText": "订单支付",
  1028. "navigationStyle": "custom",
  1029. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1030. "transparentTitle": "always",
  1031. "titlePenetrate": "YES",
  1032. "defaultTitle": "" // 将导航栏默认的 title 置空
  1033. }
  1034. }
  1035. },
  1036. {
  1037. "path": "mpng-payment",
  1038. "style": {
  1039. "navigationBarTitleText": "交通银行支付"
  1040. }
  1041. },
  1042. {
  1043. "path": "addAddress",
  1044. "style": {
  1045. "navigationBarTitleText": "新增收货地址"
  1046. }
  1047. },
  1048. {
  1049. "path": "editAddress",
  1050. "style": {
  1051. "navigationBarTitleText": "修改收货地址"
  1052. }
  1053. },
  1054. {
  1055. "path": "opening-account-unit",
  1056. "style": {
  1057. "navigationBarTitleText": "ETC开户新办申请-单位",
  1058. "navigationStyle": "custom",
  1059. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1060. "transparentTitle": "always",
  1061. "titlePenetrate": "YES",
  1062. "defaultTitle": "" // 将导航栏默认的 title 置空
  1063. }
  1064. }
  1065. },
  1066. {
  1067. "path": "opening-account-people",
  1068. "style": {
  1069. "navigationBarTitleText": "ETC开户新办申请-个人",
  1070. "navigationStyle": "custom",
  1071. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1072. "transparentTitle": "always",
  1073. "titlePenetrate": "YES", // 允许点击穿透后,才能触发导航栏上的 onTap 事件
  1074. "defaultTitle": "" // 将导航栏默认的 title 置空
  1075. }
  1076. }
  1077. },
  1078. {
  1079. "path": "car-release",
  1080. "style": {
  1081. "navigationBarTitleText": "行驶证信息上传",
  1082. "navigationStyle": "custom",
  1083. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1084. "transparentTitle": "always",
  1085. "titlePenetrate": "YES",
  1086. "defaultTitle": "" // 将导航栏默认的 title 置空
  1087. }
  1088. }
  1089. },
  1090. {
  1091. "path": "sign-up",
  1092. "style": {
  1093. "navigationBarTitleText": "微信车主服务"
  1094. }
  1095. },
  1096. {
  1097. "path": "sign-up-ali",
  1098. "style": {
  1099. "navigationBarTitleText": "支付宝签约代扣"
  1100. }
  1101. },
  1102. {
  1103. "path": "interestsList",
  1104. "style": {
  1105. "navigationBarTitleText": "权益简介" //加购权益产品
  1106. }
  1107. },
  1108. {
  1109. "path": "choice-product",
  1110. "style": {
  1111. "navigationBarTitleText": "选择产品",
  1112. "navigationStyle": "custom",
  1113. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1114. "transparentTitle": "always",
  1115. "titlePenetrate": "YES",
  1116. "defaultTitle": "" // 将导航栏默认的 title 置空
  1117. }
  1118. }
  1119. },
  1120. {
  1121. "path": "product-detail",
  1122. "style": {
  1123. "navigationBarTitleText": "产品详情",
  1124. "navigationStyle": "custom",
  1125. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1126. "transparentTitle": "always",
  1127. "titlePenetrate": "YES",
  1128. "defaultTitle": "" // 将导航栏默认的 title 置空
  1129. }
  1130. }
  1131. },
  1132. {
  1133. "path": "invoiceApply/invoice-header",
  1134. "style": {
  1135. "navigationBarTitleText": "选择抬头"
  1136. }
  1137. },
  1138. {
  1139. "path": "invoiceApply/invoiceList",
  1140. "style": {
  1141. "navigationBarTitleText": "开票记录"
  1142. }
  1143. },
  1144. {
  1145. "path": "invoiceApply/invoice-step1",
  1146. "style": {
  1147. "navigationBarTitleText": "开票申请"
  1148. }
  1149. },
  1150. {
  1151. "path": "invoiceApply/invoice-step2",
  1152. "style": {
  1153. "navigationBarTitleText": "开票申请"
  1154. }
  1155. },
  1156. {
  1157. "path": "invoiceApply/Invoice-mannager",
  1158. "style": {
  1159. "navigationBarTitleText": "选择发票订单类型"
  1160. }
  1161. },
  1162. {
  1163. "path": "invoiceApply/invoice-content",
  1164. "style": {
  1165. "navigationBarTitleText": "选择订单开票"
  1166. }
  1167. },
  1168. {
  1169. "path": "invoiceApply/invoice-header-list",
  1170. "style": {
  1171. "navigationBarTitleText": "发票抬头"
  1172. }
  1173. },
  1174. {
  1175. "path": "invoiceApply/invoice-header-add",
  1176. "style": {
  1177. "navigationBarTitleText": "新增发票抬头"
  1178. }
  1179. },
  1180. {
  1181. "path": "invoiceApply/invoice-header-edit",
  1182. "style": {
  1183. "navigationBarTitleText": "编辑发票抬头"
  1184. }
  1185. },
  1186. {
  1187. "path": "moreHighMsg/moreHighMsg",
  1188. "style": {
  1189. "navigationBarTitleText": "高速快讯",
  1190. "enablePullDownRefresh": true
  1191. }
  1192. },
  1193. {
  1194. "path": "moreHighMsg/textDetails",
  1195. "style": {
  1196. "navigationBarTitleText": "文本详情",
  1197. "enablePullDownRefresh": true
  1198. }
  1199. },
  1200. {
  1201. "path": "verification-apply",
  1202. "style": {
  1203. "navigationBarTitleText": "验证申请"
  1204. }
  1205. },
  1206. {
  1207. "path": "apply-ex-goods",
  1208. "style": {
  1209. "navigationBarTitleText": "申请换货"
  1210. }
  1211. },
  1212. {
  1213. "path": "apply-ex-goods-step1",
  1214. "style": {
  1215. "navigationBarTitleText": "申请换货"
  1216. }
  1217. },
  1218. {
  1219. "path": "apply-return-goods",
  1220. "style": {
  1221. "navigationBarTitleText": "申请退货"
  1222. }
  1223. },
  1224. {
  1225. "path": "cancel-order",
  1226. "style": {
  1227. "navigationBarTitleText": "取消订单"
  1228. }
  1229. },
  1230. {
  1231. "path": "cardAmountDetail",
  1232. "style": {
  1233. "navigationBarTitleText": "查看进度"
  1234. }
  1235. },
  1236. {
  1237. "path": "flowingWater",
  1238. "style": {
  1239. "navigationBarTitleText": "补卡额圈存"
  1240. }
  1241. },
  1242. {
  1243. "path": "flowingWater-selectCar",
  1244. "style": {
  1245. "navigationBarTitleText": "补卡额圈存-选择车辆"
  1246. }
  1247. },
  1248. {
  1249. "path": "flowingWater-result",
  1250. "style": {
  1251. "navigationBarTitleText": "补卡额-办理成功"
  1252. }
  1253. },
  1254. {
  1255. "path": "order-cardQuota-apply",
  1256. "style": {
  1257. "navigationBarTitleText": "补卡额申请",
  1258. "navigationStyle": "custom",
  1259. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1260. "transparentTitle": "always",
  1261. "titlePenetrate": "YES",
  1262. "defaultTitle": "" // 将导航栏默认的 title 置空
  1263. }
  1264. }
  1265. },
  1266. {
  1267. "path": "order-cardQuota-progress",
  1268. "style": {
  1269. "navigationBarTitleText": "查看进度"
  1270. }
  1271. },
  1272. {
  1273. "path": "order-confirm-receipt",
  1274. "style": {
  1275. "navigationBarTitleText": "确认收货"
  1276. }
  1277. },
  1278. {
  1279. "path": "order-detail-logistics",
  1280. "style": {
  1281. "navigationBarTitleText": "查看物流"
  1282. }
  1283. },
  1284. {
  1285. "path": "order-details-cancel-numberplate",
  1286. "style": {
  1287. "navigationBarTitleText": "订单详情"
  1288. }
  1289. },
  1290. {
  1291. "path": "order-details-card-sign",
  1292. "style": {
  1293. "navigationBarTitleText": "订单详情"
  1294. }
  1295. },
  1296. {
  1297. "path": "order-details-edit-car",
  1298. "style": {
  1299. "navigationBarTitleText": "订单详情"
  1300. }
  1301. },
  1302. {
  1303. "path": "order-details-logoff-etc",
  1304. "style": {
  1305. "navigationBarTitleText": "订单详情"
  1306. }
  1307. },
  1308. {
  1309. "path": "order-details-new",
  1310. "style": {
  1311. "navigationBarTitleText": "订单详情"
  1312. }
  1313. },
  1314. {
  1315. "path": "order-details-obu",
  1316. "style": {
  1317. "navigationBarTitleText": "订单详情"
  1318. }
  1319. },
  1320. {
  1321. "path": "order-details-recharge",
  1322. "style": {
  1323. "navigationBarTitleText": "订单详情"
  1324. }
  1325. },
  1326. {
  1327. "path": "order-evaluate",
  1328. "style": {
  1329. "navigationBarTitleText": "评价"
  1330. }
  1331. },
  1332. {
  1333. "path": "order-evaluate-product",
  1334. "style": {
  1335. "navigationBarTitleText": "产品评价"
  1336. }
  1337. },
  1338. {
  1339. "path": "order-evaluate-salesman",
  1340. "style": {
  1341. "navigationBarTitleText": "业务员满意度评价"
  1342. }
  1343. },
  1344. {
  1345. "path": "payment",
  1346. "style": {
  1347. "navigationBarTitleText": "收银",
  1348. "navigationStyle": "custom",
  1349. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1350. "transparentTitle": "always",
  1351. "titlePenetrate": "YES",
  1352. "defaultTitle": "" // 将导航栏默认的 title 置空
  1353. }
  1354. }
  1355. },
  1356. {
  1357. "path": "refund-confirm",
  1358. "style": {
  1359. "navigationBarTitleText": "欠费补缴",
  1360. "navigationStyle": "custom",
  1361. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1362. "transparentTitle": "always",
  1363. "titlePenetrate": "YES",
  1364. "defaultTitle": "" // 将导航栏默认的 title 置空
  1365. }
  1366. }
  1367. },
  1368. {
  1369. "path": "refund-deposit-card",
  1370. "style": {
  1371. "navigationBarTitleText": "储值卡圈存-退款"
  1372. }
  1373. },
  1374. {
  1375. "path": "refund-order-balance",
  1376. "style": {
  1377. "navigationBarTitleText": "余额补零",
  1378. "navigationStyle": "custom",
  1379. "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
  1380. "transparentTitle": "always",
  1381. "titlePenetrate": "YES",
  1382. "defaultTitle": "" // 将导航栏默认的 title 置空
  1383. }
  1384. }
  1385. }, {
  1386. "path": "verify/verify-phone/verify-phone",
  1387. "style": {
  1388. "navigationBarTitleText": "获取短信验证码",
  1389. "enablePullDownRefresh": false
  1390. }
  1391. }, {
  1392. "path": "verify/verify-phone-code/verify-phone-code",
  1393. "style": {
  1394. "navigationBarTitleText": "短信验证码校验",
  1395. "enablePullDownRefresh": false
  1396. }
  1397. }
  1398. ]
  1399. },
  1400. {
  1401. "root": "subpackage/personal-center", //个人中心
  1402. "pages": [{
  1403. "path": "trapping-and-repairing-account/result",
  1404. "style": {
  1405. "navigationBarTitleText": "修复成功",
  1406. "enablePullDownRefresh": false
  1407. }
  1408. },
  1409. {
  1410. "path": "trapping-and-repairing-account/recharge-two",
  1411. "style": {
  1412. "navigationBarTitleText": "确认修复",
  1413. "enablePullDownRefresh": false
  1414. }
  1415. },
  1416. {
  1417. "path": "trapping-and-repairing-account/recharge-pay",
  1418. "style": {
  1419. "navigationBarTitleText": "去修复",
  1420. "enablePullDownRefresh": false
  1421. }
  1422. },
  1423. {
  1424. "path": "trapping-and-repairing/result",
  1425. "style": {
  1426. "navigationBarTitleText": "修复成功",
  1427. "enablePullDownRefresh": false
  1428. }
  1429. },
  1430. {
  1431. "path": "trapping-and-repairing/recharge-two",
  1432. "style": {
  1433. "navigationBarTitleText": "圈存",
  1434. "enablePullDownRefresh": false
  1435. }
  1436. },
  1437. {
  1438. "path": "trapping-and-repairing/recharge-pay",
  1439. "style": {
  1440. "navigationBarTitleText": "去修复",
  1441. "enablePullDownRefresh": false
  1442. }
  1443. },
  1444. {
  1445. "path": "car-message-change",
  1446. "style": {
  1447. "navigationBarTitleText": "车辆信息变更",
  1448. "enablePullDownRefresh": false
  1449. }
  1450. },
  1451. {
  1452. "path": "car-details",
  1453. "style": {
  1454. "navigationBarTitleText": "车辆详情",
  1455. "enablePullDownRefresh": false
  1456. }
  1457. },
  1458. {
  1459. "path": "get-code",
  1460. "style": {
  1461. "navigationBarTitleText": "验证",
  1462. "enablePullDownRefresh": false
  1463. }
  1464. },
  1465. {
  1466. "path": "webview",
  1467. "style": {
  1468. "navigationBarTitleText": "",
  1469. "enablePullDownRefresh": false
  1470. }
  1471. },
  1472. {
  1473. "path": "consumption-record",
  1474. "style": {
  1475. "navigationBarTitleText": "充值明细",
  1476. "enablePullDownRefresh": false
  1477. }
  1478. },
  1479. {
  1480. "path": "remind/remind",
  1481. "style": {
  1482. "navigationBarTitleText": "服务提醒",
  1483. "enablePullDownRefresh": false
  1484. }
  1485. },
  1486. {
  1487. "path": "remind/satisfaction-evaluate",
  1488. "style": {
  1489. "navigationBarTitleText": "满意度评价"
  1490. }
  1491. },
  1492. {
  1493. "path": "remind/evaluate-list",
  1494. "style": {
  1495. "navigationBarTitleText": "评价列表"
  1496. }
  1497. },
  1498. {
  1499. "path": "search/etcFlowingWater",
  1500. "style": {
  1501. "navigationBarTitleText": "ETC通行流水记录"
  1502. }
  1503. },
  1504. // {
  1505. // "path": "search/select-card",
  1506. // "style": {
  1507. // "navigationBarTitleText": "选择卡号"
  1508. // }
  1509. // },
  1510. {
  1511. "path": "help/help",
  1512. "style": {
  1513. "navigationBarTitleText": "常见问题"
  1514. }
  1515. },
  1516. {
  1517. "path": "old-user",
  1518. "style": {
  1519. "navigationBarTitleText": "历史用户申请",
  1520. "enablePullDownRefresh": true
  1521. }
  1522. },
  1523. {
  1524. "path": "address",
  1525. "style": {
  1526. "navigationBarTitleText": "邮寄地址",
  1527. "enablePullDownRefresh": true
  1528. }
  1529. },
  1530. {
  1531. "path": "install-activation-order",
  1532. "style": {
  1533. "navigationBarTitleText": "安装激活-选择订单",
  1534. "enablePullDownRefresh": true
  1535. }
  1536. },
  1537. {
  1538. "path": "car-submit-record",
  1539. "style": {
  1540. "navigationBarTitleText": "车辆提交记录"
  1541. }
  1542. },
  1543. {
  1544. "path": "official-car-issue",
  1545. "style": {
  1546. "navigationBarTitleText": "公务车发行"
  1547. }
  1548. },
  1549. {
  1550. "path": "query-company-list",
  1551. "style": {
  1552. "navigationBarTitleText": "单位查询"
  1553. }
  1554. },
  1555. {
  1556. "path": "add-company",
  1557. "style": {
  1558. "navigationBarTitleText": "新增单位"
  1559. }
  1560. },
  1561. {
  1562. "path": "add-car",
  1563. "style": {
  1564. "navigationBarTitleText": "新增车辆"
  1565. }
  1566. },
  1567. {
  1568. "path": "official-car-issue-result",
  1569. "style": {
  1570. "navigationBarTitleText": "公务车发行-查询结果"
  1571. }
  1572. },
  1573. {
  1574. "path": "trajectory/trajectory",
  1575. "style": {
  1576. "navigationBarTitleText": "我的通行"
  1577. }
  1578. },
  1579. {
  1580. "path": "trajectory/see-month",
  1581. "style": {
  1582. "navigationBarTitleText": "通行记录"
  1583. }
  1584. },
  1585. {
  1586. "path": "vehicle-information",
  1587. "style": {
  1588. "navigationBarTitleText": "车辆信息"
  1589. }
  1590. },
  1591. {
  1592. "path": "change-password",
  1593. "style": {
  1594. "navigationBarTitleText": "修改密码"
  1595. }
  1596. },
  1597. {
  1598. "path": "progress-query/my-etc",
  1599. "style": {
  1600. "navigationBarTitleText": "我的ETC"
  1601. }
  1602. },
  1603. {
  1604. "path": "setting/setting",
  1605. "style": {
  1606. "navigationBarTitleText": "设置"
  1607. }
  1608. },
  1609. {
  1610. "path": "setting/information-deletion",
  1611. "style": {
  1612. "navigationBarTitleText": "设置-个人信息删除"
  1613. }
  1614. },
  1615. {
  1616. "path": "setting/permission-management",
  1617. "style": {
  1618. "navigationBarTitleText": "设置-权限管理"
  1619. }
  1620. },
  1621. {
  1622. "path": "setting/account-cancellation",
  1623. "style": {
  1624. "navigationBarTitleText": "设置-注销账户"
  1625. }
  1626. },
  1627. {
  1628. "path": "setting/personal-information/corrections",
  1629. "style": {
  1630. "navigationBarTitleText": "设置-个人信息-变更"
  1631. }
  1632. },
  1633. {
  1634. "path": "setting/personal-information/choice-verification-way",
  1635. "style": {
  1636. "navigationBarTitleText": "选择验证方式"
  1637. }
  1638. },
  1639. {
  1640. "path": "setting/personal-information/etc-phone",
  1641. "style": {
  1642. "navigationBarTitleText": "验证"
  1643. }
  1644. },
  1645. {
  1646. "path": "setting/personal-information/change-phone",
  1647. "style": {
  1648. "navigationBarTitleText": "预留手机号修改"
  1649. }
  1650. },
  1651. {
  1652. "path": "setting/personal-information/change-phone-newphone",
  1653. "style": {
  1654. "navigationBarTitleText": "预留手机号修改"
  1655. }
  1656. },
  1657. {
  1658. "path": "setting/personal-information/choice-phone",
  1659. "style": {
  1660. "navigationBarTitleText": "选择修改手机号"
  1661. }
  1662. },
  1663. {
  1664. "path": "setting/personal-information/user-change",
  1665. "style": {
  1666. "navigationBarTitleText": "设置-个人信息-修改"
  1667. }
  1668. },
  1669. {
  1670. "path": "setting/personal-information/user-change-list",
  1671. "style": {
  1672. "navigationBarTitleText": "设置-个人信息-列表"
  1673. }
  1674. },
  1675. {
  1676. "path": "setting/personal-information/user-card",
  1677. "style": {
  1678. "navigationBarTitleText": "设置-个人信息-身份证"
  1679. }
  1680. },
  1681. {
  1682. "path": "setting/personal-information/user-card-ETC",
  1683. "style": {
  1684. "navigationBarTitleText": "设置-上传用户资料"
  1685. }
  1686. },
  1687. {
  1688. "path": "setting/car-information/car-manage",
  1689. "style": {
  1690. "navigationBarTitleText": "设置-车辆信息-管理"
  1691. }
  1692. },
  1693. {
  1694. "path": "setting/car-information/corrections",
  1695. "style": {
  1696. "navigationBarTitleText": "设置-车辆信息-变更"
  1697. }
  1698. },
  1699. {
  1700. "path": "setting/car-information/car-card",
  1701. "style": {
  1702. "navigationBarTitleText": "设置-车辆信息-行驶证"
  1703. }
  1704. },
  1705. {
  1706. "path": "setting/car-information/car-change",
  1707. "style": {
  1708. "navigationBarTitleText": "设置-车辆信息-修改"
  1709. }
  1710. },
  1711. {
  1712. "path": "setting/car-information/car-create",
  1713. "style": {
  1714. "navigationBarTitleText": "设置-车辆信息-添加"
  1715. }
  1716. },
  1717. {
  1718. "path": "setting/bank-card/bank-card",
  1719. "style": {
  1720. "navigationBarTitleText": "银行卡管理"
  1721. }
  1722. },
  1723. {
  1724. "path": "setting/bank-card/bank-card-add",
  1725. "style": {
  1726. "navigationBarTitleText": "银行卡新增"
  1727. }
  1728. },
  1729. {
  1730. "path": "setting/addressManager",
  1731. "style": {
  1732. "navigationBarTitleText": "地址管理"
  1733. }
  1734. },
  1735. {
  1736. "path": "setting/info-export",
  1737. "style": {
  1738. "navigationBarTitleText": "信息副本导出"
  1739. }
  1740. },
  1741. {
  1742. "path": "setting/user-agreement",
  1743. "style": {
  1744. "navigationBarTitleText": "用户协议"
  1745. }
  1746. },
  1747. {
  1748. "path": "setting/conceal-agreement",
  1749. "style": {
  1750. "navigationBarTitleText": "隐私政策"
  1751. }
  1752. },
  1753. {
  1754. "path": "setting/risk-agreement",
  1755. "style": {
  1756. "navigationBarTitleText": "风险提示告知书"
  1757. }
  1758. },
  1759. {
  1760. "path": "setting/usage-instructions",
  1761. "style": {
  1762. "navigationBarTitleText": "权限使用说明"
  1763. }
  1764. },
  1765. {
  1766. "path": "setting/info_connect",
  1767. "style": {
  1768. "navigationBarTitleText": "个人信息收集清单"
  1769. }
  1770. },
  1771. {
  1772. "path": "setting/change-phone",
  1773. "style": {
  1774. "navigationBarTitleText": "修改手机号"
  1775. }
  1776. },
  1777. {
  1778. "path": "setting/change-phone-code",
  1779. "style": {
  1780. "navigationBarTitleText": "修改手机号"
  1781. }
  1782. },
  1783. {
  1784. "path": "setting/change-phone-code-ali",
  1785. "style": {
  1786. "navigationBarTitleText": "修改手机号"
  1787. }
  1788. },
  1789. {
  1790. "path": "excel",
  1791. "style": {
  1792. "navigationBarTitleText": "表格报表",
  1793. "enablePullDownRefresh": false
  1794. }
  1795. }
  1796. ]
  1797. },
  1798. {
  1799. "root": "login", //登录模块
  1800. "pages": [{
  1801. "path": "login",
  1802. "style": {
  1803. "navigationBarTitleText": "登录"
  1804. }
  1805. },
  1806. {
  1807. "path": "agreement",
  1808. "style": {
  1809. "navigationBarTitleText": "平台用户服务隐私协议"
  1810. }
  1811. },
  1812. {
  1813. "path": "register-step1",
  1814. "style": {
  1815. "navigationBarTitleText": "注册第一步"
  1816. }
  1817. },
  1818. {
  1819. "path": "register-step2",
  1820. "style": {
  1821. "navigationBarTitleText": "注册第二步"
  1822. }
  1823. },
  1824. {
  1825. "path": "register-step2-ali",
  1826. "style": {
  1827. "navigationBarTitleText": "注册第二步"
  1828. }
  1829. },
  1830. {
  1831. "path": "register-step3",
  1832. "style": {
  1833. "navigationBarTitleText": "注册第三步"
  1834. }
  1835. },
  1836. {
  1837. "path": "forget-pwd-step1",
  1838. "style": {
  1839. "navigationBarTitleText": "忘记密码第一步"
  1840. }
  1841. },
  1842. {
  1843. "path": "forget-pwd-step2",
  1844. "style": {
  1845. "navigationBarTitleText": "忘记密码第二步"
  1846. }
  1847. },
  1848. {
  1849. "path": "forget-pwd-step2-ali",
  1850. "style": {
  1851. "navigationBarTitleText": "忘记密码第二步"
  1852. }
  1853. },
  1854. {
  1855. "path": "forget-pwd-step3",
  1856. "style": {
  1857. "navigationBarTitleText": "忘记密码第三步"
  1858. }
  1859. }
  1860. ]
  1861. },
  1862. {
  1863. //其他服务模块
  1864. "root": "subpackage/service",
  1865. "pages": [{
  1866. "path": "trajectory-map",
  1867. "style": {
  1868. "navigationBarTitleText": "我的轨迹"
  1869. }
  1870. },
  1871. {
  1872. "path": "statistics/index",
  1873. "style": {
  1874. "navigationBarTitleText": "发行数据统计"
  1875. }
  1876. },
  1877. {
  1878. "path": "zfbqy/zfbqy",
  1879. "style": {
  1880. "navigationBarTitleText": "",
  1881. "enablePullDownRefresh": false,
  1882. "usingComponents": {
  1883. "home": "plugin://myPlugin/home"
  1884. }
  1885. }
  1886. },
  1887. {
  1888. "path": "equityList/equityList",
  1889. "style": {
  1890. "navigationBarTitleText": "",
  1891. "enablePullDownRefresh": false
  1892. }
  1893. },
  1894. {
  1895. "path": "equityInfo/equityInfo",
  1896. "style": {
  1897. "navigationBarTitleText": "",
  1898. "enablePullDownRefresh": false
  1899. }
  1900. },
  1901. {
  1902. "path": "equity/equity",
  1903. "style": {
  1904. "navigationBarTitleText": "",
  1905. "enablePullDownRefresh": false
  1906. }
  1907. }
  1908. ]
  1909. },
  1910. {
  1911. //其他服务模块
  1912. "root": "subpackage/carPark",
  1913. "plugins": {
  1914. "issuer-plugin": {
  1915. // "version": "dev-5d954bb916bb210d6c17397439d90f07",
  1916. "version": "1.0.2",
  1917. "provider": "wxa2d9acdd1054e69b"
  1918. }
  1919. },
  1920. "pages": [{
  1921. "path": "channelSing/select-car",
  1922. "style": {
  1923. "navigationBarTitleText": "选择车辆"
  1924. }
  1925. },
  1926. {
  1927. "path": "etc/etcDeviceInfo",
  1928. "style": {
  1929. "navigationBarTitleText": "设备信息"
  1930. }
  1931. },
  1932. {
  1933. "path": "recharge/recharge-weixin",
  1934. "style": {
  1935. "navigationBarTitleText": "用户账户充值",
  1936. "enablePullDownRefresh": false
  1937. }
  1938. },
  1939. {
  1940. "path": "recharge/select-car",
  1941. "style": {
  1942. "navigationBarTitleText": "选择车辆",
  1943. "enablePullDownRefresh": false
  1944. }
  1945. },
  1946. {
  1947. "path": "recharge/recharge-pay",
  1948. "style": {
  1949. "navigationBarTitleText": "选择充值方式",
  1950. "enablePullDownRefresh": false
  1951. }
  1952. },
  1953. {
  1954. "path": "recharge/result",
  1955. "style": {
  1956. "navigationBarTitleText": "账户充值-完成",
  1957. "enablePullDownRefresh": false
  1958. }
  1959. }
  1960. ]
  1961. }
  1962. ],
  1963. "tabBar": {
  1964. "color": "#999",
  1965. "selectedColor": "#03385D",
  1966. "borderStyle": "black",
  1967. "backgroundColor": "#ffffff",
  1968. "height": "100px",
  1969. "list": [{
  1970. "pagePath": "pages/index/index",
  1971. "iconPath": "static/image/homex.png",
  1972. "selectedIconPath": "static/image/homex-on.png",
  1973. "text": "首页"
  1974. },
  1975. {
  1976. "pagePath": "pages/service/service",
  1977. "iconPath": "static/image/menu.png",
  1978. "selectedIconPath": "static/image/menu-on.png",
  1979. "text": "服务"
  1980. },
  1981. {
  1982. "pagePath": "pages/user/user",
  1983. "iconPath": "static/image/myx.png",
  1984. "selectedIconPath": "static/image/myx-on.png",
  1985. "text": "我的"
  1986. }
  1987. ]
  1988. },
  1989. "eslintConfig": {
  1990. "parser": "babel-eslint"
  1991. },
  1992. "globalStyle": {
  1993. "navigationBarTextStyle": "black",
  1994. "navigationBarTitleText": "九州ETC",
  1995. "navigationBarBackgroundColor": "#FFFFFF",
  1996. "backgroundColor": "#eef7f7"
  1997. },
  1998. "uniIdRouter": {},
  1999. "condition": {
  2000. //模式配置,仅开发期间生效
  2001. "current": 0, //当前激活的模式(list 的索引项)
  2002. "list": [{
  2003. "name": "app", //模式名称
  2004. "path": "pages/index/index", //启动页面,必选
  2005. "query": "" //启动参数,在页面的onLoad函数里面得到
  2006. }]
  2007. }
  2008. }