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

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