Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

pages.json 48KB

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