Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pages.json 52KB

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