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

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