123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143 |
- {
- "leftWindow": {
- "path": "windows/left-window.uvue",
- "style": {
- "width": "350px"
- }
- },
- "topWindow": {
- "path": "windows/top-window.uvue",
- "style": {
- "height": "60px"
- }
- },
- "pages": [
- {
- "path": "pages/tabBar/component",
- "style": {
- "navigationBarTitleText": "内置组件",
- "backgroundColorContent": "@tabBarPagebackgroundColorContent"
- }
- },
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/view/view",
- "group": "0,1,0",
- "style": {
- "navigationBarTitleText": "view | 基本视图容器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/scroll-view/scroll-view",
- "group": "0,1,1",
- "style": {
- "navigationBarTitleText": "scroll-view | 可滚动视图容器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/scroll-view/scroll-view-refresher",
- "style": {
- "navigationBarTitleText": "scroll-view-refresher"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/scroll-view/scroll-view-props",
- "style": {
- "navigationBarTitleText": "非下拉刷新的scroll-view属性示例"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/scroll-view/scroll-view-refresher-props",
- "style": {
- "navigationBarTitleText": "下拉刷新的scroll-view属性示例"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/scroll-view/scroll-view-custom-refresher-props",
- "style": {
- "navigationBarTitleText": "自定义下拉刷新的scroll-view属性示例"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/scroll-view/issue-18587",
- "style": {
- "navigationBarTitleText": "issue-18587"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/scroll-view/issue-18773",
- "style": {
- "navigationBarTitleText": "issue-18773"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/swiper/swiper",
- "group": "0,1,2",
- "style": {
- "navigationBarTitleText": "swiper | 滑块视图容器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/swiper/swiper-anim",
- "style": {
- "navigationBarTitleText": "swiper | 滑块视图容器 - 动画测试"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/match-media/match-media",
- "group": "0,1,3",
- "style": {
- "navigationBarTitleText": "match-media | 匹配检测节点"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/list-view",
- "group": "0,1,6",
- "style": {
- "navigationBarTitleText": "list-view | 列表容器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/list-view-refresh",
- "style": {
- "navigationBarTitleText": "list-view-refresh",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/list-view-multiplex",
- "style": {
- "navigationBarTitleText": "list-view-multiplex"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/list-view-multiplex-input",
- "style": {
- "navigationBarTitleText": "list-view复用input",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/list-view-long-press",
- "style": {
- "navigationBarTitleText": "list-view长按事件",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/list-view-multiplex-video",
- "style": {
- "navigationBarTitleText": "list-view-multiplex-video"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/list-view-children-in-slot",
- "style": {
- "navigationBarTitleText": "list-view-children-in-slot"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/list-view-children-if-show",
- "style": {
- "navigationBarTitleText": "list-item v-if & v-show"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/sticky-section/sticky-section",
- "group": "0,1,8,1",
- "style": {
- "navigationBarTitleText": "sticky-section | 吸顶布局容器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/sticky-section/issues-16118",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/sticky-header/sticky-header",
- "group": "0,1,8,0",
- "style": {
- "navigationBarTitleText": "sticky-header | 吸顶布局容器",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/text/text",
- "group": "0,2,1",
- "style": {
- "navigationBarTitleText": "text | 文本"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/text/text-props",
- "style": {
- "navigationBarTitleText": "text-props"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/rich-text/rich-text",
- "group": "0,2,2",
- "style": {
- "navigationBarTitleText": "rich-text | 富文本"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/rich-text/rich-text-tags",
- "style": {
- "navigationBarTitleText": "rich-text-tags"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/rich-text/rich-text-complex",
- "style": {
- "navigationBarTitleText": "rich-text-complex"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/rich-text/rich-text-list",
- "style": {
- "navigationBarTitleText": "rich-text-list"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/progress/progress",
- "group": "0,2,3",
- "style": {
- "navigationBarTitleText": "progress | 进度条"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/form/form",
- "group": "0,3,2",
- "style": {
- "navigationBarTitleText": "form | 表单"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/button/button",
- "group": "0,3,0",
- "style": {
- "navigationBarTitleText": "button | 按钮"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/button/buttonstatus",
- "style": {
- "navigationBarTitleText": "buttonstatus"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/radio/radio",
- "group": "0,3,8",
- "style": {
- "navigationBarTitleText": "radio | 单选框"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/checkbox/checkbox",
- "group": "0,3,1",
- "style": {
- "navigationBarTitleText": "checkbox | 多选框"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/input/input",
- "group": "0,3,3",
- "style": {
- "navigationBarTitleText": "input | 输入框"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/textarea/textarea",
- "group": "0,3,11",
- "style": {
- "navigationBarTitleText": "textarea | 多行输入框"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/slider/slider",
- "group": "0,3,9",
- "style": {
- "navigationBarTitleText": "slider | 滑动选择器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/slider/slider-in-swiper",
- "style": {
- "navigationBarTitleText": "slider-in-swiper"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/slider/slider-maxValue",
- "style": {
- "navigationBarTitleText": "slider-maxValue-test"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/picker-view/picker-view",
- "group": "0,3,7",
- "style": {
- "navigationBarTitleText": "picker-view | 嵌入页面的滚动选择器"
- }
- },
- {
- "path": "pages/component/picker-view/wrap-picker-view",
- "style": {
- "navigationBarTitleText": "picker-view | 嵌入页面的滚动选择器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/switch/switch",
- "group": "0,3,10",
- "style": {
- "navigationBarTitleText": "switch | 开关选择器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/image/image",
- "group": "0,5,0",
- "style": {
- "navigationBarTitleText": "image | 图片"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/image/image-format",
- "style": {
- "navigationBarTitleText": "image-format"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/image/image-mode",
- "style": {
- "navigationBarTitleText": "image-mode"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/image/image-path",
- "style": {
- "navigationBarTitleText": "image-path"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/image/image-large",
- "style": {
- "navigationBarTitleText": "大图测试"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/video/video",
- "group": "0,5,1",
- "style": {
- "navigationBarTitleText": "video | 视频"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/video/video-format",
- "style": {
- "navigationBarTitleText": "video-format"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/navigator/navigator",
- "group": "0,4,0",
- "style": {
- "navigationBarTitleText": "navigator | 页面链接"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/navigator/navigate",
- "style": {
- "navigationBarTitleText": "navigatePage"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/navigator/redirect",
- "style": {
- "navigationBarTitleText": "redirectPage"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/web-view/web-view",
- "group": "0,9",
- "style": {
- "navigationBarTitleText": "web-view"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/web-view/web-view-scroll",
- "style": {
- "navigationBarTitleText": "web-view-scroll"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/web-view/web-view/web-view-local",
- "group": "0,9",
- "style": {
- "navigationBarTitleText": "本地网页"
- }
- },
- // #endif
- // #ifdef MP-WEIXIN
- {
- "path": "pages/component/page-meta/page-meta",
- "group": "0,10",
- "style": {
- "navigationBarTitleText": "page-meta"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/unicloud-db/unicloud-db/contacts/list",
- "group": "0,11",
- "style": {
- "navigationBarTitleText": "联系人",
- "enablePullDownRefresh": true
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/unicloud-db/unicloud-db/contacts/add",
- "style": {
- "navigationBarTitleText": "新增联系人"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/unicloud-db/unicloud-db/contacts/edit",
- "style": {
- "navigationBarTitleText": "编辑联系人"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/unicloud-db/unicloud-db/contacts/detail",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/unicloud-db/unicloud-db/mixin-datacom/mixin-datacom",
- "group": "0,11",
- "style": {
- "navigationBarTitleText": "mixinDatacom"
- }
- },
- // #endif
- {
- "path": "pages/component/global-properties/global-properties",
- "group": "0,0",
- "style": {
- "navigationBarTitleText": "全局属性"
- }
- },
- {
- "path": "pages/component/global-events/global-events",
- "group": "0,0",
- "style": {
- "navigationBarTitleText": "全局事件"
- }
- },
- {
- "path": "pages/component/global-events/global-events-transform",
- "group": "0,0",
- "style": {
- "navigationBarTitleText": "点击事件-transform"
- }
- },
- {
- "path": "pages/component/global-events/transition-events",
- "group": "0,0",
- "style": {
- "navigationBarTitleText": "Transition Events"
- }
- },
- {
- "path": "pages/component/global-events/touch-events",
- "group": "0,0",
- "style": {
- "navigationBarTitleText": "Touch Events"
- }
- },
- {
- "path": "pages/component/global-events/touch-events-bubbles",
- "style": {
- "navigationBarTitleText": "Touch Events bubbles"
- }
- },
- {
- "path": "pages/component/global-events/touch-events-case",
- "style": {
- "navigationBarTitleText": "Touch Events case"
- }
- },
- {
- "path": "pages/component/global-events/touch-events-preventDefault",
- "style": {
- "navigationBarTitleText": "preventDefault"
- }
- },
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/component/nested-scroll-header/nested-scroll-header",
- "group": "0,1,9,0",
- "style": {
- "navigationBarTitleText": "nested-scroll-header"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/component/nested-scroll-body/nested-scroll-body",
- "group": "0,1,9,1",
- "style": {
- "navigationBarTitleText": "nested-scroll-body"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/swiper/swiper-list-view",
- "style": {
- "navigationBarTitleText": "swiper嵌套list-view",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef WEB || MP-WEIXIN
- {
- "path": "pages/component/movable-view/movable-view",
- "group": "0,1,4,1",
- "style": {
- "navigationBarTitleText": "movable-view | 可拖动视图容器"
- }
- },
- // #endif
- // #ifdef WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/label/label",
- "group": "0,3,5",
- "style": {
- "navigationBarTitleText": "label"
- }
- },
- // #endif
- // #ifdef WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/picker/picker",
- "group": "0,3,6",
- "style": {
- "navigationBarTitleText": "picker | 底部弹出滚动选择器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/map/map",
- "group": "0,6",
- "style": {
- "navigationBarTitleText": "map | 地图"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/cover-view/cover-view",
- "group": "0,1,5,0",
- "style": {
- "navigationBarTitleText": "cover-view"
- }
- },
- // #endif
- // #ifdef WEB || MP-WEIXIN
- {
- "path": "pages/component/editor/editor",
- "group": "0,3,4",
- "style": {
- "navigationBarTitleText": "editor | 富文本编辑器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/issue-17030",
- "style": {
- "navigationBarTitleText": "issue-17030"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/issue-2199",
- "style": {
- "navigationBarTitleText": "issue-2199",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/issue-15701",
- "style": {
- "navigationBarTitleText": "issue-15701",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/issue-13858",
- "style": {
- "navigationBarTitleText": "issue-13858",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/issue-16126",
- "style": {
- "navigationBarTitleText": "issue-16126"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/issue-16938",
- "style": {
- "navigationBarTitleText": "issue-16938"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/component/list-view/issue-15878",
- "style": {
- "navigationBarTitleText": "issue-15878",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/canvas/canvas",
- "group": "0,7",
- "style": {
- "navigationBarTitleText": "canvas | 画布"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/canvas/canvas-context",
- "style": {
- "navigationBarTitleText": "createCanvasContextAsync"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/canvas/canvas/ball",
- "group": "0,7",
- "style": {
- "navigationBarTitleText": "ball"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/component/canvas/canvas/doodle",
- "group": "0,7",
- "style": {
- "navigationBarTitleText": "涂鸦"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/component/native-view/native-view",
- "group": "0,2,4",
- "style": {
- "navigationBarTitleText": "native-view | 自定义原生View组件"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
- {
- "path": "pages/component/ad/ad",
- "group": "0,8",
- "style": {
- "navigationBarTitleText": "ad | 信息流广告",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/component/waterflow/waterflow",
- "group": "0,1,7",
- "style": {
- "navigationBarTitleText": "waterflow | 瀑布流容器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/component/waterflow/waterflow-fit-height",
- "style": {
- "navigationBarTitleText": "waterflow | 瀑布流容器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
- {
- "path": "pages/component/ad/list-view-ad",
- "style": {
- "navigationBarTitleText": "ad | 信息流广告",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/component/share-element/share-element",
- "group": "0,1,10",
- "style": {
- "navigationBarTitleText": "share-element | 共享元素视图容器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/component/share-element/share-element-to",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
- {
- "path": "pages/component/camera/camera",
- "group": "0,5,3",
- "style": {
- "navigationBarTitleText": "camera | 相机"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
- {
- "path": "pages/component/camera/camera-scan-code",
- "style": {
- "navigationBarTitleText": "camera-scan-code | 相机扫码"
- }
- },
- // #endif
- {
- "path": "pages/tabBar/API",
- "style": {
- "navigationBarTitleText": "接口",
- "backgroundColorContent": "@tabBarPagebackgroundColorContent"
- }
- },
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-app/get-app",
- "group": "1,0,0",
- "style": {
- "navigationBarTitleText": "getApp | 获取当前应用实例"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/API/exit/exit",
- "group": "1,1,5",
- "style": {
- "navigationBarTitleText": "uni.exit | 退出应用"
- }
- },
- // #endif
- // #ifdef APP-ANDROID
- {
- "path": "pages/API/install-apk/install-apk",
- "group": "1,6,7",
- "style": {
- "navigationBarTitleText": "uni.installApk | 安装 APK",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-current-pages/get-current-pages",
- "group": "1,0,1",
- "style": {
- "navigationBarTitleText": "getCurrentPages | 获取当前页面栈",
- "enablePullDownRefresh": true
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/get-current-pages/set-page-style-disable-pull-down-refresh",
- "style": {
- "navigationBarTitleText": "setPageStyle pull default false",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-launch-options-sync/get-launch-options-sync",
- "group": "1,1,4,0",
- "style": {
- "navigationBarTitleText": "uni.getLaunchOptionsSync | 获取启动参数"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-enter-options-sync/get-enter-options-sync",
- "group": "1,1,4,1",
- "style": {
- "navigationBarTitleText": "uni.getEnterOptionsSync | 获取本次启动时的参数"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/animation-frame/animation-frame",
- "group": "1,0,2",
- "style": {
- "navigationBarTitleText": "animationFrame | 动画帧"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/navigator/navigator",
- "group": "1,2,0",
- "style": {
- "navigationBarTitleText": "navigator | 页面跳转"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/set-navigation-bar-color/set-navigation-bar-color",
- "group": "1,2,2",
- "style": {
- "navigationBarTitleText": "uni.setNavigationBarColor | 设置导航条颜色"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/set-navigation-bar-title/set-navigation-bar-title",
- "group": "1,2,3",
- "style": {
- "navigationBarTitleText": "uni.setNavigationBarTitle | 设置导航条标题"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/set-page-backgroundColorContent/set-page-backgroundColorContent",
- "group": "1,2",
- "style": {
- "navigationBarTitleText": "设置页面容器背景色"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/navigator/new-page/new-page-1",
- "style": {
- "navigationBarTitleText": "新页面-1"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/navigator/new-page/new-page-3",
- "style": {
- "navigationBarTitleText": "新页面-3"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/navigator/new-page/onLoad-call-api",
- "style": {
- "navigationBarTitleText": "onLoad call api"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/navigator/new-page/onLoad",
- "style": {
- "navigationBarTitleText": "onLoad 生命周期测试"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/pull-down-refresh/pull-down-refresh",
- "group": "1,2,5",
- "style": {
- "navigationBarTitleText": "pullDownRefresh | 页面下拉刷新",
- "enablePullDownRefresh": true
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/storage/storage",
- "group": "1,9",
- "style": {
- "navigationBarTitleText": "storage | key-value本地数据存储"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/storage/storagemanage",
- "style": {
- "navigationBarTitleText": "storage管理器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/env/env",
- "group": "1,1,0",
- "style": {
- "navigationBarTitleText": "uni.env | 环境变量"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/show-action-sheet/show-action-sheet",
- "group": "1,4,1",
- "style": {
- "navigationBarTitleText": "uni.showActionSheet | 弹出操作菜单"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/show-modal/show-modal",
- "group": "1,4,2",
- "style": {
- "navigationBarTitleText": "uni.showModal | 显示模态弹窗"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/show-loading/show-loading",
- "group": "1,4,3",
- "style": {
- "navigationBarTitleText": "uni.showLoading | 显示 loading 提示框"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/show-toast/show-toast",
- "group": "1,4,4",
- "style": {
- "navigationBarTitleText": "uni.showToast | 显示消息提示框"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/load-font-face/load-font-face",
- "group": "1,4,5",
- "style": {
- "navigationBarTitleText": "uni.loadFontFace | 动态加载字体"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/load-font-face/load-font-face-child",
- "style": {
- "navigationBarTitleText": "动态加载字体-子页面"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-location/get-location",
- "group": "1,11,0",
- "style": {
- "navigationBarTitleText": "uni.getLocation | 获取当前位置"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/open-location/open-location",
- "group": "1,11,1",
- "style": {
- "navigationBarTitleText": "uni.openLocation | 使用地图查看位置"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/choose-location/choose-location",
- "group": "1,11,2",
- "style": {
- "navigationBarTitleText": "uni.chooseLocation | 使用地图选择位置"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/interceptor/interceptor",
- "group": "1,1,3",
- "style": {
- "navigationBarTitleText": "interceptor | 拦截器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/interceptor/page1",
- "style": {
- "navigationBarTitleText": "拦截器测试页面 1"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/interceptor/page2",
- "style": {
- "navigationBarTitleText": "拦截器测试页面 2"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/request/request",
- "group": "1,5,0",
- "style": {
- "navigationBarTitleText": "uni.request | 发起网络请求"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/upload-file/upload-file",
- "group": "1,5,1",
- "style": {
- "navigationBarTitleText": "uni.uploadFile | 上传文件"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/download-file/download-file",
- "group": "1,5,2",
- "style": {
- "navigationBarTitleText": "uni.downloadFile | 下载文件"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/websocket/socketTask",
- "style": {
- "navigationBarTitleText": "socketTask"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/websocket/websocket",
- "group": "1,5,5",
- "style": {
- "navigationBarTitleText": "websocket"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/API/connect-event-source/connect-event-source",
- "group": "1,5,6",
- "style": {
- "navigationBarTitleText": "uni.connectEventSource | SSE"
- }
- },
- // #endif
- {
- "path": "pages/API/unicloud/unicloud/cloud-function",
- "group": "1,19,0",
- "style": {
- "navigationBarTitleText": "cloud function | 云函数"
- }
- },
- {
- "path": "pages/API/unicloud/unicloud/cloud-object",
- "group": "1,19,1",
- "style": {
- "navigationBarTitleText": "cloud object | 云对象"
- }
- },
- {
- "path": "pages/API/unicloud/unicloud/sse-channel",
- "group": "1,19,4",
- "style": {
- "navigationBarTitleText": "SSEChannel | 服务端通知通道"
- }
- },
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-system-info/get-system-info",
- "group": "1,6,0",
- "style": {
- "navigationBarTitleText": "uni.getSystemInfo | 获取系统信息"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-device-info/get-device-info",
- "group": "1,6,1",
- "style": {
- "navigationBarTitleText": "uni.getDeviceInfo | 获取设备信息"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-app-base-info/get-app-base-info",
- "group": "1,6,3",
- "style": {
- "navigationBarTitleText": "uni.getAppBaseInfo | 获取APP基础信息"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-system-setting/get-system-setting",
- "group": "1,6,6",
- "style": {
- "navigationBarTitleText": "uni.getSystemSetting | 获取系统设置"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/element-get-bounding-client-rect-async/element-get-bounding-client-rect-async",
- "group": "1,30",
- "style": {
- "navigationBarTitleText": "getBoundingClientRectAsync | 异步获取元素信息"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/element-get-attribute/element-get-attribute",
- "group": "1,30",
- "style": {
- "navigationBarTitleText": "getAttribute | 获取元素的属性值"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/API/element-takesnapshot/element-takesnapshot",
- "group": "1,30",
- "style": {
- "navigationBarTitleText": "takeSnapshot | 截图",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-app-authorize-setting/get-app-authorize-setting",
- "group": "1,6,4",
- "style": {
- "navigationBarTitleText": "uni.getAppAuthorizeSetting | 获取APP授权设置"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/preview-image/preview-image",
- "group": "1,7,1",
- "style": {
- "navigationBarTitleText": "uni.previewImage | 图片预览"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/choose-image/choose-image",
- "group": "1,7,0",
- "style": {
- "navigationBarTitleText": "uni.chooseImage | 拍照或从相册选择图片"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-image-info/get-image-info",
- "group": "1,7,3",
- "style": {
- "navigationBarTitleText": "uni.getImageInfo | 获取图片信息"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/compress-image/compress-image",
- "group": "1,7,4",
- "style": {
- "navigationBarTitleText": "uni.compressImage | 压缩图片"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/choose-video/choose-video",
- "group": "1,7,5",
- "style": {
- "navigationBarTitleText": "uni.chooseVideo | 拍摄视频或从相册中选择视频"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/compress-video/compress-video",
- "group": "1,7,8",
- "style": {
- "navigationBarTitleText": "uni.compressVideo | 压缩视频"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/choose-media/choose-media",
- "group": "1,7,9",
- "style": {
- "navigationBarTitleText": "uni.chooseMedia | 拍摄或从相册选择图片或视频"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/choose-media/fullscreen-video",
- "style": {
- "navigationStyle": "custom"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/choose-file/choose-file",
- "group": "1,7,10",
- "style": {
- "navigationBarTitleText": "uni.chooseFile | 选择文件"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-network-type/get-network-type",
- "group": "1,5,3",
- "style": {
- "navigationBarTitleText": "uni.getNetworkType | 获取网络类型"
- }
- },
- // #endif
- // #ifdef WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/network-status-change/network-status-change",
- "group": "1,5,4",
- "style": {
- "navigationBarTitleText": "NetworkStatusChange | 监听网络状态变化"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/page-scroll-to/page-scroll-to",
- "group": "1,2,6",
- "style": {
- "navigationBarTitleText": "uni.pageScrollTo | 将页面滚动到指定位置"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/event-bus/event-bus",
- "group": "1,1,1",
- "style": {
- "navigationBarTitleText": "eventBus | 事件总线"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/unicloud/unicloud/cloud-storage",
- "group": "1,19,2",
- "style": {
- "navigationBarTitleText": "cloud storage | 云存储"
- }
- },
- // #endif
- {
- "path": "pages/API/unicloud/unicloud/database",
- "group": "1,19,3",
- "style": {
- "navigationBarTitleText": "database | 数据库"
- }
- },
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-battery-info/get-battery-info",
- "group": "1,6,8",
- "style": {
- "navigationBarTitleText": "uni.getBatteryInfo | 获取电池电量信息"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-window-info/get-window-info",
- "group": "1,6,2",
- "style": {
- "navigationBarTitleText": "uni.getWindowInfo | 获取窗口信息"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-window-info/window-area",
- "style": {
- "navigationBarTitleText": "window area",
- "navigationStyle": "custom"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/API/element-draw/element-draw",
- "group": "1,30",
- "style": {
- "navigationBarTitleText": "getDrawableContext | 获取绘制对象",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/API/element-request-fullscreen/element-request-fullscreen",
- "group": "1,30",
- "style": {
- "navigationBarTitleText": "requestFullscreen | 请求全屏显示"
- }
- },
- {
- "path" : "pages/API/element-request-fullscreen/element-request-fullscreen-bugs",
- "style": {
- "navigationBarTitleText": "request-fullscreen-bugs"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/API/facial-recognition-meta-info/facial-recognition-meta-info",
- "group": "1,12,2",
- "style": {
- "navigationBarTitleText": "facialRecognitionMetaInfo | 金融级实人认证",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/API/get-univerify-manager/get-univerify-manager",
- "group": "1,12,0",
- "style": {
- "navigationBarTitleText": "uni.getUniverifyManager | App一键登录",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/API/get-univerify-manager/univerify-custom-page",
- "style": {
- "navigationBarTextStyle": "black",
- "navigationStyle": "custom"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/API/get-univerify-manager/full-webview-page",
- "style": {
- "navigationBarTextStyle": "white",
- "navigationStyle": "custom"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/rpx2px/rpx2px",
- "group": "1,4,6",
- "style": {
- "navigationBarTitleText": "uni.rpx2px | 将rpx单位值转换成px",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID
- {
- "path": "pages/API/create-request-permission-listener/create-request-permission-listener",
- "group": "1,6,16",
- "style": {
- "navigationBarTitleText": "uni.createRequestPermissionListener | 监听权限申请",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/request-payment/request-payment",
- "group": "1,14,0",
- "style": {
- "navigationBarTitleText": "uni.requestPayment | 支付",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
- {
- "path": "pages/API/request-merchant-transfer/request-merchant-transfer",
- "group": "1,14,2",
- "style": {
- "navigationBarTitleText": "uni.requestMerchantTransfer | 转账确认收款",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
- {
- "path": "pages/API/create-rewarded-video-ad/create-rewarded-video-ad",
- "group": "1,13,0",
- "style": {
- "navigationBarTitleText": "uni.createRewardedVideoAd | 激励视频广告",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/request-payment/request-payment/request-payment-uni-pay",
- "group": "1,14",
- "style": {
- "navigationBarTitleText": "uni-pay示例",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-IOS
- {
- "path": "pages/API/virtual-payment/virtual-payment",
- "group": "1,14,1",
- "style": {
- "navigationBarTitleText": "virtualPayment | 虚拟支付",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-IOS
- {
- "path": "pages/API/virtual-payment/virtual-payment-uni-pay",
- "style": {
- "navigationBarTitleText": "苹果虚拟支付(uni-pay)",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/request-payment/request-payment/order-detail",
- "style": {
- "navigationBarTitleText": "订单详情示例",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/make-phone-call/make-phone-call",
- "group": "1,6,9",
- "style": {
- "navigationBarTitleText": "uni.makePhoneCall | 打电话"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/clipboard/clipboard",
- "group": "1,6,10",
- "style": {
- "navigationBarTitleText": "clipboard | 剪切板"
- }
- },
- // #endif
- // #ifdef WEB || MP-WEIXIN
- {
- "path": "pages/API/compass/compass",
- "group": "1,6,11",
- "style": {
- "navigationBarTitleText": "compass | 罗盘"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/scan-code/scan-code",
- "group": "1,6,17",
- "style": {
- "navigationBarTitleText": "uni.scanCode | 扫码"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/theme-change/theme-change",
- "group": "1,4,7",
- "style": {
- "navigationBarTitleText": "themeChange | 主题切换",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef WEB || MP-WEIXIN
- {
- "path": "pages/API/create-intersection-observer/create-intersection-observer",
- "group": "1,4,0",
- "style": {
- "navigationBarTitleText": "uni.createIntersectionObserver | 节点布局相交状态"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-element-by-id/get-element-by-id",
- "group": "1,3,0",
- "style": {
- "navigationBarTitleText": "uni.getElementById | 通过 id 获取 element"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-element-by-id/get-element-by-id-multiple-root-node",
- "style": {
- "navigationBarTitleText": "获取节点-多根节点"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/create-selector-query/create-selector-query",
- "group": "1,3,2",
- "style": {
- "navigationBarTitleText": "uni.createSelectorQuery | 创建 SelectorQuery 实例"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/animate/animate",
- "group": "1,30",
- "style": {
- "navigationBarTitleText": "animate | 动画"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/create-selector-query/create-selector-query-onScroll",
- "style": {
- "navigationBarTitleText": "createSelectorQuery"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/API/get-native-view/element-getnativeview",
- "group": "1,30",
- "style": {
- "navigationBarTitleText": "getNativeView | 获取原生 View",
- "backgroundColor": "#F8F8F8"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/resize-observer/resize-observer",
- "group": "1,30",
- "style": {
- "navigationBarTitleText": "UniResizeObserver"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/API/provider/provider",
- "group": "1,1,6",
- "style": {
- "navigationBarTitleText": "provider | 服务提供商"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/privacy/privacy",
- "group": "1,1,8",
- "style": {
- "navigationBarTitleText": "privacy | 隐私信息授权"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/base64/base64",
- "group": "1,1,2",
- "style": {
- "navigationBarTitleText": "Base64"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/uni-push/uni-push",
- "group": "1,16,0",
- "style": {
- "navigationBarTitleText": "uni-push示例"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB
- {
- "path": "pages/API/report/report",
- "group": "1,17,0",
- "style": {
- "navigationBarTitleText": "uni.report | 统计采集上报"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/dialog-page/dialog-page",
- "group": "1,2,1",
- "style": {
- "navigationBarTitleText": "dialogPage"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/dialog-page/next-page",
- "style": {
- "navigationBarTitleText": "dialogNextPage"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/dialog-page/dialog-1",
- "style": {
- "navigationBarTitleText": "dialogPage1"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/dialog-page/dialog-2",
- "style": {
- "navigationBarTitleText": "dialogPage2"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/dialog-page/dialog-3",
- "style": {
- "navigationBarTitleText": "dialogPage3",
- "navigationBarTextStyle": "black",
- "backgroundColorContent": "#007aff",
- "navigationStyle": "default"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/dialog-page/dialog-4",
- "style": {
- "navigationBarTitleText": "dialogPage4",
- "navigationBarTextStyle": "black"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "pages/API/dialog-page/dialog-5",
- "style": {
- "navigationBarTitleText": "dialogPage5"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
- {
- "path": "pages/API/create-interstitial-ad/create-interstitial-ad",
- "group": "1,13,1",
- "style": {
- "navigationBarTitleText": "uni.createInterstitialAd | 插屏广告",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-background-audio-manager/get-background-audio-manager",
- "group": "1,7,13",
- "style": {
- "navigationBarTitleText": "uni.getBackgroundAudioManager | 背景音频",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID
- {
- "path": "pages/API/set-inner-audio-option/set-inner-audio-option",
- "group": "1,7,12",
- "style": {
- "navigationBarTitleText": "uni.setInnerAudioOption | 音频播放选项",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-recorder-manager/get-recorder-manager",
- "group": "1,7,14",
- "style": {
- "navigationBarTitleText": "uni.getRecorderManager | 录音",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/API/share-with-system/share-with-system",
- "group": "1,15,0",
- "style": {
- "navigationBarTitleText": "uni.shareWithSystem",
- "enablePullDownRefresh": false
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/open-app-authorize-setting/open-app-authorize-setting",
- "group": "1,6,5",
- "style": {
- "navigationBarTitleText": "uni.openAppAuthorizeSetting | 跳转系统授权管理页"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/API/is-simulator/is-simulator",
- "group": "1,6,18",
- "style": {
- "navigationBarTitleText": "uni.isSimulator | 判断是否为模拟器"
- }
- },
- // #endif
- // #ifdef APP-ANDROID
- {
- "path": "pages/API/get-accessibility-info/get-accessibility-info",
- "group": "1,6,19",
- "style": {
- "navigationBarTitleText": "uni.getAccessibilityInfo | 获取无障碍服务信息"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/capture-screen/capture-screen",
- "group": "1,6,15",
- "style": {
- "navigationBarTitleText": "captureScreen | 截屏事件"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/open-document/open-document",
- "group": "1,8,1",
- "style": {
- "navigationBarTitleText": "uni.openDocument | 打开文档"
- }
- },
- // #endif
- // #ifdef MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/bio-auth/bio-auth",
- "group": "1,12,3",
- "style": {
- "navigationBarTitleText": "bioAuth | 生物认证"
- }
- },
- // #endif
- {
- "path": "pages/tabBar/CSS",
- "style": {
- "navigationBarTitleText": "CSS",
- "backgroundColorContent": "@tabBarPagebackgroundColorContent"
- }
- },
- {
- "path": "pages/tabBar/template",
- "style": {
- "navigationBarTitleText": "模板",
- "backgroundColorContent": "@tabBarPagebackgroundColorContent"
- }
- },
- {
- "path": "uni_modules/uni-pay-x/pages/success/success",
- "style": {
- "navigationBarTitleText": "",
- "backgroundColor": "#F8F8F8",
- "navigationBarBackgroundColor": "#007aff",
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "uni_modules/uni-pay-x/pages/ad-interactive-webview/ad-interactive-webview",
- "style": {
- "navigationBarTitleText": "ad",
- "backgroundColor": "#F8F8F8"
- }
- },
- {
- "path": "uni_modules/uni-pay-x/pages/pay-desk/pay-desk",
- "style": {
- "navigationBarTitleText": "收银台",
- "backgroundColor": "#F8F8F8"
- }
- },
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "uni_modules/uni-openLocation/pages/openLocation/openLocation",
- "style": {
- "navigationBarTitleText": " ",
- "navigationStyle": "custom",
- "disableSwipeBack": false
- }
- },
- // #endif
- // #ifdef APP-IOS
- {
- "path": "pages/API/event-bus/uts-event-bus",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- {
- "path": "pages/API/dialog-page/uts-dialog-page",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/get-video-info/get-video-info",
- "group": "1,7,7",
- "style": {
- "navigationBarTitleText": "uni.getVideoInfo | 获取视频信息"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/save-image-to-photos-album/save-image-to-photos-album",
- "group": "1,7,2",
- "style": {
- "navigationBarTitleText": "uni.saveImageToPhotosAlbum | 保存图片到相册"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "pages/API/save-video-to-photos-album/save-video-to-photos-album",
- "group": "1,7,6",
- "style": {
- "navigationBarTitleText": "uni.saveVideoToPhotosAlbum | 保存视频到相册"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "pages/component/button/privacy",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #endif
- // #ifdef APP-HARMONY
- {
- "path": "pages/component/button/privacy-web-view",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
- {
- "path": "uni_modules/uni-upgrade-center-app/pages/uni-app-x/upgrade-popup",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/component/native-view/native-view-time-picker-dialog",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #endif
- {
- "path": "pages/component/image/image-long",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "pages/API/keyboard/keyboard",
- "group": "1,6,20",
- "style": {
- "navigationBarTitleText": "keyboard | 键盘"
- }
- },
- // #endif
- {
- "path": "pages/API/request/requestTask",
- "style": {
- "navigationBarTitleText": "requestTask | 发起流式请求"
- }
- }
- ],
- "subPackages": [
- {
- "root": "pages/API/get-file-system-manager",
- "pages": [
- // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
- {
- "path": "get-file-system-manager",
- "group": "1,8,0",
- "style": {
- "navigationBarTitleText": "uni.getFileSystemManager | 获取文件管理器"
- }
- },
- {
- "path": "filemanage",
- "style": {
- "navigationBarTitleText": "沙盒文件管理器"
- }
- }
- // #endif
- ]
- },
- {
- "root": "pages/API/create-inner-audio-context",
- "pages": [
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "create-inner-audio-context",
- "group": "1,7,11",
- "style": {
- "navigationBarTitleText": "uni.createInnerAudioContext | 音频播放"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "inner-audio-format",
- "style": {
- "navigationBarTitleText": "inner-audio-format"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "inner-audio-path",
- "style": {
- "navigationBarTitleText": "inner-audio-path"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "inner-audio-mult",
- "style": {
- "navigationBarTitleText": "inner-audio-mult"
- }
- }
- // #endif
- ]
- },
- {
- "root": "pages/template",
- "pages": [
- {
- "path": "list-news/list-news",
- "style": {
- "navigationBarTitleText": "列表到详情示例(吸顶)"
- }
- },
- {
- "path": "list-news/detail/detail",
- "style": {
- "navigationBarTitleText": "详情示例"
- }
- },
- {
- "path": "drop-card/drop-card",
- "style": {
- "navigationBarTitleText": "drop-card"
- }
- },
- {
- "path": "swiper-list/swiper-list",
- "style": {
- "navigationBarTitleText": "swiper-list"
- }
- },
- {
- "path": "swiper-list2/swiper-list2",
- "style": {
- "navigationBarTitleText": "swiper-list2"
- }
- },
- {
- "path": "slider-100/slider-100",
- "style": {
- "navigationBarTitleText": "slider x 100"
- }
- },
- {
- "path": "swiper-vertical-video/swiper-vertical-video",
- "style": {
- "navigationStyle": "custom",
- "backgroundColorContent": "#000000"
- }
- },
- // #ifdef APP
- {
- "path": "scroll-sticky/scroll-sticky",
- "style": {
- "navigationBarTitleText": "scroll-view自定义滚动吸顶"
- }
- },
- // #endif
- {
- "path": "scroll-fold-nav/scroll-fold-nav",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black"
- }
- },
- // #ifdef APP
- {
- "path": "custom-refresher/custom-refresher",
- "style": {
- "navigationBarTitleText": "自定义下拉刷新"
- }
- },
- // #endif
- {
- "path": "half-screen/half-screen",
- "style": {
- "navigationBarTitleText": "半屏弹窗"
- }
- },
- {
- "path": "long-list/long-list",
- "style": {
- "navigationBarTitleText": "Android顶部搜索框随时下移长列表",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "long-list2/long-list2",
- "style": {
- "navigationBarTitleText": "顶部banner长列表嵌套滚动示例",
- "enablePullDownRefresh": true
- }
- },
- // #ifdef APP
- {
- "path": "long-list-nested/long-list-nested",
- "style": {
- "navigationBarTitleText": "顶部banner长列表嵌套滚动示例",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pull-zoom-image/pull-zoom-image",
- "style": {
- "navigationStyle": "custom"
- }
- },
- // #endif
- {
- "path": "long-waterflow-nested/long-waterflow-nested",
- "style": {
- "navigationBarTitleText": "顶部banner瀑布流长列表嵌套滚动示例",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "navbar-lite/navbar-lite",
- "style": {
- "navigationBarTitleText": "自定义导航栏",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "custom-tab-bar/custom-tab-bar",
- "style": {
- "navigationBarTitleText": "自定义TabBar"
- }
- },
- // #ifdef APP
- {
- "path": "calendar/calendar",
- "style": {
- "navigationBarTitleText": "日历"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
- {
- "path": "schema/schema",
- "style": {
- "navigationBarTitleText": "打开schema示例"
- }
- },
- // #endif
- {
- "path": "custom-long-list/custom-long-list",
- "style": {
- "navigationBarTitleText": "自定义虚拟长列表",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "long-list-batch/long-list-batch",
- "style": {
- "navigationBarTitleText": "分批加载长列表"
- }
- },
- {
- "path": "test-background-color-content/test-background-color-content",
- "style": {
- "navigationBarTitleText": "",
- "backgroundColorContent": "#fffae8"
- }
- },
- // #ifdef WEB
- {
- "path": "browser-element/browser-element",
- "style": {
- "navigationBarTitleText": "如何使用浏览器 element"
- }
- },
- // #endif
- // #ifdef MP-WEIXIN
- {
- "path": "vant/vant",
- "style": {
- "navigationBarTitleText": "微信自定义组件示例",
- "usingComponents": {
- "vant-button": "/wxcomponents/vant/button/index",
- "vant-icon": "/wxcomponents/vant/icon/index",
- "vant-info": "/wxcomponents/vant/info/index",
- "vant-loading": "/wxcomponents/vant/loading/index"
- }
- }
- },
- {
- "path": "WXS/WXS",
- "style": {
- "navigationBarTitleText": "WXS"
- }
- },
- // #endif
- {
- "path": "issue-14765/issue-14765",
- "style": {
- "navigationBarTitleText": "issue-14765"
- }
- },
- // #ifdef APP-ANDROID || APP-IOS
- {
- "path": "test-uts-button/test-uts-button",
- "style": {
- "navigationBarTitleText": ""
- }
- }
- // #endif
- ]
- },
- {
- "root": "pages/CSS",
- "pages": [
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "background/background-color",
- "group": "2,8,1",
- "style": {
- "navigationBarTitleText": "background-color"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "background/background-image",
- "group": "2,8,2",
- "style": {
- "navigationBarTitleText": "background-image"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border-bottom",
- "group": "2,13,22",
- "style": {
- "navigationBarTitleText": "border-bottom"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border-color",
- "group": "2,13,11",
- "style": {
- "navigationBarTitleText": "border-color"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border-left",
- "group": "2,13,23",
- "style": {
- "navigationBarTitleText": "border-left"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border-radius",
- "group": "2,13,16",
- "style": {
- "navigationBarTitleText": "border-radius"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border-right",
- "group": "2,13,24",
- "style": {
- "navigationBarTitleText": "border-right"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border-style",
- "group": "2,13,1",
- "style": {
- "navigationBarTitleText": "border-style"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border-top",
- "group": "2,13,21",
- "style": {
- "navigationBarTitleText": "border-top"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border-width",
- "group": "2,13,6",
- "style": {
- "navigationBarTitleText": "border-width"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border",
- "group": "2,13,0",
- "style": {
- "navigationBarTitleText": "border"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/complex-border/complex-border",
- "group": "2,13",
- "style": {
- "navigationBarTitleText": "border属性组合示例"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/dynamic-border",
- "group": "2,13",
- "style": {
- "navigationBarTitleText": "border动态修改"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "border/border-update",
- "group": "2,13",
- "style": {
- "navigationBarTitleText": "border更新样式"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "box-shadow/box-shadow",
- "group": "2,15",
- "style": {
- "navigationBarTitleText": "box-shadow"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "display/flex",
- "group": "2,5",
- "style": {
- "navigationBarTitleText": "flex"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "display/none",
- "group": "2,5",
- "style": {
- "navigationBarTitleText": "none"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "flex/align-content",
- "group": "2,7,6",
- "style": {
- "navigationBarTitleText": "align-content"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "flex/align-items",
- "group": "2,7,4",
- "style": {
- "navigationBarTitleText": "align-items"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "flex/flex-basis",
- "group": "2,7,9",
- "style": {
- "navigationBarTitleText": "flex-basis"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "flex/flex-direction",
- "group": "2,7,1",
- "style": {
- "navigationBarTitleText": "flex-direction"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "flex/flex-flow",
- "group": "2,7,10",
- "style": {
- "navigationBarTitleText": "flex-flow"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "flex/flex-grow",
- "group": "2,7,7",
- "style": {
- "navigationBarTitleText": "flex-grow"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "flex/flex-shrink",
- "group": "2,7,8",
- "style": {
- "navigationBarTitleText": "flex-shrink"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "flex/flex",
- "group": "2,7,0",
- "style": {
- "navigationBarTitleText": "flex"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "flex/justify-content",
- "group": "2,7,2",
- "style": {
- "navigationBarTitleText": "justify-content"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "layout/height",
- "group": "2,1,0",
- "style": {
- "navigationBarTitleText": "height"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "layout/max-height",
- "group": "2,1,2",
- "style": {
- "navigationBarTitleText": "max-height"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "layout/max-width",
- "group": "2,0,2",
- "style": {
- "navigationBarTitleText": "max-width"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "layout/min-height",
- "group": "2,1,1",
- "style": {
- "navigationBarTitleText": "min-height"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "layout/min-width",
- "group": "2,0,1",
- "style": {
- "navigationBarTitleText": "min-width"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "layout/position",
- "group": "2,9,0",
- "style": {
- "navigationBarTitleText": "position"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "layout/width",
- "group": "2,0,0",
- "style": {
- "navigationBarTitleText": "width"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "layout/z-index",
- "group": "2,10",
- "style": {
- "navigationBarTitleText": "z-index"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "layout/visibility",
- "group": "2,6",
- "style": {
- "navigationBarTitleText": "visibility"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "margin/margin-bottom",
- "group": "2,2,2",
- "style": {
- "navigationBarTitleText": "margin-bottom"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "margin/margin-left",
- "group": "2,2,3",
- "style": {
- "navigationBarTitleText": "margin-left"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "margin/margin-right",
- "group": "2,2,4",
- "style": {
- "navigationBarTitleText": "margin-right"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "margin/margin-top",
- "group": "2,2,1",
- "style": {
- "navigationBarTitleText": "margin-top"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "margin/margin",
- "group": "2,2,0",
- "style": {
- "navigationBarTitleText": "margin"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "overflow/overflow",
- "group": "2,11",
- "style": {
- "navigationBarTitleText": "overflow"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "padding/padding-bottom",
- "group": "2,3,2",
- "style": {
- "navigationBarTitleText": "padding-bottom"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "padding/padding-left",
- "group": "2,3,3",
- "style": {
- "navigationBarTitleText": "padding-left"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "padding/padding-right",
- "group": "2,3,4",
- "style": {
- "navigationBarTitleText": "padding-right"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "padding/padding-top",
- "group": "2,3,1",
- "style": {
- "navigationBarTitleText": "padding-top"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "padding/padding",
- "group": "2,3,0",
- "style": {
- "navigationBarTitleText": "padding"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/color",
- "group": "2,14,0",
- "style": {
- "navigationBarTitleText": "color"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/font-family",
- "group": "2,14,2",
- "style": {
- "navigationBarTitleText": "font-family"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/font-size",
- "group": "2,14,1",
- "style": {
- "navigationBarTitleText": "font-size"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/font-style",
- "group": "2,14,3",
- "style": {
- "navigationBarTitleText": "font-style"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/font-weight",
- "group": "2,14,4",
- "style": {
- "navigationBarTitleText": "font-weight"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/letter-spacing",
- "group": "2,14,15",
- "style": {
- "navigationBarTitleText": "letter-spacing"
- }
- },
- // #endif
- {
- "path": "text/font-family-icon",
- "style": {
- "navigationBarTitleText": "font-family: uni-icon"
- }
- },
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/line-height",
- "group": "2,14,13",
- "style": {
- "navigationBarTitleText": "line-height"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/text-align",
- "group": "2,14,10",
- "style": {
- "navigationBarTitleText": "text-align"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/text-overflow",
- "group": "2,14,11",
- "style": {
- "navigationBarTitleText": "text-overflow"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/text-decoration-line",
- "group": "2,14,6",
- "style": {
- "navigationBarTitleText": "text-decoration-line"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "text/text-shadow",
- "group": "2,14,12",
- "style": {
- "navigationBarTitleText": "text-shadow"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "transition/transition",
- "group": "2,16",
- "style": {
- "navigationBarTitleText": "transition"
- }
- },
- // #endif
- // #ifdef APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "transition/transition-transform",
- "style": {
- "navigationBarTitleText": "transition-transform"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "pointer-events/pointer-events",
- "group": "2,18",
- "style": {
- "navigationBarTitleText": "pointer-events"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "transform/translate",
- "group": "2,17",
- "style": {
- "navigationBarTitleText": "translate"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "transform/scale",
- "group": "2,17",
- "style": {
- "navigationBarTitleText": "scale"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "transform/rotate",
- "group": "2,17",
- "style": {
- "navigationBarTitleText": "rotate"
- }
- },
- // #endif
- {
- "path": "variable/variable",
- "group": "2,20",
- "style": {
- "navigationBarTitleText": "预置css变量",
- "pageOrientation": "auto"
- }
- },
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "overflow/overflow-visible-event",
- "group": "2,11",
- "style": {
- "navigationBarTitleText": "overflow-visible-event"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "transform/transform-origin",
- "style": {
- "navigationBarTitleText": "transform-origin"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "variable/custom_variable",
- "group": "2,20",
- "style": {
- "navigationBarTitleText": "自定义css变量",
- "pageOrientation": "auto"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "function/function",
- "group": "2,20",
- "style": {
- "navigationBarTitleText": "env 函数",
- "pageOrientation": "auto"
- }
- },
- // #endif
- {
- "path": "transition/transition-duration",
- "style": {
- "navigationBarTitleText": ""
- }
- },
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "function/rgb",
- "group": "2,20",
- "style": {
- "navigationBarTitleText": "rgb 函数"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "function/rgba",
- "group": "2,20",
- "style": {
- "navigationBarTitleText": "rgba 函数"
- }
- },
- // #endif
- // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
- {
- "path": "function/url",
- "group": "2,20",
- "style": {
- "navigationBarTitleText": "url 函数"
- }
- }
- // #endif
- ]
- }
- ],
- "globalStyle": {
- "pageOrientation": "portrait",
- "navigationBarTitleText": "Hello uniapp x",
- "navigationBarTextStyle": "@navigationBarTextStyle",
- "navigationBarBackgroundColor": "@navigationBarBackgroundColor",
- "backgroundColorContent": "@backgroundColorContent",
- "backgroundColor": "@backgroundColor",
- "backgroundTextStyle": "@backgroundTextStyle"
- },
- // #ifndef APP-HARMONY
- "tabBar": {
- "color": "@tabBarColor",
- "selectedColor": "@tabBarSelectedColor",
- "borderStyle": "@tabBarBorderStyle",
- "backgroundColor": "@tabBarBackgroundColor",
- "list": [
- {
- "pagePath": "pages/tabBar/component",
- "iconPath": "@tabBarComponentIconPath",
- "selectedIconPath": "@tabBarComponentSelectedIconPath",
- "text": "组件"
- },
- {
- "pagePath": "pages/tabBar/API",
- "iconPath": "@tabBarAPIIconPath",
- "selectedIconPath": "@tabBarAPISelectedIconPath",
- "text": "接口"
- },
- {
- "pagePath": "pages/tabBar/CSS",
- "iconPath": "@tabBarCSSIconPath",
- "selectedIconPath": "@tabBarCSSSelectedIconPath",
- "text": "CSS"
- },
- {
- "pagePath": "pages/tabBar/template",
- "iconPath": "@tabBarTemplateIconPath",
- "selectedIconPath": "@tabBarTemplateSelectedIconPath",
- "text": "模板"
- }
- ]
- },
- // #endif
- // #ifdef APP-HARMONY
- "tabBar": {
- "color": "@tabBarColor",
- "selectedColor": "@tabBarSelectedColor",
- "borderStyle": "@tabBarBorderStyle",
- "backgroundColor": "@tabBarBackgroundColor",
- "list": [
- {
- "pagePath": "pages/tabBar/component",
- "iconPath": "static/component.png",
- "selectedIconPath": "static/componentHL.png",
- "text": "组件"
- },
- {
- "pagePath": "pages/tabBar/API",
- "iconPath": "static/api.png",
- "selectedIconPath": "static/apiHL.png",
- "text": "接口"
- },
- {
- "pagePath": "pages/tabBar/CSS",
- "iconPath": "static/css.png",
- "selectedIconPath": "static/cssHL.png",
- "text": "CSS"
- },
- {
- "pagePath": "pages/tabBar/template",
- "iconPath": "static/template.png",
- "selectedIconPath": "static/templateHL.png",
- "text": "模板"
- }
- ]
- },
- // #endif
- "condition": {
- //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- },
- "groups": [
- {
- "id": "component",
- "name": "组件",
- "children": [
- {
- "id": "component.global-properties-events",
- "name": "全局属性和事件"
- },
- {
- "id": "component.view-container",
- "name": "视图容器",
- "children": [
- {
- "id": "component.view-container.view",
- "name": "view"
- },
- {
- "id": "component.view-container.scroll-view",
- "name": "scroll-view"
- },
- {
- "id": "component.view-container.swiper",
- "name": "swiper"
- },
- {
- "id": "component.view-container.match-media",
- "name": "match-media"
- },
- {
- "id": "component.view-container.movable",
- "name": "movable",
- "children": [
- null,
- {
- "id": "component.view-container.movable.movable-view",
- "name": "movable-view"
- }
- ]
- },
- {
- "id": "component.view-container.cover",
- "name": "cover",
- "children": [
- {
- "id": "component.view-container.cover.cover-view",
- "name": "cover-view"
- }
- ]
- },
- {
- "id": "component.view-container.list-view",
- "name": "list-view"
- },
- {
- "id": "component.view-container.waterflow",
- "name": "waterflow"
- },
- {
- "id": "component.view-container.sticky",
- "name": "sticky",
- "children": [
- {
- "id": "component.view-container.sticky.sticky-header",
- "name": "sticky-header"
- },
- {
- "id": "component.view-container.sticky.sticky-section",
- "name": "sticky-section"
- }
- ]
- },
- {
- "id": "component.view-container.nested-scroll",
- "name": "nested-scroll",
- "children": [
- {
- "id": "component.view-container.nested-scroll.nested-scroll-header",
- "name": "nested-scroll-header"
- },
- {
- "id": "component.view-container.nested-scroll.nested-scroll-body",
- "name": "nested-scroll-body"
- }
- ]
- },
- {
- "id": "component.view-container.share-element",
- "name": "share-element"
- }
- ]
- },
- {
- "id": "component.basic-content",
- "name": "基础内容",
- "children": [
- null,
- {
- "id": "component.basic-content.text",
- "name": "text"
- },
- {
- "id": "component.basic-content.rich-text",
- "name": "rich-text"
- },
- {
- "id": "component.basic-content.progress",
- "name": "progress"
- },
- {
- "id": "component.basic-content.native-view",
- "name": "native-view"
- }
- ]
- },
- {
- "id": "component.form-component",
- "name": "表单组件",
- "children": [
- {
- "id": "component.form-component.button",
- "name": "button"
- },
- {
- "id": "component.form-component.checkbox",
- "name": "checkbox"
- },
- {
- "id": "component.form-component.form",
- "name": "form"
- },
- {
- "id": "component.form-component.input",
- "name": "input"
- },
- {
- "id": "component.form-component.editor",
- "name": "editor"
- },
- {
- "id": "component.form-component.label",
- "name": "label"
- },
- {
- "id": "component.form-component.picker",
- "name": "picker"
- },
- {
- "id": "component.form-component.picker-view",
- "name": "picker-view"
- },
- {
- "id": "component.form-component.radio",
- "name": "radio"
- },
- {
- "id": "component.form-component.slider",
- "name": "slider"
- },
- {
- "id": "component.form-component.switch",
- "name": "switch"
- },
- {
- "id": "component.form-component.textarea",
- "name": "textarea"
- }
- ]
- },
- {
- "id": "component.navigation",
- "name": "导航",
- "children": [
- {
- "id": "component.navigation.navigator",
- "name": "navigator"
- }
- ]
- },
- {
- "id": "component.media",
- "name": "媒体组件",
- "children": [
- {
- "id": "component.media.image",
- "name": "image"
- },
- {
- "id": "component.media.video",
- "name": "video"
- },
- null,
- {
- "id": "component.media.camera",
- "name": "camera"
- }
- ]
- },
- {
- "id": "component.map",
- "name": "地图"
- },
- {
- "id": "component.canvas",
- "name": "画布"
- },
- {
- "id": "component.ad",
- "name": "广告"
- },
- {
- "id": "component.web-view",
- "name": "网页"
- },
- {
- "id": "component.page-meta",
- "name": "page-meta"
- },
- {
- "id": "component.unicloud",
- "name": "unicloud"
- }
- ]
- },
- {
- "id": "API",
- "name": "API",
- "children": [
- {
- "id": "api.global",
- "name": "全局",
- "children": [
- {
- "id": "api.global.getApp",
- "name": "getApp"
- },
- {
- "id": "api.global.getCurrentPages",
- "name": "getCurrentPages"
- },
- {
- "id": "api.global.animationFrame",
- "name": "animationFrame"
- }
- ]
- },
- {
- "id": "api.base",
- "name": "基础",
- "children": [
- {
- "id": "api.base.env",
- "name": "uni.env"
- },
- {
- "id": "api.base.eventBus",
- "name": "eventBus"
- },
- {
- "id": "api.base.base64",
- "name": "Base64"
- },
- {
- "id": "api.base.interceptor",
- "name": "interceptor"
- },
- {
- "id": "api.base.launch",
- "name": "启动",
- "children": [
- {
- "id": "api.base.launch.getLaunchOptionsSync",
- "name": "uni.getLaunchOptionsSync"
- },
- {
- "id": "api.base.launch.getEnterOptionsSync",
- "name": "uni.getEnterOptionsSync"
- }
- ]
- },
- {
- "id": "api.base.exit",
- "name": "uni.exit"
- },
- {
- "id": "api.base.provider",
- "name": "provider"
- },
- null,
- {
- "id": "api.base.privacy",
- "name": "privacy"
- }
- ]
- },
- {
- "id": "api.page",
- "name": "页面和路由",
- "children": [
- {
- "id": "api.page.navigator",
- "name": "navigator"
- },
- {
- "id": "api.page.dialogPage",
- "name": "dialogPage"
- },
- {
- "id": "api.page.setNavigationBarColor",
- "name": "uni.setNavigationBarColor"
- },
- {
- "id": "api.page.setNavigationBarTitle",
- "name": "uni.setNavigationBarTitle"
- },
- null,
- {
- "id": "api.page.pullDownRefresh",
- "name": "pullDownRefresh"
- },
- {
- "id": "api.page.pageScrollTo",
- "name": "uni.pageScrollTo"
- }
- ]
- },
- {
- "id": "api.dom",
- "name": "element 和 node",
- "children": [
- {
- "id": "api.dom.getElementById",
- "name": "uni.getElementById"
- },
- null,
- {
- "id": "api.dom.createSelectorQuery",
- "name": "uni.createSelectorQuery"
- }
- ]
- },
- {
- "id": "api.ui",
- "name": "界面",
- "children": [
- {
- "id": "api.ui.createIntersectionObserver",
- "name": "uni.createIntersectionObserver"
- },
- {
- "id": "api.ui.actionSheet",
- "name": "actionSheet",
- "children": [
- {
- "id": "api.ui.actionSheet.showActionSheet",
- "name": "uni.showActionSheet"
- }
- ]
- },
- {
- "id": "api.ui.modal",
- "name": "modal",
- "children": [
- {
- "id": "api.ui.modal.showModal",
- "name": "uni.showModal"
- }
- ]
- },
- {
- "id": "api.ui.loading",
- "name": "loading",
- "children": [
- {
- "id": "api.ui.loading.showLoading",
- "name": "uni.showLoading"
- }
- ]
- },
- {
- "id": "api.ui.toast",
- "name": "toast",
- "children": [
- {
- "id": "api.ui.toast.showToast",
- "name": "uni.showToast"
- }
- ]
- },
- {
- "id": "api.ui.loadFontFace",
- "name": "uni.loadFontFace"
- },
- {
- "id": "api.ui.rpx2px",
- "name": "uni.rpx2px"
- },
- {
- "id": "api.ui.themeChange",
- "name": "themeChange"
- }
- ]
- },
- {
- "id": "api.network",
- "name": "网络",
- "children": [
- {
- "id": "api.network.request",
- "name": "uni.request"
- },
- {
- "id": "api.network.uploadFile",
- "name": "uni.uploadFile"
- },
- {
- "id": "api.network.downloadFile",
- "name": "uni.downloadFile"
- },
- {
- "id": "api.network.getNetworkType",
- "name": "uni.getNetworkType"
- },
- {
- "id": "api.network.networkStatusChange",
- "name": "NetworkStatusChange"
- },
- {
- "id": "api.network.websocket",
- "name": "websocket"
- },
- {
- "id": "api.network.connectEventSource",
- "name": "uni.connectEventSource"
- }
- ]
- },
- {
- "id": "api.device",
- "name": "设备",
- "children": [
- {
- "id": "api.device.getSystemInfo",
- "name": "getSystemInfo"
- },
- {
- "id": "api.device.getDeviceInfo",
- "name": "uni.getDeviceInfo"
- },
- {
- "id": "api.device.getWindowInfo",
- "name": "uni.getWindowInfo"
- },
- {
- "id": "api.device.getAppBaseInfo",
- "name": "uni.getAppBaseInfo"
- },
- {
- "id": "api.device.getAppAuthorizeSetting",
- "name": "uni.getAppAuthorizeSetting"
- },
- {
- "id": "api.device.openAppAuthorizeSetting",
- "name": "uni.openAppAuthorizeSetting"
- },
- {
- "id": "api.device.getSystemSetting",
- "name": "uni.getSystemSetting"
- },
- {
- "id": "api.device.installApk",
- "name": "uni.installApk"
- },
- {
- "id": "api.device.getBatteryInfo",
- "name": "getBatteryInfo"
- },
- {
- "id": "api.device.makePhoneCall",
- "name": "uni.makePhoneCall"
- },
- {
- "id": "api.device.clipboard",
- "name": "clipboard"
- },
- {
- "id": "api.device.compass",
- "name": "compass"
- },
- null,
- null,
- null,
- {
- "id": "api.device.captureScreen",
- "name": "captureScreen"
- },
- {
- "id": "api.device.createRequestPermissionListener",
- "name": "uni.createRequestPermissionListener"
- },
- {
- "id": "api.device.scanCode",
- "name": "uni.scanCode"
- },
- {
- "id": "api.device.isSimulator",
- "name": "uni.isSimulator"
- },
- {
- "id": "api.device.getAccessibilityInfo",
- "name": "uni.getAccessibilityInfo"
- },
- {
- "id": "api.device.keyboard",
- "name": "keyboard"
- }
- ]
- },
- {
- "id": "api.media",
- "name": "媒体",
- "children": [
- {
- "id": "api.media.chooseImage",
- "name": "uni.chooseImage"
- },
- {
- "id": "api.media.previewImage",
- "name": "previewImage"
- },
- {
- "id": "api.media.saveImageToPhotosAlbum",
- "name": "saveImageToPhotosAlbum"
- },
- {
- "id": "api.media.getImageInfo",
- "name": "uni.getImageInfo"
- },
- {
- "id": "api.media.compressImage",
- "name": "uni.compressImage"
- },
- {
- "id": "api.media.chooseVideo",
- "name": "uni.chooseVideo"
- },
- {
- "id": "api.media.saveVideoToPhotosAlbum",
- "name": "saveVideoToPhotosAlbum"
- },
- {
- "id": "api.media.getVideoInfo",
- "name": "getVideoInfo"
- },
- {
- "id": "api.media.compressVideo",
- "name": "uni.compressVideo"
- },
- {
- "id": "api.media.chooseMedia",
- "name": "uni.chooseMedia"
- },
- {
- "id": "api.media.chooseFile",
- "name": "uni.chooseFile"
- },
- {
- "id": "api.media.createInnerAudioContext",
- "name": "uni.createInnerAudioContext"
- },
- {
- "id": "api.media.setInnerAudioOption",
- "name": "uni.setInnerAudioOption"
- },
- {
- "id": "api.media.getBackgroundAudioManager",
- "name": "uni.getBackgroundAudioManager"
- },
- {
- "id": "api.media.getRecorderManager",
- "name": "uni.getRecorderManager"
- }
- ]
- },
- {
- "id": "api.file",
- "name": "文件",
- "children": [
- {
- "id": "api.file.getFileSystemManager",
- "name": "uni.getFileSystemManager"
- },
- {
- "id": "api.file.openDocument",
- "name": "uni.openDocument"
- }
- ]
- },
- {
- "id": "api.storage",
- "name": "数据存储"
- },
- null,
- {
- "id": "api.location",
- "name": "位置",
- "children": [
- {
- "id": "api.location.getLocation",
- "name": "uni.getLocation"
- },
- {
- "id": "api.location.openLocation",
- "name": "uni.openLocation"
- },
- {
- "id": "api.location.chooseLocation",
- "name": "uni.chooseLocation"
- }
- ]
- },
- {
- "id": "api.loginVerify",
- "name": "登录与认证",
- "children": [
- {
- "id": "api.loginVerify.getUniverifyManager",
- "name": "uni.getUniverifyManager"
- },
- null,
- {
- "id": "api.loginVerify.facialRecognitionMetaInfo",
- "name": "facialRecognitionMetaInfo"
- },
- {
- "id": "api.device.bioAuth",
- "name": "bioAuth"
- }
- ]
- },
- {
- "id": "api.ad",
- "name": "广告",
- "children": [
- {
- "id": "api.ad.createRewardedVideoAd",
- "name": "uni.createRewardedVideoAd"
- },
- {
- "id": "api.ad.createInterstitialAd",
- "name": "uni.createInterstitialAd"
- }
- ]
- },
- {
- "id": "api.payment",
- "name": "支付",
- "children": [
- {
- "id": "api.payment.requestPayment",
- "name": "uni.requestPayment"
- },
- {
- "id": "api.payment.virtualPayment",
- "name": "virtualPayment"
- },
- {
- "id": "api.payment.requestMerchantTransfer",
- "name": "uni.requestMerchantTransfer"
- }
- ]
- },
- {
- "id": "api.share",
- "name": "分享",
- "children": [
- {
- "id": "api.share.shareWithSystem",
- "name": "uni.shareWithSystem"
- }
- ]
- },
- {
- "id": "api.push",
- "name": "推送",
- "children": [
- {
- "id": "api.push.uni-push",
- "name": "push"
- }
- ]
- },
- {
- "id": "api.stat",
- "name": "统计",
- "children": [
- {
- "id": "api.stat.report",
- "name": "uni.report"
- }
- ]
- },
- null,
- {
- "id": "api.unicloud",
- "name": "uniCloud客户端API",
- "children": [
- {
- "id": "api.unicloud.cloudFunction",
- "name": "cloudFunction"
- },
- {
- "id": "api.unicloud.cloudObject",
- "name": "cloudObject"
- },
- {
- "id": "api.unicloud.cloudStorage",
- "name": "cloudStorage"
- },
- {
- "id": "api.unicloud.database",
- "name": "database"
- },
- {
- "id": "api.unicloud.sseChannel",
- "name": "sseChannel"
- }
- ]
- },
- null,
- null,
- null,
- null,
- null,
- null,
- null,
- null,
- null,
- null,
- {
- "id": "api.elementInstance",
- "name": "UniElement 实例"
- }
- ]
- },
- {
- "id": "CSS",
- "name": "组件",
- "children": [
- {
- "id": "css.properties.width",
- "name": "width",
- "children": [
- {
- "id": "css.properties.width.width",
- "name": "width"
- },
- {
- "id": "css.properties.width.min-width",
- "name": "min-width"
- },
- {
- "id": "css.properties.width.max-width",
- "name": "max-width"
- }
- ]
- },
- {
- "id": "css.properties.height",
- "name": "height",
- "children": [
- {
- "id": "css.properties.height.height",
- "name": "height"
- },
- {
- "id": "css.properties.height.min-height",
- "name": "min-height"
- },
- {
- "id": "css.properties.height.max-height",
- "name": "max-height"
- }
- ]
- },
- {
- "id": "css.properties.margin",
- "name": "margin",
- "children": [
- {
- "id": "css.properties.margin.margin",
- "name": "margin"
- },
- {
- "id": "css.properties.margin.margin-top",
- "name": "margin-top"
- },
- {
- "id": "css.properties.margin.margin-bottom",
- "name": "margin-bottom"
- },
- {
- "id": "css.properties.margin.margin-left",
- "name": "margin-left"
- },
- {
- "id": "css.properties.margin.margin-right",
- "name": "margin-right"
- }
- ]
- },
- {
- "id": "css.properties.padding",
- "name": "padding",
- "children": [
- {
- "id": "css.properties.padding.padding",
- "name": "padding"
- },
- {
- "id": "css.properties.padding.padding-top",
- "name": "padding-top"
- },
- {
- "id": "css.properties.padding.padding-bottom",
- "name": "padding-bottom"
- },
- {
- "id": "css.properties.padding.padding-left",
- "name": "padding-left"
- },
- {
- "id": "css.properties.padding.padding-right",
- "name": "padding-right"
- }
- ]
- },
- null,
- {
- "id": "display",
- "name": "display"
- },
- {
- "id": "css.properties.visibility",
- "name": "visibility"
- },
- {
- "id": "css.properties.flex",
- "name": "flex",
- "children": [
- {
- "id": "css.properties.flex.flex",
- "name": "flex"
- },
- {
- "id": "css.properties.flex.flex-direction",
- "name": "flex-direction"
- },
- {
- "id": "css.properties.flex.justify-content",
- "name": "justify-content"
- },
- null,
- {
- "id": "css.properties.flex.align-items",
- "name": "align-items"
- },
- null,
- {
- "id": "css.properties.flex.align-content",
- "name": "align-content"
- },
- {
- "id": "css.properties.flex.flex-grow",
- "name": "flex-grow"
- },
- {
- "id": "css.properties.flex.flex-shrink",
- "name": "flex-shrink"
- },
- {
- "id": "css.properties.flex.flex-basis",
- "name": "flex-basis"
- },
- {
- "id": "css.properties.flex.flex-flow",
- "name": "flex-flow"
- }
- ]
- },
- {
- "id": "css.properties.background",
- "name": "background",
- "children": [
- null,
- {
- "id": "css.properties.background.background-color",
- "name": "background-color"
- },
- {
- "id": "css.properties.background.background-image",
- "name": "background-image"
- }
- ]
- },
- {
- "id": "css.properties.position",
- "name": "position",
- "children": [
- {
- "id": "css.properties.position.position",
- "name": "position"
- }
- ]
- },
- {
- "id": "css.properties.z-index",
- "name": "z-index"
- },
- {
- "id": "overflow",
- "name": "overflow"
- },
- null,
- {
- "id": "css.properties.border",
- "name": "border",
- "children": [
- {
- "id": "css.properties.border.border",
- "name": "border"
- },
- {
- "id": "css.properties.border.border-style",
- "name": "border-style"
- },
- null,
- null,
- null,
- null,
- {
- "id": "css.properties.border.border-width",
- "name": "border-width"
- },
- null,
- null,
- null,
- null,
- {
- "id": "css.properties.border.border-color",
- "name": "border-color"
- },
- null,
- null,
- null,
- null,
- {
- "id": "css.properties.border.border-radius",
- "name": "border-radius"
- },
- null,
- null,
- null,
- null,
- {
- "id": "css.properties.border.border-top",
- "name": "border-top"
- },
- {
- "id": "css.properties.border.border-bottom",
- "name": "border-bottom"
- },
- {
- "id": "css.properties.border.border-left",
- "name": "border-left"
- },
- {
- "id": "css.properties.border.border-right",
- "name": "border-right"
- }
- ]
- },
- {
- "id": "css.properties.text",
- "name": "text",
- "children": [
- {
- "id": "css.properties.text.color",
- "name": "color"
- },
- {
- "id": "css.properties.text.font-size",
- "name": "font-size"
- },
- {
- "id": "css.properties.text.font-family",
- "name": "font-family"
- },
- {
- "id": "css.properties.text.font-style",
- "name": "font-style"
- },
- {
- "id": "css.properties.text.font-weight",
- "name": "font-weight"
- },
- null,
- {
- "id": "css.properties.text.text-decoration-line",
- "name": "text-decoration-line"
- },
- null,
- null,
- null,
- {
- "id": "css.properties.text.text-align",
- "name": "text-align"
- },
- {
- "id": "css.properties.text.text-overflow",
- "name": "text-overflow"
- },
- {
- "id": "css.properties.text.text-shadow",
- "name": "text-shadow"
- },
- {
- "id": "css.properties.text.line-height",
- "name": "line-height"
- },
- null,
- {
- "id": "css.properties.text.letter-spacing",
- "name": "letter-spacing"
- }
- ]
- },
- {
- "id": "css.properties.box-shadow",
- "name": "box-shadow"
- },
- {
- "id": "css.properties.transition",
- "name": "transition"
- },
- {
- "id": "css.properties.transform",
- "name": "transform"
- },
- {
- "id": "css.properties.pointer-events",
- "name": "pointer-events"
- },
- null,
- {
- "id": "function",
- "name": "函数",
- "children" : [
- {
- "id": "variable",
- "name": "variable"
- },
- {
- "id": "function",
- "name": "function"
- }
- ]
- }
- ]
- }
- ]
- }
|