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

pages.json 57KB

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