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 60KB

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