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.

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