123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220 |
- {
- "mode": "production",
- "pages": [
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarHidden": true,
- "navigationBarTitleText": "首页",
- "navigationBarBackgroundColor": "#073157",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" // 将导航栏默认的 title 置空
- }
- }
- },
- {
- "path": "pages/order/order",
- "style": {
- "navigationBarTitleText": "我的订单",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/user/user",
- "style": {
- "navigationBarTitleText": "九州ETC",
- "navigationBarBackgroundColor": "#01243A",
- "backgroundColor": "#f6f9fc",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" // 将导航栏默认的 title 置空
- }
- }
- },
- {
- "path": "pages/service/service",
- "style": {
- "navigationBarTitleText": "九州ETC",
- "navigationBarBackgroundColor": "#01243A",
- "navigationBarTextStyle":"white"
- }
- },
- {
- "path": "pages/bluetooth/bluetooth",
- "style": {
- "navigationBarTitleText": "选择蓝牙设备"
- }
- },
- {
- "path": "pages/nfc/nfc",
- "style": {
- "navigationBarTitleText": "NFC连接",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "pages/zaweb/zaweb",
- "style": {
- "navigationBarTitleText": "在线签约",
- "enablePullDownRefresh": false
- }
- }
- ],
- "subPackages": [{
- "root": "subpackage/after-sale", //售后相关
- "pages": [
- {
- "path": "work-order/add-work-details",
- "style": {
- "navigationBarTitleText": "工单详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "work-order/add-work-supplement",
- "style": {
- "navigationBarTitleText": "补充",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "work-order/add-work-list",
- "style": {
- "navigationBarTitleText": "自助工单",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "work-order/add-work-order",
- "style": {
- "navigationBarTitleText": "新增自助工单",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "wxWebView",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "wangdian",
- "style": {
- "navigationBarTitleText": "网点",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "transfer-page",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "blacklist-query/list",
- "style": {
- "navigationBarTitleText": "黑名单查询",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "blacklist-query/addCar",
- "style": {
- "navigationBarTitleText": "新增车辆",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "cancell-refund/cancell-refund",
- "style": {
- "navigationBarTitleText": "注销退费查询",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "corporate-account-query/corporate-account-query-details",
- "style": {
- "navigationBarTitleText": "对公账户详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "corporate-account-query/corporate-account-query",
- "style": {
- "navigationBarTitleText": "对公账户查询",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "month-statement/month-statement-query-list",
- "style": {
- "navigationBarTitleText": "月结单查询",
- "enablePullDownRefresh": false
- }
- }, {
- "path": "progress-query/progress-query-business-details",
- "style": {
- "navigationBarTitleText": "业务审核记录详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "progress-query/progress-query-business",
- "style": {
- "navigationBarTitleText": "业务审核记录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "progress-query/select-car",
- "style": {
- "navigationBarTitleText": "选择车辆",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "add-equity/equity-list",
- "style": {
- "navigationBarTitleText": "购买权益列表",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "add-equity/choice-order",
- "style": {
- "navigationBarTitleText": "选择订单",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "add-equity/add-equity",
- "style": {
- "navigationBarTitleText": "权益列表",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "add-equity/add-equity-details",
- "style": {
- "navigationBarTitleText": "权益详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "add-equity/equity-product-evaluation",
- "style": {
- "navigationBarTitleText": "权益产品评价",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-product-status-list-query/ETC-product-status-list-query",
- "style": {
- "navigationBarTitleText": "ETC产品状态名单",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-product-status-list-query/ETC-product-status-list-query-details",
- "style": {
- "navigationBarTitleText": "ETC产品状态名单详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "onlineService",
- "style": {
- "navigationBarTitleText": "在线客服",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "transferRecord",
- "style": {
- "navigationBarTitleText": "过户记录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "empty",
- "style": {
- "navigationBarTitleText": "支付",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "inventory-equipment",
- "style": {
- "navigationBarTitleText": "库存设备统计",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "business-processie",
- "style": {
- "navigationBarTitleText": "业务操作记录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "report/qingfen",
- "style": {
- "navigationBarTitleText": "清分对账统计",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "report/report",
- "style": {
- "navigationBarTitleText": "每日渠道推送报表",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "report/report-details",
- "style": {
- "navigationBarTitleText": "每日渠道推送报表详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/recharge",
- "style": {
- "navigationBarTitleText": "充值",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/result",
- "style": {
- "navigationBarTitleText": "结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/recharge-record",
- "style": {
- "navigationBarTitleText": "充值明细",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/consumption-record",
- "style": {
- "navigationBarTitleText": "消费明细",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/recharge-weixin",
- "style": {
- "navigationBarTitleText": "圈存",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/open-account",
- "style": {
- "navigationBarTitleText": "开户",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/index",
- "style": {
- "navigationBarTitleText": "ETC卡",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/login",
- "style": {
- "navigationBarTitleText": "登录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/go-account",
- "style": {
- "navigationBarTitleText": "开户",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-recharge/forget-password",
- "style": {
- "navigationBarTitleText": "忘记密码",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "arrears/arrears",
- "style": {
- "navigationBarTitleText": "欠费补缴",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "refund-order-balance/refund-order-balance",
- "style": {
- "navigationBarTitleText": "余额补领",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "refund-order-balance/result",
- "style": {
- "navigationBarTitleText": "余额补领-办理成功",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "refund-order-balance/select-car",
- "style": {
- "navigationBarTitleText": "余额补领-选择车辆",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "deviceInfo/deviceInfo",
- "style": {
- "navigationBarTitleText": "设备信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "activation/activate",
- "style": {
- "navigationBarTitleText": "设备激活",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "activation/activate-SH",
- "style": {
- "navigationBarTitleText": "设备激活",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "activation/operation-upload",
- "style": {
- "navigationBarTitleText": "上传图片"
- }
- },
- {
- "path": "activation/operation-tips",
- "style": {
- "navigationBarTitleText": "操作提示"
- }
- },
- {
- "path": "activation-once-again/activation-once-again",
- "style": {
- "navigationBarTitleText": "OBU重新激活"
- }
- },
- {
- "path": "activation-once-again/activation-once-again-ali",
- "style": {
- "navigationBarTitleText": "OBU重新激活"
- }
- },
- {
- "path": "activation-once-again/activation-once-again-record",
- "style": {
- "navigationBarTitleText": "OBU重新激活记录"
- }
- },
- {
- "path": "activation-once-again/select-car",
- "style": {
- "navigationBarTitleText": "选择车辆"
- }
- },
- {
- "path": "reportLossCard",
- "style": {
- "navigationBarTitleText": "卡签挂失/解除挂失",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "card-loss-reporting/cardloss",
- "style": {
- "navigationBarTitleText": "卡签挂失",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "releaseSuspension/cardloss",
- "style": {
- "navigationBarTitleText": "解除挂起验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "orderPage",
- "style": {
- "navigationBarTitleText": "卡注销退费申请",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "refundPage-selectCar",
- "style": {
- "navigationBarTitleText": "ETC卡注销退费申请-选择车辆",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "refundPage",
- "style": {
- "navigationBarTitleText": "ETC卡注销退费申请",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "refundPage-result",
- "style": {
- "navigationBarTitleText": "ETC卡注销退费申请",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "card-loss-reporting/cardloss-confirm",
- "style": {
- "navigationBarTitleText": "卡签挂失/解除挂失-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "card-loss-reporting/card-result",
- "style": {
- "navigationBarTitleText": "卡签挂失/解除挂失-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "releaseSuspension/cardloss-confirm",
- "style": {
- "navigationBarTitleText": "解除挂起-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "releaseSuspension/card-result",
- "style": {
- "navigationBarTitleText": "解除挂起-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "transfer-ownership/card-result",
- "style": {
- "navigationBarTitleText": "ETC过户-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "transfer-ownership/transfer-confirm",
- "style": {
- "navigationBarTitleText": "ETC过户-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "transfer-ownership/transfer-verification",
- "style": {
- "navigationBarTitleText": "ETC过户-验证",
- "enablePullDownRefresh": false
- }
- },
-
- {
- "path": "card-deactivation-activation/deactivation-activation-confirm",
- "style": {
- "navigationBarTitleText": "卡签停用/启用-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "card-Renewal/renewal-confirm",
- "style": {
- "navigationBarTitleText": "卡签续期-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pin-code-deblocking/pin-code-confirm",
- "style": {
- "navigationBarTitleText": "卡pin码解锁-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-log-off/log-off-confirm",
- "style": {
- "navigationBarTitleText": "ETC注销-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-log-off/etc-log-off",
- "style": {
- "navigationBarTitleText": "ETC注销-填写",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-log-off/upload-card",
- "style": {
- "navigationBarTitleText": "ETC注销-选择注销原因",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-log-off/refund-information-list",
- "style": {
- "navigationBarTitleText": "退费信息列表",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-log-off/refund-information-add",
- "style": {
- "navigationBarTitleText": "注销退费资料填写",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-log-off/refund-information-edit",
- "style": {
- "navigationBarTitleText": "注销退费资料编辑",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-log-off/log-off-result",
- "style": {
- "navigationBarTitleText": "ETC注销-成功",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "ETC-log-off/etc-log-off-pay",
- "style": {
- "navigationBarTitleText": "ETC注销-支付",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "additional-equipment/additional-equipment-confirm",
- "style": {
- "navigationBarTitleText": "增补OBU-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "additional-equipment/additional-equipment-verification",
- "style": {
- "navigationBarTitleText": "增补OBU-验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "additional-equipment/base-change-people",
- "style": {
- "navigationBarTitleText": "设备补增-个人信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "additional-equipment/car-change",
- "style": {
- "navigationBarTitleText": "设备补增-车辆信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "additional-equipment/pay-page",
- "style": {
- "navigationBarTitleText": "设备补增-车辆信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "additional-equipment/result",
- "style": {
- "navigationBarTitleText": "设备补增-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "equipment-upgrade/select-car",
- "style": {
- "navigationBarTitleText": "设备升级-选择车牌",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "equipment-upgrade/upgrade-confirm",
- "style": {
- "navigationBarTitleText": "设备升级-确定",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "card-release-pending/select-car",
- "style": {
- "navigationBarTitleText": "卡签挂起-选择车牌",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "card-release-pending/release-pending-confirm",
- "style": {
- "navigationBarTitleText": "卡签挂起-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "card-release-pending/verification",
- "style": {
- "navigationBarTitleText": "卡签挂起-验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "card-release-pending/result",
- "style": {
- "navigationBarTitleText": "卡签挂起-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "rescind-carId/rescind-carId-select",
- "style": {
- "navigationBarTitleText": "解除车牌占用",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "rescind-carId/rescind-carId-select-direction",
- "style": {
- "navigationBarTitleText": "解除车牌占用-引导页",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "rescind-carId/rescind-carId-select-list",
- "style": {
- "navigationBarTitleText": "解除车牌占用",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "rescind-carId/rescind-carId-select-details",
- "style": {
- "navigationBarTitleText": "解除车牌占用详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "rescind-carId/result",
- "style": {
- "navigationBarTitleText": "解除车牌占用-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/replace-equipment-confirm",
- "style": {
- "navigationBarTitleText": "更换ETC设备-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/order-confirm-receipt",
- "style": {
- "navigationBarTitleText": "更换ETC设备-确认收货",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "replace-equipment/order-payment",
- "style": {
- "navigationBarTitleText": "支付",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/verification",
- "style": {
- "navigationBarTitleText": "更换ETC设备-验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/verification-huanhuo",
- "style": {
- "navigationBarTitleText": "更换ETC设备-换货-验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/base-change-people",
- "style": {
- "navigationBarTitleText": "更换ETC设备-个人信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/car-change",
- "style": {
- "navigationBarTitleText": "更换ETC设备-车辆信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/form",
- "style": {
- "navigationBarTitleText": "更换ETC设备-填写信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/form-huanhuo",
- "style": {
- "navigationBarTitleText": "换货-填写信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/cancellation-contract",
- "style": {
- "navigationBarTitleText": "更换ETC设备-解除合约",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/release-products",
- "style": {
- "navigationBarTitleText": "更换ETC设备-支付账户签约",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/bank-card-add",
- "style": {
- "navigationBarTitleText": "更换ETC设备-添加银行卡",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/product-detail",
- "style": {
- "navigationBarTitleText": "更换ETC设备-微信签约",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/signing-bank",
- "style": {
- "navigationBarTitleText": "更换ETC设备-扣款账户关联",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/pay-page",
- "style": {
- "navigationBarTitleText": "更换ETC设备-支付",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-equipment/result",
- "style": {
- "navigationBarTitleText": "更换ETC设备-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/replace-equipment-confirm",
- "style": {
- "navigationBarTitleText": "补卡补签-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/order-confirm-receipt",
- "style": {
- "navigationBarTitleText": "补卡补签-确认收货",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "replace-cardObu/order-payment",
- "style": {
- "navigationBarTitleText": "支付",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/verification",
- "style": {
- "navigationBarTitleText": "补卡补签-验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/verification-huanhuo",
- "style": {
- "navigationBarTitleText": "补卡补签-换货-验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/base-change-people",
- "style": {
- "navigationBarTitleText": "补卡补签-个人信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/car-change",
- "style": {
- "navigationBarTitleText": "补卡补签-车辆信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/form",
- "style": {
- "navigationBarTitleText": "补卡补签-填写信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/form-huanhuo",
- "style": {
- "navigationBarTitleText": "换货-填写信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/cancellation-contract",
- "style": {
- "navigationBarTitleText": "补卡补签-解除合约",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/release-products",
- "style": {
- "navigationBarTitleText": "补卡补签-支付账户签约",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/bank-card-add",
- "style": {
- "navigationBarTitleText": "补卡补签-添加银行卡",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/product-detail",
- "style": {
- "navigationBarTitleText": "补卡补签-微信签约",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/signing-bank",
- "style": {
- "navigationBarTitleText": "补卡补签-扣款账户关联",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/pay-page",
- "style": {
- "navigationBarTitleText": "补卡补签-支付",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "replace-cardObu/result",
- "style": {
- "navigationBarTitleText": "补卡补签-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-change/select-car",
- "style": {
- "navigationBarTitleText": "扣款账户变更-选择车辆",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-change/verification",
- "style": {
- "navigationBarTitleText": "扣款账户变更-验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-change/cancellation-contract",
- "style": {
- "navigationBarTitleText": "扣款账户变更-签约账户确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-change/release-products",
- "style": {
- "navigationBarTitleText": "扣款账户变更-支付账户签约",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-change/bank-card-add",
- "style": {
- "navigationBarTitleText": "扣款账户变更-添加银行卡",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-change/product-detail",
- "style": {
- "navigationBarTitleText": "扣款账户变更-签约微信",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-change/signing-bank",
- "style": {
- "navigationBarTitleText": "扣款账户关联",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-change/result",
- "style": {
- "navigationBarTitleText": "扣款账户变更-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/confirm",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/verification",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/mailing_information",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-填写信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/pay-page",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-支付",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/refund",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-退费",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/base-change-people",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-个人信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/car-change",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-车辆信息",
- "enablePullDownRefresh": false
- }
- },
-
- {
- "path": "to-bookkeeping-card/release-products",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-支付账户签约",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/bank-card-add",
- "style": {
- "navigationBarTitleText": "添加银行卡",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/product-detail",
- "style": {
- "navigationBarTitleText": "微信签约",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/signing-bank",
- "style": {
- "navigationBarTitleText": "扣款账户关联",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/result",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-结果",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/choice-product-new",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-选择产品",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "to-bookkeeping-card/detail",
- "style": {
- "navigationBarTitleText": "储值卡转记账卡-选择详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "account-opening-template/account-opening-template",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }
- ]
- },
- {
- "root": "subpackage/orders", //订单管理模块
- "pages": [
- {
- "path": "transfer-page-sign",
- "style": {
- "navigationBarTitleText": "订单查询",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "essential-information-two",
- "style": {
- "navigationBarTitleText": "九州ETC",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
- {
- "path": "essential-information",
- "style": {
- "navigationBarTitleText": "九州ETC",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
- {
- "path": "signUserAgreement",
- "style": {
- "navigationBarTitleText": "签署用户协议"
- }
- },
- {
- "path": "payment/payment",
- "style": {
- "navigationBarTitleText": "支付"
- }
- },
- {
- "path": "sign/sign-up-ali",
- "style": {
- "navigationBarTitleText": "支付宝代扣"
- }
- },
- {
- "path": "deductionAccountAssociation",
- "style": {
- "navigationBarTitleText": "扣款账户关联",
- "navigationStyle": "custom",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" // 将导航栏默认的 title 置空
- }
- }
- },
- {
- "path": "release-products",
- "style": {
- "navigationBarTitleText": "支付账户签约",
- "navigationStyle": "custom",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
-
- {
- "path": "order_payment",
- "style": {
- "navigationBarTitleText": "订单支付",
- "navigationStyle": "custom",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
-
- {
- "path": "mpng-payment",
- "style": {
- "navigationBarTitleText": "交通银行支付"
- }
- },
- {
- "path": "addAddress",
- "style": {
- "navigationBarTitleText": "新增收货地址"
- }
- },
- {
- "path": "editAddress",
- "style": {
- "navigationBarTitleText": "修改收货地址"
- }
- },
- {
- "path": "opening-account-unit",
- "style": {
- "navigationBarTitleText": "ETC开户新办申请-单位",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
- {
- "path": "opening-account-people",
- "style": {
- "navigationBarTitleText": "ETC开户新办申请-个人",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES", // 允许点击穿透后,才能触发导航栏上的 onTap 事件
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
- {
- "path": "car-release",
- "style": {
- "navigationBarTitleText": "行驶证信息上传",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
- {
- "path": "sign-up",
- "style": {
- "navigationBarTitleText": "微信车主服务"
- }
- },
- {
- "path": "sign-up-ali",
- "style": {
- "navigationBarTitleText": "支付宝签约代扣"
- }
- },
- {
- "path": "equity/interestsList",
- "style": {
- "navigationBarTitleText": "权益简介" //加购权益产品
- }
- },
- {
- "path": "equity/equityList",
- "style": {
- "navigationBarTitleText": "权益选购",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
- {
- "path": "choice-product",
- "style": {
- "navigationBarTitleText": "产品选择",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
- {
- "path": "product-detail",
- "style": {
- "navigationBarTitleText": "产品详情",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" ,// 将导航栏默认的 title 置空
- "navigationBarFrontColor":"white",
- "navigationBarBackgroundColor":"white"
- }
- }
- },
- {
- "path": "invoiceApply/invoice-header",
- "style": {
- "navigationBarTitleText": "选择抬头"
- }
- },
- {
- "path": "invoiceApply/invoiceList",
- "style": {
- "navigationBarTitleText": "开票记录"
- }
- },
- {
- "path": "invoiceApply/invoice-step1",
- "style": {
- "navigationBarTitleText": "开票申请"
- }
- },
- {
- "path": "invoiceApply/invoice-step2",
- "style": {
- "navigationBarTitleText": "开票申请"
- }
- },
- {
- "path": "invoiceApply/Invoice-mannager",
- "style": {
- "navigationBarTitleText": "选择发票订单类型"
- }
- },
- {
- "path": "invoiceApply/invoice-content",
- "style": {
- "navigationBarTitleText": "选择订单开票"
- }
- },
- {
- "path": "invoiceApply/invoice-header-list",
- "style": {
- "navigationBarTitleText": "发票抬头"
- }
- },
- {
- "path": "invoiceApply/invoice-header-add",
- "style": {
- "navigationBarTitleText": "新增发票抬头"
- }
- },
- {
- "path": "invoiceApply/invoice-header-edit",
- "style": {
- "navigationBarTitleText": "编辑发票抬头"
- }
- },
- {
- "path": "moreHighMsg/moreHighMsg",
- "style": {
- "navigationBarTitleText": "高速快讯",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "moreHighMsg/textDetails",
- "style": {
- "navigationBarTitleText": "文本详情",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "verification-apply",
- "style": {
- "navigationBarTitleText": "验证申请"
- }
- },
- {
- "path": "apply-ex-goods",
- "style": {
- "navigationBarTitleText": "申请换货"
- }
- },
- {
- "path": "apply-ex-goods-step1",
- "style": {
- "navigationBarTitleText": "申请换货"
- }
- },
- {
- "path": "apply-return-goods",
- "style": {
- "navigationBarTitleText": "申请退货"
- }
- },
- {
- "path": "cancel-order",
- "style": {
- "navigationBarTitleText": "取消订单"
- }
- },
- {
- "path": "cardAmountDetail",
- "style": {
- "navigationBarTitleText": "查看进度"
- }
- },
- {
- "path": "flowingWater",
- "style": {
- "navigationBarTitleText": "补卡额圈存"
- }
- },
- {
- "path": "flowingWater-selectCar",
- "style": {
- "navigationBarTitleText": "补卡额圈存-选择车辆"
- }
- },
- {
- "path": "flowingWater-result",
- "style": {
- "navigationBarTitleText": "补卡额-办理成功"
- }
- },
- {
- "path": "order-cardQuota-apply",
- "style": {
- "navigationBarTitleText": "补卡额申请",
- "navigationStyle": "custom",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" // 将导航栏默认的 title 置空
- }
- }
- },
- {
- "path": "order-cardQuota-progress",
- "style": {
- "navigationBarTitleText": "查看进度"
- }
- },
- {
- "path": "order-confirm-receipt",
- "style": {
- "navigationBarTitleText": "确认收货",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "order-detail-logistics",
- "style": {
- "navigationBarTitleText": "查看物流"
- }
- },
- {
- "path": "order-details-cancel-numberplate",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "order-details-card-sign",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "order-details-edit-car",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "order-details-logoff-etc",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "order-details-new",
- "style": {
- "navigationBarTitleText": "订单详情",
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" // 将导航栏默认的 title 置空
- }
- }
- },
- {
- "path": "order-details-obu",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "order-details-recharge",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "order-evaluate",
- "style": {
- "navigationBarTitleText": "评价"
- }
- },
- {
- "path": "order-evaluate-product",
- "style": {
- "navigationBarTitleText": "产品评价"
- }
- },
- {
- "path": "order-evaluate-salesman",
- "style": {
- "navigationBarTitleText": "业务员满意度评价"
- }
- },
- {
- "path": "payment",
- "style": {
- "navigationBarTitleText": "收银",
- "navigationStyle": "custom",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" // 将导航栏默认的 title 置空
- }
- }
- },
- {
- "path": "refund-confirm",
- "style": {
- "navigationBarTitleText": "欠费补缴",
- "navigationStyle": "custom",
- "mp-alipay": { //在支付宝小程序中如果不生效 就加上这两行代码 就会生效啦
- "transparentTitle": "always",
- "titlePenetrate": "YES",
- "defaultTitle": "" // 将导航栏默认的 title 置空
- }
- }
- },
- {
- "path": "refund-deposit-card",
- "style": {
- "navigationBarTitleText": "储值卡圈存-退款"
- }
- }, {
- "path": "verify/verify-phone/verify-phone",
- "style": {
- "navigationBarTitleText": "获取短信验证码",
- "enablePullDownRefresh": false
- }
-
- }, {
- "path": "verify/verify-phone-code/verify-phone-code",
- "style": {
- "navigationBarTitleText": "短信验证码校验",
- "enablePullDownRefresh": false
- }
-
- }
- ]
- },
- {
- "root": "subpackage/personal-center", //个人中心
- "pages": [{
- "path": "trapping-and-repairing-account/result",
- "style": {
- "navigationBarTitleText": "修复成功",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "trapping-and-repairing-account/recharge-two",
- "style": {
- "navigationBarTitleText": "确认修复",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "trapping-and-repairing-account/recharge-pay",
- "style": {
- "navigationBarTitleText": "去修复",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "trapping-and-repairing/result",
- "style": {
- "navigationBarTitleText": "修复成功",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "trapping-and-repairing/recharge-two",
- "style": {
- "navigationBarTitleText": "圈存",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "trapping-and-repairing/recharge-pay",
- "style": {
- "navigationBarTitleText": "去修复",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "car-message-change",
- "style": {
- "navigationBarTitleText": "车辆信息变更",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "car-details",
- "style": {
- "navigationBarTitleText": "车辆详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "get-code",
- "style": {
- "navigationBarTitleText": "验证",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "webview",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "consumption-record",
- "style": {
- "navigationBarTitleText": "充值明细",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "remind/remind",
- "style": {
- "navigationBarTitleText": "服务提醒",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "remind/satisfaction-evaluate",
- "style": {
- "navigationBarTitleText": "满意度评价"
- }
- },
-
- {
- "path": "remind/evaluate-list",
- "style": {
- "navigationBarTitleText": "评价列表"
- }
- },
- {
- "path": "search/etcFlowingWater",
- "style": {
- "navigationBarTitleText": "ETC通行流水记录"
- }
- },
- {
- "path": "help/help",
- "style": {
- "navigationBarTitleText": "常见问题"
- }
- },
- {
- "path": "old-user",
- "style": {
- "navigationBarTitleText": "历史用户申请",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "address",
- "style": {
- "navigationBarTitleText": "邮寄地址",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "install-activation-order",
- "style": {
- "navigationBarTitleText": "安装激活-选择订单",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "car-submit-record",
- "style": {
- "navigationBarTitleText": "车辆提交记录"
- }
- },
- {
- "path": "official-car-issue",
- "style": {
- "navigationBarTitleText": "公务车发行"
- }
- },
- {
- "path": "query-company-list",
- "style": {
- "navigationBarTitleText": "单位查询"
- }
- },
- {
- "path": "add-company",
- "style": {
- "navigationBarTitleText": "新增单位"
- }
- },
- {
- "path": "add-car",
- "style": {
- "navigationBarTitleText": "新增车辆"
- }
- },
- {
- "path": "official-car-issue-result",
- "style": {
- "navigationBarTitleText": "公务车发行-查询结果"
- }
- },
- {
- "path": "trajectory/trajectory",
- "style": {
- "navigationBarTitleText": "我的通行"
- }
- },
- {
- "path": "trajectory/see-month",
- "style": {
- "navigationBarTitleText": "通行记录"
- }
- },
- {
- "path": "vehicle-information",
- "style": {
- "navigationBarTitleText": "车辆信息"
- }
- },
- {
- "path": "change-password",
- "style": {
- "navigationBarTitleText": "修改密码"
- }
- },
- {
- "path": "progress-query/my-etc",
- "style": {
- "navigationBarTitleText": "我的ETC"
- }
- },
- {
- "path": "setting/setting",
- "style": {
- "navigationBarTitleText": "设置"
- }
- },
- {
- "path": "setting/information-deletion",
- "style": {
- "navigationBarTitleText": "设置-个人信息删除"
- }
- },
- {
- "path": "setting/permission-management",
- "style": {
- "navigationBarTitleText": "设置-权限管理"
- }
- },
- {
- "path": "setting/account-cancellation",
- "style": {
- "navigationBarTitleText": "设置-注销账户"
- }
- },
- {
- "path": "setting/personal-information/corrections",
- "style": {
- "navigationBarTitleText": "设置-个人信息-变更"
- }
- },
- {
- "path": "setting/personal-information/choice-verification-way",
- "style": {
- "navigationBarTitleText": "选择验证方式"
- }
- },
- {
- "path": "setting/personal-information/etc-phone",
- "style": {
- "navigationBarTitleText": "验证"
- }
- },
- {
- "path": "setting/personal-information/change-phone",
- "style": {
- "navigationBarTitleText": "预留手机号修改"
- }
- },
-
- {
- "path": "setting/personal-information/change-phone-newphone",
- "style": {
- "navigationBarTitleText": "预留手机号修改"
- }
- },
- {
- "path": "setting/personal-information/choice-phone",
- "style": {
- "navigationBarTitleText": "选择修改手机号"
- }
- },
- {
- "path": "setting/personal-information/user-change",
- "style": {
- "navigationBarTitleText": "设置-个人信息-修改"
- }
- },
- {
- "path": "setting/personal-information/user-change-list",
- "style": {
- "navigationBarTitleText": "设置-个人信息-列表"
- }
- },
- {
- "path": "setting/personal-information/user-card",
- "style": {
- "navigationBarTitleText": "设置-个人信息-身份证"
- }
- },
- {
- "path": "setting/personal-information/user-card-ETC",
- "style": {
- "navigationBarTitleText": "设置-上传用户资料"
- }
- },
- {
- "path": "setting/car-information/car-manage",
- "style": {
- "navigationBarTitleText": "设置-车辆信息-管理"
- }
- },
- {
- "path": "setting/car-information/corrections",
- "style": {
- "navigationBarTitleText": "设置-车辆信息-变更"
- }
- },
- {
- "path": "setting/car-information/car-card",
- "style": {
- "navigationBarTitleText": "设置-车辆信息-行驶证"
- }
- },
-
- {
- "path": "setting/car-information/car-change",
- "style": {
- "navigationBarTitleText": "设置-车辆信息-修改"
- }
- },
- {
- "path": "setting/car-information/car-create",
- "style": {
- "navigationBarTitleText": "设置-车辆信息-添加"
- }
- },
- {
- "path": "setting/bank-card/bank-card",
- "style": {
- "navigationBarTitleText": "银行卡管理"
- }
- },
- {
- "path": "setting/bank-card/bank-card-add",
- "style": {
- "navigationBarTitleText": "银行卡新增"
- }
- },
- {
- "path": "setting/addressManager",
- "style": {
- "navigationBarTitleText": "地址管理"
- }
- },
- {
- "path": "setting/info-export",
- "style": {
- "navigationBarTitleText": "信息副本导出"
- }
- },
- {
- "path": "setting/user-agreement",
- "style": {
- "navigationBarTitleText": "用户协议"
- }
- },
- {
- "path": "setting/conceal-agreement",
- "style": {
- "navigationBarTitleText": "隐私政策"
- }
- },
- {
- "path": "setting/risk-agreement",
- "style": {
- "navigationBarTitleText": "风险提示告知书"
- }
- },
- {
- "path": "setting/usage-instructions",
- "style": {
- "navigationBarTitleText": "权限使用说明"
- }
- },
- {
- "path": "setting/info_connect",
- "style": {
- "navigationBarTitleText": "个人信息收集清单"
- }
- },
- {
- "path": "setting/change-phone",
- "style": {
- "navigationBarTitleText": "修改手机号"
- }
- },
- {
- "path": "setting/change-phone-code",
- "style": {
- "navigationBarTitleText": "修改手机号"
- }
- },
- {
- "path": "setting/change-phone-code-ali",
- "style": {
- "navigationBarTitleText": "修改手机号"
- }
- },
- {
- "path": "excel",
- "style": {
- "navigationBarTitleText": "表格报表",
- "enablePullDownRefresh": false
- }
- }
- ]
- },
- {
- "root": "login", //登录模块
- "pages": [{
- "path": "login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "agreement",
- "style": {
- "navigationBarTitleText": "平台用户服务隐私协议"
- }
- },
- {
- "path": "register-step1",
- "style": {
- "navigationBarTitleText": "注册第一步"
- }
- },
- {
- "path": "register-step2",
- "style": {
- "navigationBarTitleText": "注册第二步"
- }
- },
- {
- "path": "register-step2-ali",
- "style": {
- "navigationBarTitleText": "注册第二步"
- }
- },
- {
- "path": "register-step3",
- "style": {
- "navigationBarTitleText": "注册第三步"
- }
- },
- {
- "path": "forget-pwd-step1",
- "style": {
- "navigationBarTitleText": "忘记密码第一步"
- }
- },
- {
- "path": "forget-pwd-step2",
- "style": {
- "navigationBarTitleText": "忘记密码第二步"
- }
- },
- {
- "path": "forget-pwd-step2-ali",
- "style": {
- "navigationBarTitleText": "忘记密码第二步"
- }
- },
- {
- "path": "forget-pwd-step3",
- "style": {
- "navigationBarTitleText": "忘记密码第三步"
- }
- }
- ]
- },
- {
- //其他服务模块
- "root": "subpackage/service",
- "pages": [{
- "path": "trajectory-map",
- "style": {
- "navigationBarTitleText": "我的轨迹"
- }
- },
- {
- "path": "statistics/index",
- "style": {
- "navigationBarTitleText": "发行数据统计"
- }
- },
- {
- "path": "zfbqy/zfbqy",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "usingComponents": {
- "home": "plugin://myPlugin/home"
- }
- }
- },
- {
- "path": "equityList/equityList",
- "style": {
- "navigationBarTitleText": "权益详情",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "equityInfo/equityInfo",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "equity/equity",
- "style": {
- "navigationBarTitleText": "我的权益",
- "enablePullDownRefresh": false
- }
- }
- ]
- },
- {
- //其他服务模块
- "root": "subpackage/carPark",
- "plugins": {
- "issuer-plugin": {
- // "version": "dev-0b1c3500e972ec0f531654523c44a085",
- "version": "1.0.2",
- "provider": "wxa2d9acdd1054e69b"
- }
- },
- "pages": [
- {
- "path": "etc/etcDeviceInfo",
- "style": {
- "navigationBarTitleText": "设备信息"
- }
- },
- {
- "path": "recharge/recharge-weixin",
- "style": {
- "navigationBarTitleText": "用户账户充值",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "recharge/select-car",
- "style": {
- "navigationBarTitleText": "选择车辆",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "recharge/recharge-pay",
- "style": {
- "navigationBarTitleText": "选择充值方式",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "recharge/result",
- "style": {
- "navigationBarTitleText": "账户充值-完成",
- "enablePullDownRefresh": false
- }
- }
- ]
- }
- ],
- "tabBar": {
- "color": "#999",
- "selectedColor": "#03385D",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "height": "100px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/image/homex.png",
- "selectedIconPath": "static/image/homex-on.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/service/service",
- "iconPath": "static/image/menu.png",
- "selectedIconPath": "static/image/menu-on.png",
- "text": "服务"
- },
- {
- "pagePath": "pages/user/user",
- "iconPath": "static/image/myx.png",
- "selectedIconPath": "static/image/myx-on.png",
- "text": "我的"
- }
- ]
- },
- "eslintConfig": {
- "parser": "babel-eslint"
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "九州ETC",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#eef7f7"
- },
- "uniIdRouter": {},
- "condition": {
- //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [{
- "name": "app", //模式名称
- "path": "pages/index/index", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }]
- }
- }
|