pages.json 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143
  1. {
  2. "leftWindow": {
  3. "path": "windows/left-window.uvue",
  4. "style": {
  5. "width": "350px"
  6. }
  7. },
  8. "topWindow": {
  9. "path": "windows/top-window.uvue",
  10. "style": {
  11. "height": "60px"
  12. }
  13. },
  14. "pages": [
  15. {
  16. "path": "pages/tabBar/component",
  17. "style": {
  18. "navigationBarTitleText": "内置组件",
  19. "backgroundColorContent": "@tabBarPagebackgroundColorContent"
  20. }
  21. },
  22. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  23. {
  24. "path": "pages/component/view/view",
  25. "group": "0,1,0",
  26. "style": {
  27. "navigationBarTitleText": "view | 基本视图容器"
  28. }
  29. },
  30. // #endif
  31. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  32. {
  33. "path": "pages/component/scroll-view/scroll-view",
  34. "group": "0,1,1",
  35. "style": {
  36. "navigationBarTitleText": "scroll-view | 可滚动视图容器"
  37. }
  38. },
  39. // #endif
  40. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  41. {
  42. "path": "pages/component/scroll-view/scroll-view-refresher",
  43. "style": {
  44. "navigationBarTitleText": "scroll-view-refresher"
  45. }
  46. },
  47. // #endif
  48. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  49. {
  50. "path": "pages/component/scroll-view/scroll-view-props",
  51. "style": {
  52. "navigationBarTitleText": "非下拉刷新的scroll-view属性示例"
  53. }
  54. },
  55. // #endif
  56. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  57. {
  58. "path": "pages/component/scroll-view/scroll-view-refresher-props",
  59. "style": {
  60. "navigationBarTitleText": "下拉刷新的scroll-view属性示例"
  61. }
  62. },
  63. // #endif
  64. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  65. {
  66. "path": "pages/component/scroll-view/scroll-view-custom-refresher-props",
  67. "style": {
  68. "navigationBarTitleText": "自定义下拉刷新的scroll-view属性示例"
  69. }
  70. },
  71. // #endif
  72. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  73. {
  74. "path": "pages/component/scroll-view/issue-18587",
  75. "style": {
  76. "navigationBarTitleText": "issue-18587"
  77. }
  78. },
  79. // #endif
  80. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  81. {
  82. "path": "pages/component/scroll-view/issue-18773",
  83. "style": {
  84. "navigationBarTitleText": "issue-18773"
  85. }
  86. },
  87. // #endif
  88. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  89. {
  90. "path": "pages/component/swiper/swiper",
  91. "group": "0,1,2",
  92. "style": {
  93. "navigationBarTitleText": "swiper | 滑块视图容器"
  94. }
  95. },
  96. // #endif
  97. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  98. {
  99. "path": "pages/component/swiper/swiper-anim",
  100. "style": {
  101. "navigationBarTitleText": "swiper | 滑块视图容器 - 动画测试"
  102. }
  103. },
  104. // #endif
  105. // #ifdef APP-ANDROID || MP-WEIXIN || APP-HARMONY
  106. {
  107. "path": "pages/component/match-media/match-media",
  108. "group": "0,1,3",
  109. "style": {
  110. "navigationBarTitleText": "match-media | 匹配检测节点"
  111. }
  112. },
  113. // #endif
  114. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  115. {
  116. "path": "pages/component/list-view/list-view",
  117. "group": "0,1,6",
  118. "style": {
  119. "navigationBarTitleText": "list-view | 列表容器"
  120. }
  121. },
  122. // #endif
  123. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  124. {
  125. "path": "pages/component/list-view/list-view-refresh",
  126. "style": {
  127. "navigationBarTitleText": "list-view-refresh",
  128. "enablePullDownRefresh": false
  129. }
  130. },
  131. // #endif
  132. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  133. {
  134. "path": "pages/component/list-view/list-view-multiplex",
  135. "style": {
  136. "navigationBarTitleText": "list-view-multiplex"
  137. }
  138. },
  139. // #endif
  140. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  141. {
  142. "path": "pages/component/list-view/list-view-multiplex-input",
  143. "style": {
  144. "navigationBarTitleText": "list-view复用input",
  145. "enablePullDownRefresh": false
  146. }
  147. },
  148. // #endif
  149. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  150. {
  151. "path": "pages/component/list-view/list-view-long-press",
  152. "style": {
  153. "navigationBarTitleText": "list-view长按事件",
  154. "enablePullDownRefresh": false
  155. }
  156. },
  157. // #endif
  158. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  159. {
  160. "path": "pages/component/list-view/list-view-multiplex-video",
  161. "style": {
  162. "navigationBarTitleText": "list-view-multiplex-video"
  163. }
  164. },
  165. // #endif
  166. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  167. {
  168. "path": "pages/component/list-view/list-view-children-in-slot",
  169. "style": {
  170. "navigationBarTitleText": "list-view-children-in-slot"
  171. }
  172. },
  173. // #endif
  174. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  175. {
  176. "path": "pages/component/list-view/list-view-children-if-show",
  177. "style": {
  178. "navigationBarTitleText": "list-item v-if & v-show"
  179. }
  180. },
  181. // #endif
  182. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  183. {
  184. "path": "pages/component/sticky-section/sticky-section",
  185. "group": "0,1,8,1",
  186. "style": {
  187. "navigationBarTitleText": "sticky-section | 吸顶布局容器"
  188. }
  189. },
  190. // #endif
  191. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  192. {
  193. "path": "pages/component/sticky-section/issues-16118",
  194. "style": {
  195. "navigationBarTitleText": ""
  196. }
  197. },
  198. // #endif
  199. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  200. {
  201. "path": "pages/component/sticky-header/sticky-header",
  202. "group": "0,1,8,0",
  203. "style": {
  204. "navigationBarTitleText": "sticky-header | 吸顶布局容器",
  205. "enablePullDownRefresh": false
  206. }
  207. },
  208. // #endif
  209. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  210. {
  211. "path": "pages/component/text/text",
  212. "group": "0,2,1",
  213. "style": {
  214. "navigationBarTitleText": "text | 文本"
  215. }
  216. },
  217. // #endif
  218. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  219. {
  220. "path": "pages/component/text/text-props",
  221. "style": {
  222. "navigationBarTitleText": "text-props"
  223. }
  224. },
  225. // #endif
  226. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  227. {
  228. "path": "pages/component/rich-text/rich-text",
  229. "group": "0,2,2",
  230. "style": {
  231. "navigationBarTitleText": "rich-text | 富文本"
  232. }
  233. },
  234. // #endif
  235. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  236. {
  237. "path": "pages/component/rich-text/rich-text-tags",
  238. "style": {
  239. "navigationBarTitleText": "rich-text-tags"
  240. }
  241. },
  242. // #endif
  243. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  244. {
  245. "path": "pages/component/rich-text/rich-text-complex",
  246. "style": {
  247. "navigationBarTitleText": "rich-text-complex"
  248. }
  249. },
  250. // #endif
  251. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  252. {
  253. "path": "pages/component/rich-text/rich-text-list",
  254. "style": {
  255. "navigationBarTitleText": "rich-text-list"
  256. }
  257. },
  258. // #endif
  259. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  260. {
  261. "path": "pages/component/progress/progress",
  262. "group": "0,2,3",
  263. "style": {
  264. "navigationBarTitleText": "progress | 进度条"
  265. }
  266. },
  267. // #endif
  268. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  269. {
  270. "path": "pages/component/form/form",
  271. "group": "0,3,2",
  272. "style": {
  273. "navigationBarTitleText": "form | 表单"
  274. }
  275. },
  276. // #endif
  277. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  278. {
  279. "path": "pages/component/button/button",
  280. "group": "0,3,0",
  281. "style": {
  282. "navigationBarTitleText": "button | 按钮"
  283. }
  284. },
  285. // #endif
  286. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  287. {
  288. "path": "pages/component/button/buttonstatus",
  289. "style": {
  290. "navigationBarTitleText": "buttonstatus"
  291. }
  292. },
  293. // #endif
  294. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  295. {
  296. "path": "pages/component/radio/radio",
  297. "group": "0,3,8",
  298. "style": {
  299. "navigationBarTitleText": "radio | 单选框"
  300. }
  301. },
  302. // #endif
  303. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  304. {
  305. "path": "pages/component/checkbox/checkbox",
  306. "group": "0,3,1",
  307. "style": {
  308. "navigationBarTitleText": "checkbox | 多选框"
  309. }
  310. },
  311. // #endif
  312. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  313. {
  314. "path": "pages/component/input/input",
  315. "group": "0,3,3",
  316. "style": {
  317. "navigationBarTitleText": "input | 输入框"
  318. }
  319. },
  320. // #endif
  321. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  322. {
  323. "path": "pages/component/textarea/textarea",
  324. "group": "0,3,11",
  325. "style": {
  326. "navigationBarTitleText": "textarea | 多行输入框"
  327. }
  328. },
  329. // #endif
  330. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  331. {
  332. "path": "pages/component/slider/slider",
  333. "group": "0,3,9",
  334. "style": {
  335. "navigationBarTitleText": "slider | 滑动选择器"
  336. }
  337. },
  338. // #endif
  339. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  340. {
  341. "path": "pages/component/slider/slider-in-swiper",
  342. "style": {
  343. "navigationBarTitleText": "slider-in-swiper"
  344. }
  345. },
  346. // #endif
  347. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  348. {
  349. "path": "pages/component/slider/slider-maxValue",
  350. "style": {
  351. "navigationBarTitleText": "slider-maxValue-test"
  352. }
  353. },
  354. // #endif
  355. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  356. {
  357. "path": "pages/component/picker-view/picker-view",
  358. "group": "0,3,7",
  359. "style": {
  360. "navigationBarTitleText": "picker-view | 嵌入页面的滚动选择器"
  361. }
  362. },
  363. {
  364. "path": "pages/component/picker-view/wrap-picker-view",
  365. "style": {
  366. "navigationBarTitleText": "picker-view | 嵌入页面的滚动选择器"
  367. }
  368. },
  369. // #endif
  370. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  371. {
  372. "path": "pages/component/switch/switch",
  373. "group": "0,3,10",
  374. "style": {
  375. "navigationBarTitleText": "switch | 开关选择器"
  376. }
  377. },
  378. // #endif
  379. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  380. {
  381. "path": "pages/component/image/image",
  382. "group": "0,5,0",
  383. "style": {
  384. "navigationBarTitleText": "image | 图片"
  385. }
  386. },
  387. // #endif
  388. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  389. {
  390. "path": "pages/component/image/image-format",
  391. "style": {
  392. "navigationBarTitleText": "image-format"
  393. }
  394. },
  395. // #endif
  396. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  397. {
  398. "path": "pages/component/image/image-mode",
  399. "style": {
  400. "navigationBarTitleText": "image-mode"
  401. }
  402. },
  403. // #endif
  404. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  405. {
  406. "path": "pages/component/image/image-path",
  407. "style": {
  408. "navigationBarTitleText": "image-path"
  409. }
  410. },
  411. // #endif
  412. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  413. {
  414. "path": "pages/component/image/image-large",
  415. "style": {
  416. "navigationBarTitleText": "大图测试"
  417. }
  418. },
  419. // #endif
  420. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  421. {
  422. "path": "pages/component/video/video",
  423. "group": "0,5,1",
  424. "style": {
  425. "navigationBarTitleText": "video | 视频"
  426. }
  427. },
  428. // #endif
  429. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  430. {
  431. "path": "pages/component/video/video-format",
  432. "style": {
  433. "navigationBarTitleText": "video-format"
  434. }
  435. },
  436. // #endif
  437. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  438. {
  439. "path": "pages/component/navigator/navigator",
  440. "group": "0,4,0",
  441. "style": {
  442. "navigationBarTitleText": "navigator | 页面链接"
  443. }
  444. },
  445. // #endif
  446. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  447. {
  448. "path": "pages/component/navigator/navigate",
  449. "style": {
  450. "navigationBarTitleText": "navigatePage"
  451. }
  452. },
  453. // #endif
  454. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  455. {
  456. "path": "pages/component/navigator/redirect",
  457. "style": {
  458. "navigationBarTitleText": "redirectPage"
  459. }
  460. },
  461. // #endif
  462. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  463. {
  464. "path": "pages/component/web-view/web-view",
  465. "group": "0,9",
  466. "style": {
  467. "navigationBarTitleText": "web-view"
  468. }
  469. },
  470. // #endif
  471. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  472. {
  473. "path": "pages/component/web-view/web-view-scroll",
  474. "style": {
  475. "navigationBarTitleText": "web-view-scroll"
  476. }
  477. },
  478. // #endif
  479. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  480. {
  481. "path": "pages/component/web-view/web-view/web-view-local",
  482. "group": "0,9",
  483. "style": {
  484. "navigationBarTitleText": "本地网页"
  485. }
  486. },
  487. // #endif
  488. // #ifdef MP-WEIXIN
  489. {
  490. "path": "pages/component/page-meta/page-meta",
  491. "group": "0,10",
  492. "style": {
  493. "navigationBarTitleText": "page-meta"
  494. }
  495. },
  496. // #endif
  497. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  498. {
  499. "path": "pages/component/unicloud-db/unicloud-db/contacts/list",
  500. "group": "0,11",
  501. "style": {
  502. "navigationBarTitleText": "联系人",
  503. "enablePullDownRefresh": true
  504. }
  505. },
  506. // #endif
  507. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  508. {
  509. "path": "pages/component/unicloud-db/unicloud-db/contacts/add",
  510. "style": {
  511. "navigationBarTitleText": "新增联系人"
  512. }
  513. },
  514. // #endif
  515. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  516. {
  517. "path": "pages/component/unicloud-db/unicloud-db/contacts/edit",
  518. "style": {
  519. "navigationBarTitleText": "编辑联系人"
  520. }
  521. },
  522. // #endif
  523. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  524. {
  525. "path": "pages/component/unicloud-db/unicloud-db/contacts/detail",
  526. "style": {
  527. "navigationBarTitleText": ""
  528. }
  529. },
  530. // #endif
  531. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  532. {
  533. "path": "pages/component/unicloud-db/unicloud-db/mixin-datacom/mixin-datacom",
  534. "group": "0,11",
  535. "style": {
  536. "navigationBarTitleText": "mixinDatacom"
  537. }
  538. },
  539. // #endif
  540. {
  541. "path": "pages/component/global-properties/global-properties",
  542. "group": "0,0",
  543. "style": {
  544. "navigationBarTitleText": "全局属性"
  545. }
  546. },
  547. {
  548. "path": "pages/component/global-events/global-events",
  549. "group": "0,0",
  550. "style": {
  551. "navigationBarTitleText": "全局事件"
  552. }
  553. },
  554. {
  555. "path": "pages/component/global-events/global-events-transform",
  556. "group": "0,0",
  557. "style": {
  558. "navigationBarTitleText": "点击事件-transform"
  559. }
  560. },
  561. {
  562. "path": "pages/component/global-events/transition-events",
  563. "group": "0,0",
  564. "style": {
  565. "navigationBarTitleText": "Transition Events"
  566. }
  567. },
  568. {
  569. "path": "pages/component/global-events/touch-events",
  570. "group": "0,0",
  571. "style": {
  572. "navigationBarTitleText": "Touch Events"
  573. }
  574. },
  575. {
  576. "path": "pages/component/global-events/touch-events-bubbles",
  577. "style": {
  578. "navigationBarTitleText": "Touch Events bubbles"
  579. }
  580. },
  581. {
  582. "path": "pages/component/global-events/touch-events-case",
  583. "style": {
  584. "navigationBarTitleText": "Touch Events case"
  585. }
  586. },
  587. {
  588. "path": "pages/component/global-events/touch-events-preventDefault",
  589. "style": {
  590. "navigationBarTitleText": "preventDefault"
  591. }
  592. },
  593. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  594. {
  595. "path": "pages/component/nested-scroll-header/nested-scroll-header",
  596. "group": "0,1,9,0",
  597. "style": {
  598. "navigationBarTitleText": "nested-scroll-header"
  599. }
  600. },
  601. // #endif
  602. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  603. {
  604. "path": "pages/component/nested-scroll-body/nested-scroll-body",
  605. "group": "0,1,9,1",
  606. "style": {
  607. "navigationBarTitleText": "nested-scroll-body"
  608. }
  609. },
  610. // #endif
  611. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  612. {
  613. "path": "pages/component/swiper/swiper-list-view",
  614. "style": {
  615. "navigationBarTitleText": "swiper嵌套list-view",
  616. "enablePullDownRefresh": false
  617. }
  618. },
  619. // #endif
  620. // #ifdef WEB || MP-WEIXIN
  621. {
  622. "path": "pages/component/movable-view/movable-view",
  623. "group": "0,1,4,1",
  624. "style": {
  625. "navigationBarTitleText": "movable-view | 可拖动视图容器"
  626. }
  627. },
  628. // #endif
  629. // #ifdef WEB || MP-WEIXIN || APP-HARMONY
  630. {
  631. "path": "pages/component/label/label",
  632. "group": "0,3,5",
  633. "style": {
  634. "navigationBarTitleText": "label"
  635. }
  636. },
  637. // #endif
  638. // #ifdef WEB || MP-WEIXIN || APP-HARMONY
  639. {
  640. "path": "pages/component/picker/picker",
  641. "group": "0,3,6",
  642. "style": {
  643. "navigationBarTitleText": "picker | 底部弹出滚动选择器"
  644. }
  645. },
  646. // #endif
  647. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  648. {
  649. "path": "pages/component/map/map",
  650. "group": "0,6",
  651. "style": {
  652. "navigationBarTitleText": "map | 地图"
  653. }
  654. },
  655. // #endif
  656. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  657. {
  658. "path": "pages/component/cover-view/cover-view",
  659. "group": "0,1,5,0",
  660. "style": {
  661. "navigationBarTitleText": "cover-view"
  662. }
  663. },
  664. // #endif
  665. // #ifdef WEB || MP-WEIXIN
  666. {
  667. "path": "pages/component/editor/editor",
  668. "group": "0,3,4",
  669. "style": {
  670. "navigationBarTitleText": "editor | 富文本编辑器"
  671. }
  672. },
  673. // #endif
  674. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  675. {
  676. "path": "pages/component/list-view/issue-17030",
  677. "style": {
  678. "navigationBarTitleText": "issue-17030"
  679. }
  680. },
  681. // #endif
  682. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  683. {
  684. "path": "pages/component/list-view/issue-2199",
  685. "style": {
  686. "navigationBarTitleText": "issue-2199",
  687. "enablePullDownRefresh": false
  688. }
  689. },
  690. // #endif
  691. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  692. {
  693. "path": "pages/component/list-view/issue-15701",
  694. "style": {
  695. "navigationBarTitleText": "issue-15701",
  696. "enablePullDownRefresh": false
  697. }
  698. },
  699. // #endif
  700. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  701. {
  702. "path": "pages/component/list-view/issue-13858",
  703. "style": {
  704. "navigationBarTitleText": "issue-13858",
  705. "enablePullDownRefresh": false
  706. }
  707. },
  708. // #endif
  709. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  710. {
  711. "path": "pages/component/list-view/issue-16126",
  712. "style": {
  713. "navigationBarTitleText": "issue-16126"
  714. }
  715. },
  716. // #endif
  717. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  718. {
  719. "path": "pages/component/list-view/issue-16938",
  720. "style": {
  721. "navigationBarTitleText": "issue-16938"
  722. }
  723. },
  724. // #endif
  725. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  726. {
  727. "path": "pages/component/list-view/issue-15878",
  728. "style": {
  729. "navigationBarTitleText": "issue-15878",
  730. "enablePullDownRefresh": false
  731. }
  732. },
  733. // #endif
  734. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  735. {
  736. "path": "pages/component/canvas/canvas",
  737. "group": "0,7",
  738. "style": {
  739. "navigationBarTitleText": "canvas | 画布"
  740. }
  741. },
  742. // #endif
  743. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  744. {
  745. "path": "pages/component/canvas/canvas-context",
  746. "style": {
  747. "navigationBarTitleText": "createCanvasContextAsync"
  748. }
  749. },
  750. // #endif
  751. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  752. {
  753. "path": "pages/component/canvas/canvas/ball",
  754. "group": "0,7",
  755. "style": {
  756. "navigationBarTitleText": "ball"
  757. }
  758. },
  759. // #endif
  760. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  761. {
  762. "path": "pages/component/canvas/canvas/doodle",
  763. "group": "0,7",
  764. "style": {
  765. "navigationBarTitleText": "涂鸦"
  766. }
  767. },
  768. // #endif
  769. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  770. {
  771. "path": "pages/component/native-view/native-view",
  772. "group": "0,2,4",
  773. "style": {
  774. "navigationBarTitleText": "native-view | 自定义原生View组件"
  775. }
  776. },
  777. // #endif
  778. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
  779. {
  780. "path": "pages/component/ad/ad",
  781. "group": "0,8",
  782. "style": {
  783. "navigationBarTitleText": "ad | 信息流广告",
  784. "enablePullDownRefresh": false
  785. }
  786. },
  787. // #endif
  788. // #ifdef APP-ANDROID || APP-IOS
  789. {
  790. "path": "pages/component/waterflow/waterflow",
  791. "group": "0,1,7",
  792. "style": {
  793. "navigationBarTitleText": "waterflow | 瀑布流容器"
  794. }
  795. },
  796. // #endif
  797. // #ifdef APP-ANDROID || APP-IOS
  798. {
  799. "path": "pages/component/waterflow/waterflow-fit-height",
  800. "style": {
  801. "navigationBarTitleText": "waterflow | 瀑布流容器"
  802. }
  803. },
  804. // #endif
  805. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
  806. {
  807. "path": "pages/component/ad/list-view-ad",
  808. "style": {
  809. "navigationBarTitleText": "ad | 信息流广告",
  810. "enablePullDownRefresh": false
  811. }
  812. },
  813. // #endif
  814. // #ifdef APP-ANDROID || APP-IOS
  815. {
  816. "path": "pages/component/share-element/share-element",
  817. "group": "0,1,10",
  818. "style": {
  819. "navigationBarTitleText": "share-element | 共享元素视图容器"
  820. }
  821. },
  822. // #endif
  823. // #ifdef APP-ANDROID || APP-IOS
  824. {
  825. "path": "pages/component/share-element/share-element-to",
  826. "style": {
  827. "navigationBarTitleText": ""
  828. }
  829. },
  830. // #endif
  831. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
  832. {
  833. "path": "pages/component/camera/camera",
  834. "group": "0,5,3",
  835. "style": {
  836. "navigationBarTitleText": "camera | 相机"
  837. }
  838. },
  839. // #endif
  840. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
  841. {
  842. "path": "pages/component/camera/camera-scan-code",
  843. "style": {
  844. "navigationBarTitleText": "camera-scan-code | 相机扫码"
  845. }
  846. },
  847. // #endif
  848. {
  849. "path": "pages/tabBar/API",
  850. "style": {
  851. "navigationBarTitleText": "接口",
  852. "backgroundColorContent": "@tabBarPagebackgroundColorContent"
  853. }
  854. },
  855. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  856. {
  857. "path": "pages/API/get-app/get-app",
  858. "group": "1,0,0",
  859. "style": {
  860. "navigationBarTitleText": "getApp | 获取当前应用实例"
  861. }
  862. },
  863. // #endif
  864. // #ifdef APP-ANDROID || APP-IOS
  865. {
  866. "path": "pages/API/exit/exit",
  867. "group": "1,1,5",
  868. "style": {
  869. "navigationBarTitleText": "uni.exit | 退出应用"
  870. }
  871. },
  872. // #endif
  873. // #ifdef APP-ANDROID
  874. {
  875. "path": "pages/API/install-apk/install-apk",
  876. "group": "1,6,7",
  877. "style": {
  878. "navigationBarTitleText": "uni.installApk | 安装 APK",
  879. "enablePullDownRefresh": false
  880. }
  881. },
  882. // #endif
  883. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  884. {
  885. "path": "pages/API/get-current-pages/get-current-pages",
  886. "group": "1,0,1",
  887. "style": {
  888. "navigationBarTitleText": "getCurrentPages | 获取当前页面栈",
  889. "enablePullDownRefresh": true
  890. }
  891. },
  892. // #endif
  893. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  894. {
  895. "path": "pages/API/get-current-pages/set-page-style-disable-pull-down-refresh",
  896. "style": {
  897. "navigationBarTitleText": "setPageStyle pull default false",
  898. "enablePullDownRefresh": false
  899. }
  900. },
  901. // #endif
  902. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  903. {
  904. "path": "pages/API/get-launch-options-sync/get-launch-options-sync",
  905. "group": "1,1,4,0",
  906. "style": {
  907. "navigationBarTitleText": "uni.getLaunchOptionsSync | 获取启动参数"
  908. }
  909. },
  910. // #endif
  911. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  912. {
  913. "path": "pages/API/get-enter-options-sync/get-enter-options-sync",
  914. "group": "1,1,4,1",
  915. "style": {
  916. "navigationBarTitleText": "uni.getEnterOptionsSync | 获取本次启动时的参数"
  917. }
  918. },
  919. // #endif
  920. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  921. {
  922. "path": "pages/API/animation-frame/animation-frame",
  923. "group": "1,0,2",
  924. "style": {
  925. "navigationBarTitleText": "animationFrame | 动画帧"
  926. }
  927. },
  928. // #endif
  929. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  930. {
  931. "path": "pages/API/navigator/navigator",
  932. "group": "1,2,0",
  933. "style": {
  934. "navigationBarTitleText": "navigator | 页面跳转"
  935. }
  936. },
  937. // #endif
  938. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  939. {
  940. "path": "pages/API/set-navigation-bar-color/set-navigation-bar-color",
  941. "group": "1,2,2",
  942. "style": {
  943. "navigationBarTitleText": "uni.setNavigationBarColor | 设置导航条颜色"
  944. }
  945. },
  946. // #endif
  947. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  948. {
  949. "path": "pages/API/set-navigation-bar-title/set-navigation-bar-title",
  950. "group": "1,2,3",
  951. "style": {
  952. "navigationBarTitleText": "uni.setNavigationBarTitle | 设置导航条标题"
  953. }
  954. },
  955. // #endif
  956. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  957. {
  958. "path": "pages/API/set-page-backgroundColorContent/set-page-backgroundColorContent",
  959. "group": "1,2",
  960. "style": {
  961. "navigationBarTitleText": "设置页面容器背景色"
  962. }
  963. },
  964. // #endif
  965. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  966. {
  967. "path": "pages/API/navigator/new-page/new-page-1",
  968. "style": {
  969. "navigationBarTitleText": "新页面-1"
  970. }
  971. },
  972. // #endif
  973. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  974. {
  975. "path": "pages/API/navigator/new-page/new-page-3",
  976. "style": {
  977. "navigationBarTitleText": "新页面-3"
  978. }
  979. },
  980. // #endif
  981. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  982. {
  983. "path": "pages/API/navigator/new-page/onLoad-call-api",
  984. "style": {
  985. "navigationBarTitleText": "onLoad call api"
  986. }
  987. },
  988. // #endif
  989. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  990. {
  991. "path": "pages/API/navigator/new-page/onLoad",
  992. "style": {
  993. "navigationBarTitleText": "onLoad 生命周期测试"
  994. }
  995. },
  996. // #endif
  997. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  998. {
  999. "path": "pages/API/pull-down-refresh/pull-down-refresh",
  1000. "group": "1,2,5",
  1001. "style": {
  1002. "navigationBarTitleText": "pullDownRefresh | 页面下拉刷新",
  1003. "enablePullDownRefresh": true
  1004. }
  1005. },
  1006. // #endif
  1007. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1008. {
  1009. "path": "pages/API/storage/storage",
  1010. "group": "1,9",
  1011. "style": {
  1012. "navigationBarTitleText": "storage | key-value本地数据存储"
  1013. }
  1014. },
  1015. // #endif
  1016. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1017. {
  1018. "path": "pages/API/storage/storagemanage",
  1019. "style": {
  1020. "navigationBarTitleText": "storage管理器"
  1021. }
  1022. },
  1023. // #endif
  1024. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1025. {
  1026. "path": "pages/API/env/env",
  1027. "group": "1,1,0",
  1028. "style": {
  1029. "navigationBarTitleText": "uni.env | 环境变量"
  1030. }
  1031. },
  1032. // #endif
  1033. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1034. {
  1035. "path": "pages/API/show-action-sheet/show-action-sheet",
  1036. "group": "1,4,1",
  1037. "style": {
  1038. "navigationBarTitleText": "uni.showActionSheet | 弹出操作菜单"
  1039. }
  1040. },
  1041. // #endif
  1042. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1043. {
  1044. "path": "pages/API/show-modal/show-modal",
  1045. "group": "1,4,2",
  1046. "style": {
  1047. "navigationBarTitleText": "uni.showModal | 显示模态弹窗"
  1048. }
  1049. },
  1050. // #endif
  1051. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1052. {
  1053. "path": "pages/API/show-loading/show-loading",
  1054. "group": "1,4,3",
  1055. "style": {
  1056. "navigationBarTitleText": "uni.showLoading | 显示 loading 提示框"
  1057. }
  1058. },
  1059. // #endif
  1060. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1061. {
  1062. "path": "pages/API/show-toast/show-toast",
  1063. "group": "1,4,4",
  1064. "style": {
  1065. "navigationBarTitleText": "uni.showToast | 显示消息提示框"
  1066. }
  1067. },
  1068. // #endif
  1069. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1070. {
  1071. "path": "pages/API/load-font-face/load-font-face",
  1072. "group": "1,4,5",
  1073. "style": {
  1074. "navigationBarTitleText": "uni.loadFontFace | 动态加载字体"
  1075. }
  1076. },
  1077. // #endif
  1078. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1079. {
  1080. "path": "pages/API/load-font-face/load-font-face-child",
  1081. "style": {
  1082. "navigationBarTitleText": "动态加载字体-子页面"
  1083. }
  1084. },
  1085. // #endif
  1086. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1087. {
  1088. "path": "pages/API/get-location/get-location",
  1089. "group": "1,11,0",
  1090. "style": {
  1091. "navigationBarTitleText": "uni.getLocation | 获取当前位置"
  1092. }
  1093. },
  1094. // #endif
  1095. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1096. {
  1097. "path": "pages/API/open-location/open-location",
  1098. "group": "1,11,1",
  1099. "style": {
  1100. "navigationBarTitleText": "uni.openLocation | 使用地图查看位置"
  1101. }
  1102. },
  1103. // #endif
  1104. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1105. {
  1106. "path": "pages/API/choose-location/choose-location",
  1107. "group": "1,11,2",
  1108. "style": {
  1109. "navigationBarTitleText": "uni.chooseLocation | 使用地图选择位置"
  1110. }
  1111. },
  1112. // #endif
  1113. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1114. {
  1115. "path": "pages/API/interceptor/interceptor",
  1116. "group": "1,1,3",
  1117. "style": {
  1118. "navigationBarTitleText": "interceptor | 拦截器"
  1119. }
  1120. },
  1121. // #endif
  1122. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1123. {
  1124. "path": "pages/API/interceptor/page1",
  1125. "style": {
  1126. "navigationBarTitleText": "拦截器测试页面 1"
  1127. }
  1128. },
  1129. // #endif
  1130. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1131. {
  1132. "path": "pages/API/interceptor/page2",
  1133. "style": {
  1134. "navigationBarTitleText": "拦截器测试页面 2"
  1135. }
  1136. },
  1137. // #endif
  1138. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1139. {
  1140. "path": "pages/API/request/request",
  1141. "group": "1,5,0",
  1142. "style": {
  1143. "navigationBarTitleText": "uni.request | 发起网络请求"
  1144. }
  1145. },
  1146. // #endif
  1147. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1148. {
  1149. "path": "pages/API/upload-file/upload-file",
  1150. "group": "1,5,1",
  1151. "style": {
  1152. "navigationBarTitleText": "uni.uploadFile | 上传文件"
  1153. }
  1154. },
  1155. // #endif
  1156. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1157. {
  1158. "path": "pages/API/download-file/download-file",
  1159. "group": "1,5,2",
  1160. "style": {
  1161. "navigationBarTitleText": "uni.downloadFile | 下载文件"
  1162. }
  1163. },
  1164. // #endif
  1165. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1166. {
  1167. "path": "pages/API/websocket/socketTask",
  1168. "style": {
  1169. "navigationBarTitleText": "socketTask"
  1170. }
  1171. },
  1172. // #endif
  1173. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1174. {
  1175. "path": "pages/API/websocket/websocket",
  1176. "group": "1,5,5",
  1177. "style": {
  1178. "navigationBarTitleText": "websocket"
  1179. }
  1180. },
  1181. // #endif
  1182. // #ifdef APP-ANDROID || APP-IOS
  1183. {
  1184. "path": "pages/API/connect-event-source/connect-event-source",
  1185. "group": "1,5,6",
  1186. "style": {
  1187. "navigationBarTitleText": "uni.connectEventSource | SSE"
  1188. }
  1189. },
  1190. // #endif
  1191. {
  1192. "path": "pages/API/unicloud/unicloud/cloud-function",
  1193. "group": "1,19,0",
  1194. "style": {
  1195. "navigationBarTitleText": "cloud function | 云函数"
  1196. }
  1197. },
  1198. {
  1199. "path": "pages/API/unicloud/unicloud/cloud-object",
  1200. "group": "1,19,1",
  1201. "style": {
  1202. "navigationBarTitleText": "cloud object | 云对象"
  1203. }
  1204. },
  1205. {
  1206. "path": "pages/API/unicloud/unicloud/sse-channel",
  1207. "group": "1,19,4",
  1208. "style": {
  1209. "navigationBarTitleText": "SSEChannel | 服务端通知通道"
  1210. }
  1211. },
  1212. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1213. {
  1214. "path": "pages/API/get-system-info/get-system-info",
  1215. "group": "1,6,0",
  1216. "style": {
  1217. "navigationBarTitleText": "uni.getSystemInfo | 获取系统信息"
  1218. }
  1219. },
  1220. // #endif
  1221. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1222. {
  1223. "path": "pages/API/get-device-info/get-device-info",
  1224. "group": "1,6,1",
  1225. "style": {
  1226. "navigationBarTitleText": "uni.getDeviceInfo | 获取设备信息"
  1227. }
  1228. },
  1229. // #endif
  1230. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1231. {
  1232. "path": "pages/API/get-app-base-info/get-app-base-info",
  1233. "group": "1,6,3",
  1234. "style": {
  1235. "navigationBarTitleText": "uni.getAppBaseInfo | 获取APP基础信息"
  1236. }
  1237. },
  1238. // #endif
  1239. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1240. {
  1241. "path": "pages/API/get-system-setting/get-system-setting",
  1242. "group": "1,6,6",
  1243. "style": {
  1244. "navigationBarTitleText": "uni.getSystemSetting | 获取系统设置"
  1245. }
  1246. },
  1247. // #endif
  1248. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1249. {
  1250. "path": "pages/API/element-get-bounding-client-rect-async/element-get-bounding-client-rect-async",
  1251. "group": "1,30",
  1252. "style": {
  1253. "navigationBarTitleText": "getBoundingClientRectAsync | 异步获取元素信息"
  1254. }
  1255. },
  1256. // #endif
  1257. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1258. {
  1259. "path": "pages/API/element-get-attribute/element-get-attribute",
  1260. "group": "1,30",
  1261. "style": {
  1262. "navigationBarTitleText": "getAttribute | 获取元素的属性值"
  1263. }
  1264. },
  1265. // #endif
  1266. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  1267. {
  1268. "path": "pages/API/element-takesnapshot/element-takesnapshot",
  1269. "group": "1,30",
  1270. "style": {
  1271. "navigationBarTitleText": "takeSnapshot | 截图",
  1272. "enablePullDownRefresh": false
  1273. }
  1274. },
  1275. // #endif
  1276. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1277. {
  1278. "path": "pages/API/get-app-authorize-setting/get-app-authorize-setting",
  1279. "group": "1,6,4",
  1280. "style": {
  1281. "navigationBarTitleText": "uni.getAppAuthorizeSetting | 获取APP授权设置"
  1282. }
  1283. },
  1284. // #endif
  1285. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1286. {
  1287. "path": "pages/API/preview-image/preview-image",
  1288. "group": "1,7,1",
  1289. "style": {
  1290. "navigationBarTitleText": "uni.previewImage | 图片预览"
  1291. }
  1292. },
  1293. // #endif
  1294. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1295. {
  1296. "path": "pages/API/choose-image/choose-image",
  1297. "group": "1,7,0",
  1298. "style": {
  1299. "navigationBarTitleText": "uni.chooseImage | 拍照或从相册选择图片"
  1300. }
  1301. },
  1302. // #endif
  1303. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1304. {
  1305. "path": "pages/API/get-image-info/get-image-info",
  1306. "group": "1,7,3",
  1307. "style": {
  1308. "navigationBarTitleText": "uni.getImageInfo | 获取图片信息"
  1309. }
  1310. },
  1311. // #endif
  1312. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1313. {
  1314. "path": "pages/API/compress-image/compress-image",
  1315. "group": "1,7,4",
  1316. "style": {
  1317. "navigationBarTitleText": "uni.compressImage | 压缩图片"
  1318. }
  1319. },
  1320. // #endif
  1321. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1322. {
  1323. "path": "pages/API/choose-video/choose-video",
  1324. "group": "1,7,5",
  1325. "style": {
  1326. "navigationBarTitleText": "uni.chooseVideo | 拍摄视频或从相册中选择视频"
  1327. }
  1328. },
  1329. // #endif
  1330. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1331. {
  1332. "path": "pages/API/compress-video/compress-video",
  1333. "group": "1,7,8",
  1334. "style": {
  1335. "navigationBarTitleText": "uni.compressVideo | 压缩视频"
  1336. }
  1337. },
  1338. // #endif
  1339. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1340. {
  1341. "path": "pages/API/choose-media/choose-media",
  1342. "group": "1,7,9",
  1343. "style": {
  1344. "navigationBarTitleText": "uni.chooseMedia | 拍摄或从相册选择图片或视频"
  1345. }
  1346. },
  1347. // #endif
  1348. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1349. {
  1350. "path": "pages/API/choose-media/fullscreen-video",
  1351. "style": {
  1352. "navigationStyle": "custom"
  1353. }
  1354. },
  1355. // #endif
  1356. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1357. {
  1358. "path": "pages/API/choose-file/choose-file",
  1359. "group": "1,7,10",
  1360. "style": {
  1361. "navigationBarTitleText": "uni.chooseFile | 选择文件"
  1362. }
  1363. },
  1364. // #endif
  1365. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1366. {
  1367. "path": "pages/API/get-network-type/get-network-type",
  1368. "group": "1,5,3",
  1369. "style": {
  1370. "navigationBarTitleText": "uni.getNetworkType | 获取网络类型"
  1371. }
  1372. },
  1373. // #endif
  1374. // #ifdef WEB || MP-WEIXIN || APP-HARMONY
  1375. {
  1376. "path": "pages/API/network-status-change/network-status-change",
  1377. "group": "1,5,4",
  1378. "style": {
  1379. "navigationBarTitleText": "NetworkStatusChange | 监听网络状态变化"
  1380. }
  1381. },
  1382. // #endif
  1383. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1384. {
  1385. "path": "pages/API/page-scroll-to/page-scroll-to",
  1386. "group": "1,2,6",
  1387. "style": {
  1388. "navigationBarTitleText": "uni.pageScrollTo | 将页面滚动到指定位置"
  1389. }
  1390. },
  1391. // #endif
  1392. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1393. {
  1394. "path": "pages/API/event-bus/event-bus",
  1395. "group": "1,1,1",
  1396. "style": {
  1397. "navigationBarTitleText": "eventBus | 事件总线"
  1398. }
  1399. },
  1400. // #endif
  1401. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1402. {
  1403. "path": "pages/API/unicloud/unicloud/cloud-storage",
  1404. "group": "1,19,2",
  1405. "style": {
  1406. "navigationBarTitleText": "cloud storage | 云存储"
  1407. }
  1408. },
  1409. // #endif
  1410. {
  1411. "path": "pages/API/unicloud/unicloud/database",
  1412. "group": "1,19,3",
  1413. "style": {
  1414. "navigationBarTitleText": "database | 数据库"
  1415. }
  1416. },
  1417. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1418. {
  1419. "path": "pages/API/get-battery-info/get-battery-info",
  1420. "group": "1,6,8",
  1421. "style": {
  1422. "navigationBarTitleText": "uni.getBatteryInfo | 获取电池电量信息"
  1423. }
  1424. },
  1425. // #endif
  1426. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1427. {
  1428. "path": "pages/API/get-window-info/get-window-info",
  1429. "group": "1,6,2",
  1430. "style": {
  1431. "navigationBarTitleText": "uni.getWindowInfo | 获取窗口信息"
  1432. }
  1433. },
  1434. // #endif
  1435. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1436. {
  1437. "path": "pages/API/get-window-info/window-area",
  1438. "style": {
  1439. "navigationBarTitleText": "window area",
  1440. "navigationStyle": "custom"
  1441. }
  1442. },
  1443. // #endif
  1444. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  1445. {
  1446. "path": "pages/API/element-draw/element-draw",
  1447. "group": "1,30",
  1448. "style": {
  1449. "navigationBarTitleText": "getDrawableContext | 获取绘制对象",
  1450. "enablePullDownRefresh": false
  1451. }
  1452. },
  1453. // #endif
  1454. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  1455. {
  1456. "path": "pages/API/element-request-fullscreen/element-request-fullscreen",
  1457. "group": "1,30",
  1458. "style": {
  1459. "navigationBarTitleText": "requestFullscreen | 请求全屏显示"
  1460. }
  1461. },
  1462. {
  1463. "path" : "pages/API/element-request-fullscreen/element-request-fullscreen-bugs",
  1464. "style": {
  1465. "navigationBarTitleText": "request-fullscreen-bugs"
  1466. }
  1467. },
  1468. // #endif
  1469. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  1470. {
  1471. "path": "pages/API/facial-recognition-meta-info/facial-recognition-meta-info",
  1472. "group": "1,12,2",
  1473. "style": {
  1474. "navigationBarTitleText": "facialRecognitionMetaInfo | 金融级实人认证",
  1475. "enablePullDownRefresh": false
  1476. }
  1477. },
  1478. // #endif
  1479. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  1480. {
  1481. "path": "pages/API/get-univerify-manager/get-univerify-manager",
  1482. "group": "1,12,0",
  1483. "style": {
  1484. "navigationBarTitleText": "uni.getUniverifyManager | App一键登录",
  1485. "navigationBarTextStyle": "white",
  1486. "enablePullDownRefresh": false
  1487. }
  1488. },
  1489. // #endif
  1490. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  1491. {
  1492. "path": "pages/API/get-univerify-manager/univerify-custom-page",
  1493. "style": {
  1494. "navigationBarTextStyle": "black",
  1495. "navigationStyle": "custom"
  1496. }
  1497. },
  1498. // #endif
  1499. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  1500. {
  1501. "path": "pages/API/get-univerify-manager/full-webview-page",
  1502. "style": {
  1503. "navigationBarTextStyle": "white",
  1504. "navigationStyle": "custom"
  1505. }
  1506. },
  1507. // #endif
  1508. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1509. {
  1510. "path": "pages/API/rpx2px/rpx2px",
  1511. "group": "1,4,6",
  1512. "style": {
  1513. "navigationBarTitleText": "uni.rpx2px | 将rpx单位值转换成px",
  1514. "enablePullDownRefresh": false
  1515. }
  1516. },
  1517. // #endif
  1518. // #ifdef APP-ANDROID
  1519. {
  1520. "path": "pages/API/create-request-permission-listener/create-request-permission-listener",
  1521. "group": "1,6,16",
  1522. "style": {
  1523. "navigationBarTitleText": "uni.createRequestPermissionListener | 监听权限申请",
  1524. "enablePullDownRefresh": false
  1525. }
  1526. },
  1527. // #endif
  1528. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1529. {
  1530. "path": "pages/API/request-payment/request-payment",
  1531. "group": "1,14,0",
  1532. "style": {
  1533. "navigationBarTitleText": "uni.requestPayment | 支付",
  1534. "enablePullDownRefresh": false
  1535. }
  1536. },
  1537. // #endif
  1538. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
  1539. {
  1540. "path": "pages/API/request-merchant-transfer/request-merchant-transfer",
  1541. "group": "1,14,2",
  1542. "style": {
  1543. "navigationBarTitleText": "uni.requestMerchantTransfer | 转账确认收款",
  1544. "enablePullDownRefresh": false
  1545. }
  1546. },
  1547. // #endif
  1548. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
  1549. {
  1550. "path": "pages/API/create-rewarded-video-ad/create-rewarded-video-ad",
  1551. "group": "1,13,0",
  1552. "style": {
  1553. "navigationBarTitleText": "uni.createRewardedVideoAd | 激励视频广告",
  1554. "enablePullDownRefresh": false
  1555. }
  1556. },
  1557. // #endif
  1558. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1559. {
  1560. "path": "pages/API/request-payment/request-payment/request-payment-uni-pay",
  1561. "group": "1,14",
  1562. "style": {
  1563. "navigationBarTitleText": "uni-pay示例",
  1564. "enablePullDownRefresh": false
  1565. }
  1566. },
  1567. // #endif
  1568. // #ifdef APP-IOS
  1569. {
  1570. "path": "pages/API/virtual-payment/virtual-payment",
  1571. "group": "1,14,1",
  1572. "style": {
  1573. "navigationBarTitleText": "virtualPayment | 虚拟支付",
  1574. "enablePullDownRefresh": false
  1575. }
  1576. },
  1577. // #endif
  1578. // #ifdef APP-IOS
  1579. {
  1580. "path": "pages/API/virtual-payment/virtual-payment-uni-pay",
  1581. "style": {
  1582. "navigationBarTitleText": "苹果虚拟支付(uni-pay)",
  1583. "enablePullDownRefresh": false
  1584. }
  1585. },
  1586. // #endif
  1587. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1588. {
  1589. "path": "pages/API/request-payment/request-payment/order-detail",
  1590. "style": {
  1591. "navigationBarTitleText": "订单详情示例",
  1592. "enablePullDownRefresh": false
  1593. }
  1594. },
  1595. // #endif
  1596. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1597. {
  1598. "path": "pages/API/make-phone-call/make-phone-call",
  1599. "group": "1,6,9",
  1600. "style": {
  1601. "navigationBarTitleText": "uni.makePhoneCall | 打电话"
  1602. }
  1603. },
  1604. // #endif
  1605. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1606. {
  1607. "path": "pages/API/clipboard/clipboard",
  1608. "group": "1,6,10",
  1609. "style": {
  1610. "navigationBarTitleText": "clipboard | 剪切板"
  1611. }
  1612. },
  1613. // #endif
  1614. // #ifdef WEB || MP-WEIXIN
  1615. {
  1616. "path": "pages/API/compass/compass",
  1617. "group": "1,6,11",
  1618. "style": {
  1619. "navigationBarTitleText": "compass | 罗盘"
  1620. }
  1621. },
  1622. // #endif
  1623. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1624. {
  1625. "path": "pages/API/scan-code/scan-code",
  1626. "group": "1,6,17",
  1627. "style": {
  1628. "navigationBarTitleText": "uni.scanCode | 扫码"
  1629. }
  1630. },
  1631. // #endif
  1632. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1633. {
  1634. "path": "pages/API/theme-change/theme-change",
  1635. "group": "1,4,7",
  1636. "style": {
  1637. "navigationBarTitleText": "themeChange | 主题切换",
  1638. "enablePullDownRefresh": false
  1639. }
  1640. },
  1641. // #endif
  1642. // #ifdef WEB || MP-WEIXIN
  1643. {
  1644. "path": "pages/API/create-intersection-observer/create-intersection-observer",
  1645. "group": "1,4,0",
  1646. "style": {
  1647. "navigationBarTitleText": "uni.createIntersectionObserver | 节点布局相交状态"
  1648. }
  1649. },
  1650. // #endif
  1651. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1652. {
  1653. "path": "pages/API/get-element-by-id/get-element-by-id",
  1654. "group": "1,3,0",
  1655. "style": {
  1656. "navigationBarTitleText": "uni.getElementById | 通过 id 获取 element"
  1657. }
  1658. },
  1659. // #endif
  1660. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1661. {
  1662. "path": "pages/API/get-element-by-id/get-element-by-id-multiple-root-node",
  1663. "style": {
  1664. "navigationBarTitleText": "获取节点-多根节点"
  1665. }
  1666. },
  1667. // #endif
  1668. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1669. {
  1670. "path": "pages/API/create-selector-query/create-selector-query",
  1671. "group": "1,3,2",
  1672. "style": {
  1673. "navigationBarTitleText": "uni.createSelectorQuery | 创建 SelectorQuery 实例"
  1674. }
  1675. },
  1676. // #endif
  1677. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1678. {
  1679. "path": "pages/API/animate/animate",
  1680. "group": "1,30",
  1681. "style": {
  1682. "navigationBarTitleText": "animate | 动画"
  1683. }
  1684. },
  1685. // #endif
  1686. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1687. {
  1688. "path": "pages/API/create-selector-query/create-selector-query-onScroll",
  1689. "style": {
  1690. "navigationBarTitleText": "createSelectorQuery"
  1691. }
  1692. },
  1693. // #endif
  1694. // #ifdef APP-ANDROID || APP-IOS
  1695. {
  1696. "path": "pages/API/get-native-view/element-getnativeview",
  1697. "group": "1,30",
  1698. "style": {
  1699. "navigationBarTitleText": "getNativeView | 获取原生 View",
  1700. "backgroundColor": "#F8F8F8"
  1701. }
  1702. },
  1703. // #endif
  1704. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  1705. {
  1706. "path": "pages/API/resize-observer/resize-observer",
  1707. "group": "1,30",
  1708. "style": {
  1709. "navigationBarTitleText": "UniResizeObserver"
  1710. }
  1711. },
  1712. // #endif
  1713. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  1714. {
  1715. "path": "pages/API/provider/provider",
  1716. "group": "1,1,6",
  1717. "style": {
  1718. "navigationBarTitleText": "provider | 服务提供商"
  1719. }
  1720. },
  1721. // #endif
  1722. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1723. {
  1724. "path": "pages/API/privacy/privacy",
  1725. "group": "1,1,8",
  1726. "style": {
  1727. "navigationBarTitleText": "privacy | 隐私信息授权"
  1728. }
  1729. },
  1730. // #endif
  1731. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1732. {
  1733. "path": "pages/API/base64/base64",
  1734. "group": "1,1,2",
  1735. "style": {
  1736. "navigationBarTitleText": "Base64"
  1737. }
  1738. },
  1739. // #endif
  1740. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1741. {
  1742. "path": "pages/API/uni-push/uni-push",
  1743. "group": "1,16,0",
  1744. "style": {
  1745. "navigationBarTitleText": "uni-push示例"
  1746. }
  1747. },
  1748. // #endif
  1749. // #ifdef APP-ANDROID || APP-IOS || WEB
  1750. {
  1751. "path": "pages/API/report/report",
  1752. "group": "1,17,0",
  1753. "style": {
  1754. "navigationBarTitleText": "uni.report | 统计采集上报"
  1755. }
  1756. },
  1757. // #endif
  1758. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  1759. {
  1760. "path": "pages/API/dialog-page/dialog-page",
  1761. "group": "1,2,1",
  1762. "style": {
  1763. "navigationBarTitleText": "dialogPage"
  1764. }
  1765. },
  1766. // #endif
  1767. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  1768. {
  1769. "path": "pages/API/dialog-page/next-page",
  1770. "style": {
  1771. "navigationBarTitleText": "dialogNextPage"
  1772. }
  1773. },
  1774. // #endif
  1775. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  1776. {
  1777. "path": "pages/API/dialog-page/dialog-1",
  1778. "style": {
  1779. "navigationBarTitleText": "dialogPage1"
  1780. }
  1781. },
  1782. // #endif
  1783. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  1784. {
  1785. "path": "pages/API/dialog-page/dialog-2",
  1786. "style": {
  1787. "navigationBarTitleText": "dialogPage2"
  1788. }
  1789. },
  1790. // #endif
  1791. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  1792. {
  1793. "path": "pages/API/dialog-page/dialog-3",
  1794. "style": {
  1795. "navigationBarTitleText": "dialogPage3",
  1796. "navigationBarTextStyle": "black",
  1797. "backgroundColorContent": "#007aff",
  1798. "navigationStyle": "default"
  1799. }
  1800. },
  1801. // #endif
  1802. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  1803. {
  1804. "path": "pages/API/dialog-page/dialog-4",
  1805. "style": {
  1806. "navigationBarTitleText": "dialogPage4",
  1807. "navigationBarTextStyle": "black"
  1808. }
  1809. },
  1810. // #endif
  1811. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  1812. {
  1813. "path": "pages/API/dialog-page/dialog-5",
  1814. "style": {
  1815. "navigationBarTitleText": "dialogPage5"
  1816. }
  1817. },
  1818. // #endif
  1819. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN
  1820. {
  1821. "path": "pages/API/create-interstitial-ad/create-interstitial-ad",
  1822. "group": "1,13,1",
  1823. "style": {
  1824. "navigationBarTitleText": "uni.createInterstitialAd | 插屏广告",
  1825. "enablePullDownRefresh": false
  1826. }
  1827. },
  1828. // #endif
  1829. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1830. {
  1831. "path": "pages/API/get-background-audio-manager/get-background-audio-manager",
  1832. "group": "1,7,13",
  1833. "style": {
  1834. "navigationBarTitleText": "uni.getBackgroundAudioManager | 背景音频",
  1835. "enablePullDownRefresh": false
  1836. }
  1837. },
  1838. // #endif
  1839. // #ifdef APP-ANDROID
  1840. {
  1841. "path": "pages/API/set-inner-audio-option/set-inner-audio-option",
  1842. "group": "1,7,12",
  1843. "style": {
  1844. "navigationBarTitleText": "uni.setInnerAudioOption | 音频播放选项",
  1845. "enablePullDownRefresh": false
  1846. }
  1847. },
  1848. // #endif
  1849. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1850. {
  1851. "path": "pages/API/get-recorder-manager/get-recorder-manager",
  1852. "group": "1,7,14",
  1853. "style": {
  1854. "navigationBarTitleText": "uni.getRecorderManager | 录音",
  1855. "enablePullDownRefresh": false
  1856. }
  1857. },
  1858. // #endif
  1859. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  1860. {
  1861. "path": "pages/API/share-with-system/share-with-system",
  1862. "group": "1,15,0",
  1863. "style": {
  1864. "navigationBarTitleText": "uni.shareWithSystem",
  1865. "enablePullDownRefresh": false
  1866. }
  1867. },
  1868. // #endif
  1869. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1870. {
  1871. "path": "pages/API/open-app-authorize-setting/open-app-authorize-setting",
  1872. "group": "1,6,5",
  1873. "style": {
  1874. "navigationBarTitleText": "uni.openAppAuthorizeSetting | 跳转系统授权管理页"
  1875. }
  1876. },
  1877. // #endif
  1878. // #ifdef APP-ANDROID || APP-IOS
  1879. {
  1880. "path": "pages/API/is-simulator/is-simulator",
  1881. "group": "1,6,18",
  1882. "style": {
  1883. "navigationBarTitleText": "uni.isSimulator | 判断是否为模拟器"
  1884. }
  1885. },
  1886. // #endif
  1887. // #ifdef APP-ANDROID
  1888. {
  1889. "path": "pages/API/get-accessibility-info/get-accessibility-info",
  1890. "group": "1,6,19",
  1891. "style": {
  1892. "navigationBarTitleText": "uni.getAccessibilityInfo | 获取无障碍服务信息"
  1893. }
  1894. },
  1895. // #endif
  1896. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1897. {
  1898. "path": "pages/API/capture-screen/capture-screen",
  1899. "group": "1,6,15",
  1900. "style": {
  1901. "navigationBarTitleText": "captureScreen | 截屏事件"
  1902. }
  1903. },
  1904. // #endif
  1905. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1906. {
  1907. "path": "pages/API/open-document/open-document",
  1908. "group": "1,8,1",
  1909. "style": {
  1910. "navigationBarTitleText": "uni.openDocument | 打开文档"
  1911. }
  1912. },
  1913. // #endif
  1914. // #ifdef MP-WEIXIN || APP-HARMONY
  1915. {
  1916. "path": "pages/API/bio-auth/bio-auth",
  1917. "group": "1,12,3",
  1918. "style": {
  1919. "navigationBarTitleText": "bioAuth | 生物认证"
  1920. }
  1921. },
  1922. // #endif
  1923. {
  1924. "path": "pages/tabBar/CSS",
  1925. "style": {
  1926. "navigationBarTitleText": "CSS",
  1927. "backgroundColorContent": "@tabBarPagebackgroundColorContent"
  1928. }
  1929. },
  1930. {
  1931. "path": "pages/tabBar/template",
  1932. "style": {
  1933. "navigationBarTitleText": "模板",
  1934. "backgroundColorContent": "@tabBarPagebackgroundColorContent"
  1935. }
  1936. },
  1937. {
  1938. "path": "uni_modules/uni-pay-x/pages/success/success",
  1939. "style": {
  1940. "navigationBarTitleText": "",
  1941. "backgroundColor": "#F8F8F8",
  1942. "navigationBarBackgroundColor": "#007aff",
  1943. "navigationBarTextStyle": "white"
  1944. }
  1945. },
  1946. {
  1947. "path": "uni_modules/uni-pay-x/pages/ad-interactive-webview/ad-interactive-webview",
  1948. "style": {
  1949. "navigationBarTitleText": "ad",
  1950. "backgroundColor": "#F8F8F8"
  1951. }
  1952. },
  1953. {
  1954. "path": "uni_modules/uni-pay-x/pages/pay-desk/pay-desk",
  1955. "style": {
  1956. "navigationBarTitleText": "收银台",
  1957. "backgroundColor": "#F8F8F8"
  1958. }
  1959. },
  1960. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  1961. {
  1962. "path": "uni_modules/uni-openLocation/pages/openLocation/openLocation",
  1963. "style": {
  1964. "navigationBarTitleText": " ",
  1965. "navigationStyle": "custom",
  1966. "disableSwipeBack": false
  1967. }
  1968. },
  1969. // #endif
  1970. // #ifdef APP-IOS
  1971. {
  1972. "path": "pages/API/event-bus/uts-event-bus",
  1973. "style": {
  1974. "navigationBarTitleText": ""
  1975. }
  1976. },
  1977. {
  1978. "path": "pages/API/dialog-page/uts-dialog-page",
  1979. "style": {
  1980. "navigationBarTitleText": ""
  1981. }
  1982. },
  1983. // #endif
  1984. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  1985. {
  1986. "path": "pages/API/get-video-info/get-video-info",
  1987. "group": "1,7,7",
  1988. "style": {
  1989. "navigationBarTitleText": "uni.getVideoInfo | 获取视频信息"
  1990. }
  1991. },
  1992. // #endif
  1993. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  1994. {
  1995. "path": "pages/API/save-image-to-photos-album/save-image-to-photos-album",
  1996. "group": "1,7,2",
  1997. "style": {
  1998. "navigationBarTitleText": "uni.saveImageToPhotosAlbum | 保存图片到相册"
  1999. }
  2000. },
  2001. // #endif
  2002. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  2003. {
  2004. "path": "pages/API/save-video-to-photos-album/save-video-to-photos-album",
  2005. "group": "1,7,6",
  2006. "style": {
  2007. "navigationBarTitleText": "uni.saveVideoToPhotosAlbum | 保存视频到相册"
  2008. }
  2009. },
  2010. // #endif
  2011. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  2012. {
  2013. "path": "pages/component/button/privacy",
  2014. "style": {
  2015. "navigationBarTitleText": ""
  2016. }
  2017. },
  2018. // #endif
  2019. // #ifdef APP-HARMONY
  2020. {
  2021. "path": "pages/component/button/privacy-web-view",
  2022. "style": {
  2023. "navigationBarTitleText": ""
  2024. }
  2025. },
  2026. // #endif
  2027. // #ifdef APP-ANDROID || APP-IOS || APP-HARMONY
  2028. {
  2029. "path": "uni_modules/uni-upgrade-center-app/pages/uni-app-x/upgrade-popup",
  2030. "style": {
  2031. "navigationBarTitleText": ""
  2032. }
  2033. },
  2034. // #endif
  2035. // #ifdef APP-ANDROID || APP-IOS
  2036. {
  2037. "path": "pages/component/native-view/native-view-time-picker-dialog",
  2038. "style": {
  2039. "navigationBarTitleText": ""
  2040. }
  2041. },
  2042. // #endif
  2043. {
  2044. "path": "pages/component/image/image-long",
  2045. "style": {
  2046. "navigationBarTitleText": ""
  2047. }
  2048. },
  2049. // #ifdef APP-ANDROID || APP-IOS
  2050. {
  2051. "path": "pages/API/keyboard/keyboard",
  2052. "group": "1,6,20",
  2053. "style": {
  2054. "navigationBarTitleText": "keyboard | 键盘"
  2055. }
  2056. },
  2057. // #endif
  2058. {
  2059. "path": "pages/API/request/requestTask",
  2060. "style": {
  2061. "navigationBarTitleText": "requestTask | 发起流式请求"
  2062. }
  2063. }
  2064. ],
  2065. "subPackages": [
  2066. {
  2067. "root": "pages/API/get-file-system-manager",
  2068. "pages": [
  2069. // #ifdef APP-ANDROID || APP-IOS || MP-WEIXIN || APP-HARMONY
  2070. {
  2071. "path": "get-file-system-manager",
  2072. "group": "1,8,0",
  2073. "style": {
  2074. "navigationBarTitleText": "uni.getFileSystemManager | 获取文件管理器"
  2075. }
  2076. },
  2077. {
  2078. "path": "filemanage",
  2079. "style": {
  2080. "navigationBarTitleText": "沙盒文件管理器"
  2081. }
  2082. }
  2083. // #endif
  2084. ]
  2085. },
  2086. {
  2087. "root": "pages/API/create-inner-audio-context",
  2088. "pages": [
  2089. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2090. {
  2091. "path": "create-inner-audio-context",
  2092. "group": "1,7,11",
  2093. "style": {
  2094. "navigationBarTitleText": "uni.createInnerAudioContext | 音频播放"
  2095. }
  2096. },
  2097. // #endif
  2098. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2099. {
  2100. "path": "inner-audio-format",
  2101. "style": {
  2102. "navigationBarTitleText": "inner-audio-format"
  2103. }
  2104. },
  2105. // #endif
  2106. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2107. {
  2108. "path": "inner-audio-path",
  2109. "style": {
  2110. "navigationBarTitleText": "inner-audio-path"
  2111. }
  2112. },
  2113. // #endif
  2114. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2115. {
  2116. "path": "inner-audio-mult",
  2117. "style": {
  2118. "navigationBarTitleText": "inner-audio-mult"
  2119. }
  2120. }
  2121. // #endif
  2122. ]
  2123. },
  2124. {
  2125. "root": "pages/template",
  2126. "pages": [
  2127. {
  2128. "path": "list-news/list-news",
  2129. "style": {
  2130. "navigationBarTitleText": "列表到详情示例(吸顶)"
  2131. }
  2132. },
  2133. {
  2134. "path": "list-news/detail/detail",
  2135. "style": {
  2136. "navigationBarTitleText": "详情示例"
  2137. }
  2138. },
  2139. {
  2140. "path": "drop-card/drop-card",
  2141. "style": {
  2142. "navigationBarTitleText": "drop-card"
  2143. }
  2144. },
  2145. {
  2146. "path": "swiper-list/swiper-list",
  2147. "style": {
  2148. "navigationBarTitleText": "swiper-list"
  2149. }
  2150. },
  2151. {
  2152. "path": "swiper-list2/swiper-list2",
  2153. "style": {
  2154. "navigationBarTitleText": "swiper-list2"
  2155. }
  2156. },
  2157. {
  2158. "path": "slider-100/slider-100",
  2159. "style": {
  2160. "navigationBarTitleText": "slider x 100"
  2161. }
  2162. },
  2163. {
  2164. "path": "swiper-vertical-video/swiper-vertical-video",
  2165. "style": {
  2166. "navigationStyle": "custom",
  2167. "backgroundColorContent": "#000000"
  2168. }
  2169. },
  2170. // #ifdef APP
  2171. {
  2172. "path": "scroll-sticky/scroll-sticky",
  2173. "style": {
  2174. "navigationBarTitleText": "scroll-view自定义滚动吸顶"
  2175. }
  2176. },
  2177. // #endif
  2178. {
  2179. "path": "scroll-fold-nav/scroll-fold-nav",
  2180. "style": {
  2181. "navigationStyle": "custom",
  2182. "navigationBarTextStyle": "black"
  2183. }
  2184. },
  2185. // #ifdef APP
  2186. {
  2187. "path": "custom-refresher/custom-refresher",
  2188. "style": {
  2189. "navigationBarTitleText": "自定义下拉刷新"
  2190. }
  2191. },
  2192. // #endif
  2193. {
  2194. "path": "half-screen/half-screen",
  2195. "style": {
  2196. "navigationBarTitleText": "半屏弹窗"
  2197. }
  2198. },
  2199. {
  2200. "path": "long-list/long-list",
  2201. "style": {
  2202. "navigationBarTitleText": "Android顶部搜索框随时下移长列表",
  2203. "enablePullDownRefresh": true
  2204. }
  2205. },
  2206. {
  2207. "path": "long-list2/long-list2",
  2208. "style": {
  2209. "navigationBarTitleText": "顶部banner长列表嵌套滚动示例",
  2210. "enablePullDownRefresh": true
  2211. }
  2212. },
  2213. // #ifdef APP
  2214. {
  2215. "path": "long-list-nested/long-list-nested",
  2216. "style": {
  2217. "navigationBarTitleText": "顶部banner长列表嵌套滚动示例",
  2218. "enablePullDownRefresh": true
  2219. }
  2220. },
  2221. {
  2222. "path": "pull-zoom-image/pull-zoom-image",
  2223. "style": {
  2224. "navigationStyle": "custom"
  2225. }
  2226. },
  2227. // #endif
  2228. {
  2229. "path": "long-waterflow-nested/long-waterflow-nested",
  2230. "style": {
  2231. "navigationBarTitleText": "顶部banner瀑布流长列表嵌套滚动示例",
  2232. "enablePullDownRefresh": true
  2233. }
  2234. },
  2235. {
  2236. "path": "navbar-lite/navbar-lite",
  2237. "style": {
  2238. "navigationBarTitleText": "自定义导航栏",
  2239. "navigationStyle": "custom"
  2240. }
  2241. },
  2242. {
  2243. "path": "custom-tab-bar/custom-tab-bar",
  2244. "style": {
  2245. "navigationBarTitleText": "自定义TabBar"
  2246. }
  2247. },
  2248. // #ifdef APP
  2249. {
  2250. "path": "calendar/calendar",
  2251. "style": {
  2252. "navigationBarTitleText": "日历"
  2253. }
  2254. },
  2255. // #endif
  2256. // #ifdef APP-ANDROID || APP-IOS || WEB || APP-HARMONY
  2257. {
  2258. "path": "schema/schema",
  2259. "style": {
  2260. "navigationBarTitleText": "打开schema示例"
  2261. }
  2262. },
  2263. // #endif
  2264. {
  2265. "path": "custom-long-list/custom-long-list",
  2266. "style": {
  2267. "navigationBarTitleText": "自定义虚拟长列表",
  2268. "enablePullDownRefresh": false
  2269. }
  2270. },
  2271. {
  2272. "path": "long-list-batch/long-list-batch",
  2273. "style": {
  2274. "navigationBarTitleText": "分批加载长列表"
  2275. }
  2276. },
  2277. {
  2278. "path": "test-background-color-content/test-background-color-content",
  2279. "style": {
  2280. "navigationBarTitleText": "",
  2281. "backgroundColorContent": "#fffae8"
  2282. }
  2283. },
  2284. // #ifdef WEB
  2285. {
  2286. "path": "browser-element/browser-element",
  2287. "style": {
  2288. "navigationBarTitleText": "如何使用浏览器 element"
  2289. }
  2290. },
  2291. // #endif
  2292. // #ifdef MP-WEIXIN
  2293. {
  2294. "path": "vant/vant",
  2295. "style": {
  2296. "navigationBarTitleText": "微信自定义组件示例",
  2297. "usingComponents": {
  2298. "vant-button": "/wxcomponents/vant/button/index",
  2299. "vant-icon": "/wxcomponents/vant/icon/index",
  2300. "vant-info": "/wxcomponents/vant/info/index",
  2301. "vant-loading": "/wxcomponents/vant/loading/index"
  2302. }
  2303. }
  2304. },
  2305. {
  2306. "path": "WXS/WXS",
  2307. "style": {
  2308. "navigationBarTitleText": "WXS"
  2309. }
  2310. },
  2311. // #endif
  2312. {
  2313. "path": "issue-14765/issue-14765",
  2314. "style": {
  2315. "navigationBarTitleText": "issue-14765"
  2316. }
  2317. },
  2318. // #ifdef APP-ANDROID || APP-IOS
  2319. {
  2320. "path": "test-uts-button/test-uts-button",
  2321. "style": {
  2322. "navigationBarTitleText": ""
  2323. }
  2324. }
  2325. // #endif
  2326. ]
  2327. },
  2328. {
  2329. "root": "pages/CSS",
  2330. "pages": [
  2331. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2332. {
  2333. "path": "background/background-color",
  2334. "group": "2,8,1",
  2335. "style": {
  2336. "navigationBarTitleText": "background-color"
  2337. }
  2338. },
  2339. // #endif
  2340. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2341. {
  2342. "path": "background/background-image",
  2343. "group": "2,8,2",
  2344. "style": {
  2345. "navigationBarTitleText": "background-image"
  2346. }
  2347. },
  2348. // #endif
  2349. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2350. {
  2351. "path": "border/border-bottom",
  2352. "group": "2,13,22",
  2353. "style": {
  2354. "navigationBarTitleText": "border-bottom"
  2355. }
  2356. },
  2357. // #endif
  2358. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2359. {
  2360. "path": "border/border-color",
  2361. "group": "2,13,11",
  2362. "style": {
  2363. "navigationBarTitleText": "border-color"
  2364. }
  2365. },
  2366. // #endif
  2367. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2368. {
  2369. "path": "border/border-left",
  2370. "group": "2,13,23",
  2371. "style": {
  2372. "navigationBarTitleText": "border-left"
  2373. }
  2374. },
  2375. // #endif
  2376. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2377. {
  2378. "path": "border/border-radius",
  2379. "group": "2,13,16",
  2380. "style": {
  2381. "navigationBarTitleText": "border-radius"
  2382. }
  2383. },
  2384. // #endif
  2385. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2386. {
  2387. "path": "border/border-right",
  2388. "group": "2,13,24",
  2389. "style": {
  2390. "navigationBarTitleText": "border-right"
  2391. }
  2392. },
  2393. // #endif
  2394. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2395. {
  2396. "path": "border/border-style",
  2397. "group": "2,13,1",
  2398. "style": {
  2399. "navigationBarTitleText": "border-style"
  2400. }
  2401. },
  2402. // #endif
  2403. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2404. {
  2405. "path": "border/border-top",
  2406. "group": "2,13,21",
  2407. "style": {
  2408. "navigationBarTitleText": "border-top"
  2409. }
  2410. },
  2411. // #endif
  2412. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2413. {
  2414. "path": "border/border-width",
  2415. "group": "2,13,6",
  2416. "style": {
  2417. "navigationBarTitleText": "border-width"
  2418. }
  2419. },
  2420. // #endif
  2421. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2422. {
  2423. "path": "border/border",
  2424. "group": "2,13,0",
  2425. "style": {
  2426. "navigationBarTitleText": "border"
  2427. }
  2428. },
  2429. // #endif
  2430. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2431. {
  2432. "path": "border/complex-border/complex-border",
  2433. "group": "2,13",
  2434. "style": {
  2435. "navigationBarTitleText": "border属性组合示例"
  2436. }
  2437. },
  2438. // #endif
  2439. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2440. {
  2441. "path": "border/dynamic-border",
  2442. "group": "2,13",
  2443. "style": {
  2444. "navigationBarTitleText": "border动态修改"
  2445. }
  2446. },
  2447. // #endif
  2448. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2449. {
  2450. "path": "border/border-update",
  2451. "group": "2,13",
  2452. "style": {
  2453. "navigationBarTitleText": "border更新样式"
  2454. }
  2455. },
  2456. // #endif
  2457. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2458. {
  2459. "path": "box-shadow/box-shadow",
  2460. "group": "2,15",
  2461. "style": {
  2462. "navigationBarTitleText": "box-shadow"
  2463. }
  2464. },
  2465. // #endif
  2466. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2467. {
  2468. "path": "display/flex",
  2469. "group": "2,5",
  2470. "style": {
  2471. "navigationBarTitleText": "flex"
  2472. }
  2473. },
  2474. // #endif
  2475. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2476. {
  2477. "path": "display/none",
  2478. "group": "2,5",
  2479. "style": {
  2480. "navigationBarTitleText": "none"
  2481. }
  2482. },
  2483. // #endif
  2484. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2485. {
  2486. "path": "flex/align-content",
  2487. "group": "2,7,6",
  2488. "style": {
  2489. "navigationBarTitleText": "align-content"
  2490. }
  2491. },
  2492. // #endif
  2493. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2494. {
  2495. "path": "flex/align-items",
  2496. "group": "2,7,4",
  2497. "style": {
  2498. "navigationBarTitleText": "align-items"
  2499. }
  2500. },
  2501. // #endif
  2502. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2503. {
  2504. "path": "flex/flex-basis",
  2505. "group": "2,7,9",
  2506. "style": {
  2507. "navigationBarTitleText": "flex-basis"
  2508. }
  2509. },
  2510. // #endif
  2511. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2512. {
  2513. "path": "flex/flex-direction",
  2514. "group": "2,7,1",
  2515. "style": {
  2516. "navigationBarTitleText": "flex-direction"
  2517. }
  2518. },
  2519. // #endif
  2520. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2521. {
  2522. "path": "flex/flex-flow",
  2523. "group": "2,7,10",
  2524. "style": {
  2525. "navigationBarTitleText": "flex-flow"
  2526. }
  2527. },
  2528. // #endif
  2529. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2530. {
  2531. "path": "flex/flex-grow",
  2532. "group": "2,7,7",
  2533. "style": {
  2534. "navigationBarTitleText": "flex-grow"
  2535. }
  2536. },
  2537. // #endif
  2538. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2539. {
  2540. "path": "flex/flex-shrink",
  2541. "group": "2,7,8",
  2542. "style": {
  2543. "navigationBarTitleText": "flex-shrink"
  2544. }
  2545. },
  2546. // #endif
  2547. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2548. {
  2549. "path": "flex/flex",
  2550. "group": "2,7,0",
  2551. "style": {
  2552. "navigationBarTitleText": "flex"
  2553. }
  2554. },
  2555. // #endif
  2556. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2557. {
  2558. "path": "flex/justify-content",
  2559. "group": "2,7,2",
  2560. "style": {
  2561. "navigationBarTitleText": "justify-content"
  2562. }
  2563. },
  2564. // #endif
  2565. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2566. {
  2567. "path": "layout/height",
  2568. "group": "2,1,0",
  2569. "style": {
  2570. "navigationBarTitleText": "height"
  2571. }
  2572. },
  2573. // #endif
  2574. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2575. {
  2576. "path": "layout/max-height",
  2577. "group": "2,1,2",
  2578. "style": {
  2579. "navigationBarTitleText": "max-height"
  2580. }
  2581. },
  2582. // #endif
  2583. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2584. {
  2585. "path": "layout/max-width",
  2586. "group": "2,0,2",
  2587. "style": {
  2588. "navigationBarTitleText": "max-width"
  2589. }
  2590. },
  2591. // #endif
  2592. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2593. {
  2594. "path": "layout/min-height",
  2595. "group": "2,1,1",
  2596. "style": {
  2597. "navigationBarTitleText": "min-height"
  2598. }
  2599. },
  2600. // #endif
  2601. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2602. {
  2603. "path": "layout/min-width",
  2604. "group": "2,0,1",
  2605. "style": {
  2606. "navigationBarTitleText": "min-width"
  2607. }
  2608. },
  2609. // #endif
  2610. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2611. {
  2612. "path": "layout/position",
  2613. "group": "2,9,0",
  2614. "style": {
  2615. "navigationBarTitleText": "position"
  2616. }
  2617. },
  2618. // #endif
  2619. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2620. {
  2621. "path": "layout/width",
  2622. "group": "2,0,0",
  2623. "style": {
  2624. "navigationBarTitleText": "width"
  2625. }
  2626. },
  2627. // #endif
  2628. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2629. {
  2630. "path": "layout/z-index",
  2631. "group": "2,10",
  2632. "style": {
  2633. "navigationBarTitleText": "z-index"
  2634. }
  2635. },
  2636. // #endif
  2637. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2638. {
  2639. "path": "layout/visibility",
  2640. "group": "2,6",
  2641. "style": {
  2642. "navigationBarTitleText": "visibility"
  2643. }
  2644. },
  2645. // #endif
  2646. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2647. {
  2648. "path": "margin/margin-bottom",
  2649. "group": "2,2,2",
  2650. "style": {
  2651. "navigationBarTitleText": "margin-bottom"
  2652. }
  2653. },
  2654. // #endif
  2655. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2656. {
  2657. "path": "margin/margin-left",
  2658. "group": "2,2,3",
  2659. "style": {
  2660. "navigationBarTitleText": "margin-left"
  2661. }
  2662. },
  2663. // #endif
  2664. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2665. {
  2666. "path": "margin/margin-right",
  2667. "group": "2,2,4",
  2668. "style": {
  2669. "navigationBarTitleText": "margin-right"
  2670. }
  2671. },
  2672. // #endif
  2673. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2674. {
  2675. "path": "margin/margin-top",
  2676. "group": "2,2,1",
  2677. "style": {
  2678. "navigationBarTitleText": "margin-top"
  2679. }
  2680. },
  2681. // #endif
  2682. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2683. {
  2684. "path": "margin/margin",
  2685. "group": "2,2,0",
  2686. "style": {
  2687. "navigationBarTitleText": "margin"
  2688. }
  2689. },
  2690. // #endif
  2691. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2692. {
  2693. "path": "overflow/overflow",
  2694. "group": "2,11",
  2695. "style": {
  2696. "navigationBarTitleText": "overflow"
  2697. }
  2698. },
  2699. // #endif
  2700. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2701. {
  2702. "path": "padding/padding-bottom",
  2703. "group": "2,3,2",
  2704. "style": {
  2705. "navigationBarTitleText": "padding-bottom"
  2706. }
  2707. },
  2708. // #endif
  2709. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2710. {
  2711. "path": "padding/padding-left",
  2712. "group": "2,3,3",
  2713. "style": {
  2714. "navigationBarTitleText": "padding-left"
  2715. }
  2716. },
  2717. // #endif
  2718. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2719. {
  2720. "path": "padding/padding-right",
  2721. "group": "2,3,4",
  2722. "style": {
  2723. "navigationBarTitleText": "padding-right"
  2724. }
  2725. },
  2726. // #endif
  2727. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2728. {
  2729. "path": "padding/padding-top",
  2730. "group": "2,3,1",
  2731. "style": {
  2732. "navigationBarTitleText": "padding-top"
  2733. }
  2734. },
  2735. // #endif
  2736. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2737. {
  2738. "path": "padding/padding",
  2739. "group": "2,3,0",
  2740. "style": {
  2741. "navigationBarTitleText": "padding"
  2742. }
  2743. },
  2744. // #endif
  2745. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2746. {
  2747. "path": "text/color",
  2748. "group": "2,14,0",
  2749. "style": {
  2750. "navigationBarTitleText": "color"
  2751. }
  2752. },
  2753. // #endif
  2754. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2755. {
  2756. "path": "text/font-family",
  2757. "group": "2,14,2",
  2758. "style": {
  2759. "navigationBarTitleText": "font-family"
  2760. }
  2761. },
  2762. // #endif
  2763. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2764. {
  2765. "path": "text/font-size",
  2766. "group": "2,14,1",
  2767. "style": {
  2768. "navigationBarTitleText": "font-size"
  2769. }
  2770. },
  2771. // #endif
  2772. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2773. {
  2774. "path": "text/font-style",
  2775. "group": "2,14,3",
  2776. "style": {
  2777. "navigationBarTitleText": "font-style"
  2778. }
  2779. },
  2780. // #endif
  2781. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2782. {
  2783. "path": "text/font-weight",
  2784. "group": "2,14,4",
  2785. "style": {
  2786. "navigationBarTitleText": "font-weight"
  2787. }
  2788. },
  2789. // #endif
  2790. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2791. {
  2792. "path": "text/letter-spacing",
  2793. "group": "2,14,15",
  2794. "style": {
  2795. "navigationBarTitleText": "letter-spacing"
  2796. }
  2797. },
  2798. // #endif
  2799. {
  2800. "path": "text/font-family-icon",
  2801. "style": {
  2802. "navigationBarTitleText": "font-family: uni-icon"
  2803. }
  2804. },
  2805. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2806. {
  2807. "path": "text/line-height",
  2808. "group": "2,14,13",
  2809. "style": {
  2810. "navigationBarTitleText": "line-height"
  2811. }
  2812. },
  2813. // #endif
  2814. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2815. {
  2816. "path": "text/text-align",
  2817. "group": "2,14,10",
  2818. "style": {
  2819. "navigationBarTitleText": "text-align"
  2820. }
  2821. },
  2822. // #endif
  2823. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2824. {
  2825. "path": "text/text-overflow",
  2826. "group": "2,14,11",
  2827. "style": {
  2828. "navigationBarTitleText": "text-overflow"
  2829. }
  2830. },
  2831. // #endif
  2832. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2833. {
  2834. "path": "text/text-decoration-line",
  2835. "group": "2,14,6",
  2836. "style": {
  2837. "navigationBarTitleText": "text-decoration-line"
  2838. }
  2839. },
  2840. // #endif
  2841. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2842. {
  2843. "path": "text/text-shadow",
  2844. "group": "2,14,12",
  2845. "style": {
  2846. "navigationBarTitleText": "text-shadow"
  2847. }
  2848. },
  2849. // #endif
  2850. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2851. {
  2852. "path": "transition/transition",
  2853. "group": "2,16",
  2854. "style": {
  2855. "navigationBarTitleText": "transition"
  2856. }
  2857. },
  2858. // #endif
  2859. // #ifdef APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2860. {
  2861. "path": "transition/transition-transform",
  2862. "style": {
  2863. "navigationBarTitleText": "transition-transform"
  2864. }
  2865. },
  2866. // #endif
  2867. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2868. {
  2869. "path": "pointer-events/pointer-events",
  2870. "group": "2,18",
  2871. "style": {
  2872. "navigationBarTitleText": "pointer-events"
  2873. }
  2874. },
  2875. // #endif
  2876. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2877. {
  2878. "path": "transform/translate",
  2879. "group": "2,17",
  2880. "style": {
  2881. "navigationBarTitleText": "translate"
  2882. }
  2883. },
  2884. // #endif
  2885. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2886. {
  2887. "path": "transform/scale",
  2888. "group": "2,17",
  2889. "style": {
  2890. "navigationBarTitleText": "scale"
  2891. }
  2892. },
  2893. // #endif
  2894. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2895. {
  2896. "path": "transform/rotate",
  2897. "group": "2,17",
  2898. "style": {
  2899. "navigationBarTitleText": "rotate"
  2900. }
  2901. },
  2902. // #endif
  2903. {
  2904. "path": "variable/variable",
  2905. "group": "2,20",
  2906. "style": {
  2907. "navigationBarTitleText": "预置css变量",
  2908. "pageOrientation": "auto"
  2909. }
  2910. },
  2911. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2912. {
  2913. "path": "overflow/overflow-visible-event",
  2914. "group": "2,11",
  2915. "style": {
  2916. "navigationBarTitleText": "overflow-visible-event"
  2917. }
  2918. },
  2919. // #endif
  2920. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2921. {
  2922. "path": "transform/transform-origin",
  2923. "style": {
  2924. "navigationBarTitleText": "transform-origin"
  2925. }
  2926. },
  2927. // #endif
  2928. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2929. {
  2930. "path": "variable/custom_variable",
  2931. "group": "2,20",
  2932. "style": {
  2933. "navigationBarTitleText": "自定义css变量",
  2934. "pageOrientation": "auto"
  2935. }
  2936. },
  2937. // #endif
  2938. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2939. {
  2940. "path": "function/function",
  2941. "group": "2,20",
  2942. "style": {
  2943. "navigationBarTitleText": "env 函数",
  2944. "pageOrientation": "auto"
  2945. }
  2946. },
  2947. // #endif
  2948. {
  2949. "path": "transition/transition-duration",
  2950. "style": {
  2951. "navigationBarTitleText": ""
  2952. }
  2953. },
  2954. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2955. {
  2956. "path": "function/rgb",
  2957. "group": "2,20",
  2958. "style": {
  2959. "navigationBarTitleText": "rgb 函数"
  2960. }
  2961. },
  2962. // #endif
  2963. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2964. {
  2965. "path": "function/rgba",
  2966. "group": "2,20",
  2967. "style": {
  2968. "navigationBarTitleText": "rgba 函数"
  2969. }
  2970. },
  2971. // #endif
  2972. // #ifdef APP-ANDROID || APP-IOS || WEB || MP-WEIXIN || APP-HARMONY
  2973. {
  2974. "path": "function/url",
  2975. "group": "2,20",
  2976. "style": {
  2977. "navigationBarTitleText": "url 函数"
  2978. }
  2979. }
  2980. // #endif
  2981. ]
  2982. }
  2983. ],
  2984. "globalStyle": {
  2985. "pageOrientation": "portrait",
  2986. "navigationBarTitleText": "Hello uniapp x",
  2987. "navigationBarTextStyle": "@navigationBarTextStyle",
  2988. "navigationBarBackgroundColor": "@navigationBarBackgroundColor",
  2989. "backgroundColorContent": "@backgroundColorContent",
  2990. "backgroundColor": "@backgroundColor",
  2991. "backgroundTextStyle": "@backgroundTextStyle"
  2992. },
  2993. // #ifndef APP-HARMONY
  2994. "tabBar": {
  2995. "color": "@tabBarColor",
  2996. "selectedColor": "@tabBarSelectedColor",
  2997. "borderStyle": "@tabBarBorderStyle",
  2998. "backgroundColor": "@tabBarBackgroundColor",
  2999. "list": [
  3000. {
  3001. "pagePath": "pages/tabBar/component",
  3002. "iconPath": "@tabBarComponentIconPath",
  3003. "selectedIconPath": "@tabBarComponentSelectedIconPath",
  3004. "text": "组件"
  3005. },
  3006. {
  3007. "pagePath": "pages/tabBar/API",
  3008. "iconPath": "@tabBarAPIIconPath",
  3009. "selectedIconPath": "@tabBarAPISelectedIconPath",
  3010. "text": "接口"
  3011. },
  3012. {
  3013. "pagePath": "pages/tabBar/CSS",
  3014. "iconPath": "@tabBarCSSIconPath",
  3015. "selectedIconPath": "@tabBarCSSSelectedIconPath",
  3016. "text": "CSS"
  3017. },
  3018. {
  3019. "pagePath": "pages/tabBar/template",
  3020. "iconPath": "@tabBarTemplateIconPath",
  3021. "selectedIconPath": "@tabBarTemplateSelectedIconPath",
  3022. "text": "模板"
  3023. }
  3024. ]
  3025. },
  3026. // #endif
  3027. // #ifdef APP-HARMONY
  3028. "tabBar": {
  3029. "color": "@tabBarColor",
  3030. "selectedColor": "@tabBarSelectedColor",
  3031. "borderStyle": "@tabBarBorderStyle",
  3032. "backgroundColor": "@tabBarBackgroundColor",
  3033. "list": [
  3034. {
  3035. "pagePath": "pages/tabBar/component",
  3036. "iconPath": "static/component.png",
  3037. "selectedIconPath": "static/componentHL.png",
  3038. "text": "组件"
  3039. },
  3040. {
  3041. "pagePath": "pages/tabBar/API",
  3042. "iconPath": "static/api.png",
  3043. "selectedIconPath": "static/apiHL.png",
  3044. "text": "接口"
  3045. },
  3046. {
  3047. "pagePath": "pages/tabBar/CSS",
  3048. "iconPath": "static/css.png",
  3049. "selectedIconPath": "static/cssHL.png",
  3050. "text": "CSS"
  3051. },
  3052. {
  3053. "pagePath": "pages/tabBar/template",
  3054. "iconPath": "static/template.png",
  3055. "selectedIconPath": "static/templateHL.png",
  3056. "text": "模板"
  3057. }
  3058. ]
  3059. },
  3060. // #endif
  3061. "condition": {
  3062. //模式配置,仅开发期间生效
  3063. "current": 0, //当前激活的模式(list 的索引项)
  3064. "list": [
  3065. {
  3066. "name": "", //模式名称
  3067. "path": "", //启动页面,必选
  3068. "query": "" //启动参数,在页面的onLoad函数里面得到
  3069. }
  3070. ]
  3071. },
  3072. "groups": [
  3073. {
  3074. "id": "component",
  3075. "name": "组件",
  3076. "children": [
  3077. {
  3078. "id": "component.global-properties-events",
  3079. "name": "全局属性和事件"
  3080. },
  3081. {
  3082. "id": "component.view-container",
  3083. "name": "视图容器",
  3084. "children": [
  3085. {
  3086. "id": "component.view-container.view",
  3087. "name": "view"
  3088. },
  3089. {
  3090. "id": "component.view-container.scroll-view",
  3091. "name": "scroll-view"
  3092. },
  3093. {
  3094. "id": "component.view-container.swiper",
  3095. "name": "swiper"
  3096. },
  3097. {
  3098. "id": "component.view-container.match-media",
  3099. "name": "match-media"
  3100. },
  3101. {
  3102. "id": "component.view-container.movable",
  3103. "name": "movable",
  3104. "children": [
  3105. null,
  3106. {
  3107. "id": "component.view-container.movable.movable-view",
  3108. "name": "movable-view"
  3109. }
  3110. ]
  3111. },
  3112. {
  3113. "id": "component.view-container.cover",
  3114. "name": "cover",
  3115. "children": [
  3116. {
  3117. "id": "component.view-container.cover.cover-view",
  3118. "name": "cover-view"
  3119. }
  3120. ]
  3121. },
  3122. {
  3123. "id": "component.view-container.list-view",
  3124. "name": "list-view"
  3125. },
  3126. {
  3127. "id": "component.view-container.waterflow",
  3128. "name": "waterflow"
  3129. },
  3130. {
  3131. "id": "component.view-container.sticky",
  3132. "name": "sticky",
  3133. "children": [
  3134. {
  3135. "id": "component.view-container.sticky.sticky-header",
  3136. "name": "sticky-header"
  3137. },
  3138. {
  3139. "id": "component.view-container.sticky.sticky-section",
  3140. "name": "sticky-section"
  3141. }
  3142. ]
  3143. },
  3144. {
  3145. "id": "component.view-container.nested-scroll",
  3146. "name": "nested-scroll",
  3147. "children": [
  3148. {
  3149. "id": "component.view-container.nested-scroll.nested-scroll-header",
  3150. "name": "nested-scroll-header"
  3151. },
  3152. {
  3153. "id": "component.view-container.nested-scroll.nested-scroll-body",
  3154. "name": "nested-scroll-body"
  3155. }
  3156. ]
  3157. },
  3158. {
  3159. "id": "component.view-container.share-element",
  3160. "name": "share-element"
  3161. }
  3162. ]
  3163. },
  3164. {
  3165. "id": "component.basic-content",
  3166. "name": "基础内容",
  3167. "children": [
  3168. null,
  3169. {
  3170. "id": "component.basic-content.text",
  3171. "name": "text"
  3172. },
  3173. {
  3174. "id": "component.basic-content.rich-text",
  3175. "name": "rich-text"
  3176. },
  3177. {
  3178. "id": "component.basic-content.progress",
  3179. "name": "progress"
  3180. },
  3181. {
  3182. "id": "component.basic-content.native-view",
  3183. "name": "native-view"
  3184. }
  3185. ]
  3186. },
  3187. {
  3188. "id": "component.form-component",
  3189. "name": "表单组件",
  3190. "children": [
  3191. {
  3192. "id": "component.form-component.button",
  3193. "name": "button"
  3194. },
  3195. {
  3196. "id": "component.form-component.checkbox",
  3197. "name": "checkbox"
  3198. },
  3199. {
  3200. "id": "component.form-component.form",
  3201. "name": "form"
  3202. },
  3203. {
  3204. "id": "component.form-component.input",
  3205. "name": "input"
  3206. },
  3207. {
  3208. "id": "component.form-component.editor",
  3209. "name": "editor"
  3210. },
  3211. {
  3212. "id": "component.form-component.label",
  3213. "name": "label"
  3214. },
  3215. {
  3216. "id": "component.form-component.picker",
  3217. "name": "picker"
  3218. },
  3219. {
  3220. "id": "component.form-component.picker-view",
  3221. "name": "picker-view"
  3222. },
  3223. {
  3224. "id": "component.form-component.radio",
  3225. "name": "radio"
  3226. },
  3227. {
  3228. "id": "component.form-component.slider",
  3229. "name": "slider"
  3230. },
  3231. {
  3232. "id": "component.form-component.switch",
  3233. "name": "switch"
  3234. },
  3235. {
  3236. "id": "component.form-component.textarea",
  3237. "name": "textarea"
  3238. }
  3239. ]
  3240. },
  3241. {
  3242. "id": "component.navigation",
  3243. "name": "导航",
  3244. "children": [
  3245. {
  3246. "id": "component.navigation.navigator",
  3247. "name": "navigator"
  3248. }
  3249. ]
  3250. },
  3251. {
  3252. "id": "component.media",
  3253. "name": "媒体组件",
  3254. "children": [
  3255. {
  3256. "id": "component.media.image",
  3257. "name": "image"
  3258. },
  3259. {
  3260. "id": "component.media.video",
  3261. "name": "video"
  3262. },
  3263. null,
  3264. {
  3265. "id": "component.media.camera",
  3266. "name": "camera"
  3267. }
  3268. ]
  3269. },
  3270. {
  3271. "id": "component.map",
  3272. "name": "地图"
  3273. },
  3274. {
  3275. "id": "component.canvas",
  3276. "name": "画布"
  3277. },
  3278. {
  3279. "id": "component.ad",
  3280. "name": "广告"
  3281. },
  3282. {
  3283. "id": "component.web-view",
  3284. "name": "网页"
  3285. },
  3286. {
  3287. "id": "component.page-meta",
  3288. "name": "page-meta"
  3289. },
  3290. {
  3291. "id": "component.unicloud",
  3292. "name": "unicloud"
  3293. }
  3294. ]
  3295. },
  3296. {
  3297. "id": "API",
  3298. "name": "API",
  3299. "children": [
  3300. {
  3301. "id": "api.global",
  3302. "name": "全局",
  3303. "children": [
  3304. {
  3305. "id": "api.global.getApp",
  3306. "name": "getApp"
  3307. },
  3308. {
  3309. "id": "api.global.getCurrentPages",
  3310. "name": "getCurrentPages"
  3311. },
  3312. {
  3313. "id": "api.global.animationFrame",
  3314. "name": "animationFrame"
  3315. }
  3316. ]
  3317. },
  3318. {
  3319. "id": "api.base",
  3320. "name": "基础",
  3321. "children": [
  3322. {
  3323. "id": "api.base.env",
  3324. "name": "uni.env"
  3325. },
  3326. {
  3327. "id": "api.base.eventBus",
  3328. "name": "eventBus"
  3329. },
  3330. {
  3331. "id": "api.base.base64",
  3332. "name": "Base64"
  3333. },
  3334. {
  3335. "id": "api.base.interceptor",
  3336. "name": "interceptor"
  3337. },
  3338. {
  3339. "id": "api.base.launch",
  3340. "name": "启动",
  3341. "children": [
  3342. {
  3343. "id": "api.base.launch.getLaunchOptionsSync",
  3344. "name": "uni.getLaunchOptionsSync"
  3345. },
  3346. {
  3347. "id": "api.base.launch.getEnterOptionsSync",
  3348. "name": "uni.getEnterOptionsSync"
  3349. }
  3350. ]
  3351. },
  3352. {
  3353. "id": "api.base.exit",
  3354. "name": "uni.exit"
  3355. },
  3356. {
  3357. "id": "api.base.provider",
  3358. "name": "provider"
  3359. },
  3360. null,
  3361. {
  3362. "id": "api.base.privacy",
  3363. "name": "privacy"
  3364. }
  3365. ]
  3366. },
  3367. {
  3368. "id": "api.page",
  3369. "name": "页面和路由",
  3370. "children": [
  3371. {
  3372. "id": "api.page.navigator",
  3373. "name": "navigator"
  3374. },
  3375. {
  3376. "id": "api.page.dialogPage",
  3377. "name": "dialogPage"
  3378. },
  3379. {
  3380. "id": "api.page.setNavigationBarColor",
  3381. "name": "uni.setNavigationBarColor"
  3382. },
  3383. {
  3384. "id": "api.page.setNavigationBarTitle",
  3385. "name": "uni.setNavigationBarTitle"
  3386. },
  3387. null,
  3388. {
  3389. "id": "api.page.pullDownRefresh",
  3390. "name": "pullDownRefresh"
  3391. },
  3392. {
  3393. "id": "api.page.pageScrollTo",
  3394. "name": "uni.pageScrollTo"
  3395. }
  3396. ]
  3397. },
  3398. {
  3399. "id": "api.dom",
  3400. "name": "element 和 node",
  3401. "children": [
  3402. {
  3403. "id": "api.dom.getElementById",
  3404. "name": "uni.getElementById"
  3405. },
  3406. null,
  3407. {
  3408. "id": "api.dom.createSelectorQuery",
  3409. "name": "uni.createSelectorQuery"
  3410. }
  3411. ]
  3412. },
  3413. {
  3414. "id": "api.ui",
  3415. "name": "界面",
  3416. "children": [
  3417. {
  3418. "id": "api.ui.createIntersectionObserver",
  3419. "name": "uni.createIntersectionObserver"
  3420. },
  3421. {
  3422. "id": "api.ui.actionSheet",
  3423. "name": "actionSheet",
  3424. "children": [
  3425. {
  3426. "id": "api.ui.actionSheet.showActionSheet",
  3427. "name": "uni.showActionSheet"
  3428. }
  3429. ]
  3430. },
  3431. {
  3432. "id": "api.ui.modal",
  3433. "name": "modal",
  3434. "children": [
  3435. {
  3436. "id": "api.ui.modal.showModal",
  3437. "name": "uni.showModal"
  3438. }
  3439. ]
  3440. },
  3441. {
  3442. "id": "api.ui.loading",
  3443. "name": "loading",
  3444. "children": [
  3445. {
  3446. "id": "api.ui.loading.showLoading",
  3447. "name": "uni.showLoading"
  3448. }
  3449. ]
  3450. },
  3451. {
  3452. "id": "api.ui.toast",
  3453. "name": "toast",
  3454. "children": [
  3455. {
  3456. "id": "api.ui.toast.showToast",
  3457. "name": "uni.showToast"
  3458. }
  3459. ]
  3460. },
  3461. {
  3462. "id": "api.ui.loadFontFace",
  3463. "name": "uni.loadFontFace"
  3464. },
  3465. {
  3466. "id": "api.ui.rpx2px",
  3467. "name": "uni.rpx2px"
  3468. },
  3469. {
  3470. "id": "api.ui.themeChange",
  3471. "name": "themeChange"
  3472. }
  3473. ]
  3474. },
  3475. {
  3476. "id": "api.network",
  3477. "name": "网络",
  3478. "children": [
  3479. {
  3480. "id": "api.network.request",
  3481. "name": "uni.request"
  3482. },
  3483. {
  3484. "id": "api.network.uploadFile",
  3485. "name": "uni.uploadFile"
  3486. },
  3487. {
  3488. "id": "api.network.downloadFile",
  3489. "name": "uni.downloadFile"
  3490. },
  3491. {
  3492. "id": "api.network.getNetworkType",
  3493. "name": "uni.getNetworkType"
  3494. },
  3495. {
  3496. "id": "api.network.networkStatusChange",
  3497. "name": "NetworkStatusChange"
  3498. },
  3499. {
  3500. "id": "api.network.websocket",
  3501. "name": "websocket"
  3502. },
  3503. {
  3504. "id": "api.network.connectEventSource",
  3505. "name": "uni.connectEventSource"
  3506. }
  3507. ]
  3508. },
  3509. {
  3510. "id": "api.device",
  3511. "name": "设备",
  3512. "children": [
  3513. {
  3514. "id": "api.device.getSystemInfo",
  3515. "name": "getSystemInfo"
  3516. },
  3517. {
  3518. "id": "api.device.getDeviceInfo",
  3519. "name": "uni.getDeviceInfo"
  3520. },
  3521. {
  3522. "id": "api.device.getWindowInfo",
  3523. "name": "uni.getWindowInfo"
  3524. },
  3525. {
  3526. "id": "api.device.getAppBaseInfo",
  3527. "name": "uni.getAppBaseInfo"
  3528. },
  3529. {
  3530. "id": "api.device.getAppAuthorizeSetting",
  3531. "name": "uni.getAppAuthorizeSetting"
  3532. },
  3533. {
  3534. "id": "api.device.openAppAuthorizeSetting",
  3535. "name": "uni.openAppAuthorizeSetting"
  3536. },
  3537. {
  3538. "id": "api.device.getSystemSetting",
  3539. "name": "uni.getSystemSetting"
  3540. },
  3541. {
  3542. "id": "api.device.installApk",
  3543. "name": "uni.installApk"
  3544. },
  3545. {
  3546. "id": "api.device.getBatteryInfo",
  3547. "name": "getBatteryInfo"
  3548. },
  3549. {
  3550. "id": "api.device.makePhoneCall",
  3551. "name": "uni.makePhoneCall"
  3552. },
  3553. {
  3554. "id": "api.device.clipboard",
  3555. "name": "clipboard"
  3556. },
  3557. {
  3558. "id": "api.device.compass",
  3559. "name": "compass"
  3560. },
  3561. null,
  3562. null,
  3563. null,
  3564. {
  3565. "id": "api.device.captureScreen",
  3566. "name": "captureScreen"
  3567. },
  3568. {
  3569. "id": "api.device.createRequestPermissionListener",
  3570. "name": "uni.createRequestPermissionListener"
  3571. },
  3572. {
  3573. "id": "api.device.scanCode",
  3574. "name": "uni.scanCode"
  3575. },
  3576. {
  3577. "id": "api.device.isSimulator",
  3578. "name": "uni.isSimulator"
  3579. },
  3580. {
  3581. "id": "api.device.getAccessibilityInfo",
  3582. "name": "uni.getAccessibilityInfo"
  3583. },
  3584. {
  3585. "id": "api.device.keyboard",
  3586. "name": "keyboard"
  3587. }
  3588. ]
  3589. },
  3590. {
  3591. "id": "api.media",
  3592. "name": "媒体",
  3593. "children": [
  3594. {
  3595. "id": "api.media.chooseImage",
  3596. "name": "uni.chooseImage"
  3597. },
  3598. {
  3599. "id": "api.media.previewImage",
  3600. "name": "previewImage"
  3601. },
  3602. {
  3603. "id": "api.media.saveImageToPhotosAlbum",
  3604. "name": "saveImageToPhotosAlbum"
  3605. },
  3606. {
  3607. "id": "api.media.getImageInfo",
  3608. "name": "uni.getImageInfo"
  3609. },
  3610. {
  3611. "id": "api.media.compressImage",
  3612. "name": "uni.compressImage"
  3613. },
  3614. {
  3615. "id": "api.media.chooseVideo",
  3616. "name": "uni.chooseVideo"
  3617. },
  3618. {
  3619. "id": "api.media.saveVideoToPhotosAlbum",
  3620. "name": "saveVideoToPhotosAlbum"
  3621. },
  3622. {
  3623. "id": "api.media.getVideoInfo",
  3624. "name": "getVideoInfo"
  3625. },
  3626. {
  3627. "id": "api.media.compressVideo",
  3628. "name": "uni.compressVideo"
  3629. },
  3630. {
  3631. "id": "api.media.chooseMedia",
  3632. "name": "uni.chooseMedia"
  3633. },
  3634. {
  3635. "id": "api.media.chooseFile",
  3636. "name": "uni.chooseFile"
  3637. },
  3638. {
  3639. "id": "api.media.createInnerAudioContext",
  3640. "name": "uni.createInnerAudioContext"
  3641. },
  3642. {
  3643. "id": "api.media.setInnerAudioOption",
  3644. "name": "uni.setInnerAudioOption"
  3645. },
  3646. {
  3647. "id": "api.media.getBackgroundAudioManager",
  3648. "name": "uni.getBackgroundAudioManager"
  3649. },
  3650. {
  3651. "id": "api.media.getRecorderManager",
  3652. "name": "uni.getRecorderManager"
  3653. }
  3654. ]
  3655. },
  3656. {
  3657. "id": "api.file",
  3658. "name": "文件",
  3659. "children": [
  3660. {
  3661. "id": "api.file.getFileSystemManager",
  3662. "name": "uni.getFileSystemManager"
  3663. },
  3664. {
  3665. "id": "api.file.openDocument",
  3666. "name": "uni.openDocument"
  3667. }
  3668. ]
  3669. },
  3670. {
  3671. "id": "api.storage",
  3672. "name": "数据存储"
  3673. },
  3674. null,
  3675. {
  3676. "id": "api.location",
  3677. "name": "位置",
  3678. "children": [
  3679. {
  3680. "id": "api.location.getLocation",
  3681. "name": "uni.getLocation"
  3682. },
  3683. {
  3684. "id": "api.location.openLocation",
  3685. "name": "uni.openLocation"
  3686. },
  3687. {
  3688. "id": "api.location.chooseLocation",
  3689. "name": "uni.chooseLocation"
  3690. }
  3691. ]
  3692. },
  3693. {
  3694. "id": "api.loginVerify",
  3695. "name": "登录与认证",
  3696. "children": [
  3697. {
  3698. "id": "api.loginVerify.getUniverifyManager",
  3699. "name": "uni.getUniverifyManager"
  3700. },
  3701. null,
  3702. {
  3703. "id": "api.loginVerify.facialRecognitionMetaInfo",
  3704. "name": "facialRecognitionMetaInfo"
  3705. },
  3706. {
  3707. "id": "api.device.bioAuth",
  3708. "name": "bioAuth"
  3709. }
  3710. ]
  3711. },
  3712. {
  3713. "id": "api.ad",
  3714. "name": "广告",
  3715. "children": [
  3716. {
  3717. "id": "api.ad.createRewardedVideoAd",
  3718. "name": "uni.createRewardedVideoAd"
  3719. },
  3720. {
  3721. "id": "api.ad.createInterstitialAd",
  3722. "name": "uni.createInterstitialAd"
  3723. }
  3724. ]
  3725. },
  3726. {
  3727. "id": "api.payment",
  3728. "name": "支付",
  3729. "children": [
  3730. {
  3731. "id": "api.payment.requestPayment",
  3732. "name": "uni.requestPayment"
  3733. },
  3734. {
  3735. "id": "api.payment.virtualPayment",
  3736. "name": "virtualPayment"
  3737. },
  3738. {
  3739. "id": "api.payment.requestMerchantTransfer",
  3740. "name": "uni.requestMerchantTransfer"
  3741. }
  3742. ]
  3743. },
  3744. {
  3745. "id": "api.share",
  3746. "name": "分享",
  3747. "children": [
  3748. {
  3749. "id": "api.share.shareWithSystem",
  3750. "name": "uni.shareWithSystem"
  3751. }
  3752. ]
  3753. },
  3754. {
  3755. "id": "api.push",
  3756. "name": "推送",
  3757. "children": [
  3758. {
  3759. "id": "api.push.uni-push",
  3760. "name": "push"
  3761. }
  3762. ]
  3763. },
  3764. {
  3765. "id": "api.stat",
  3766. "name": "统计",
  3767. "children": [
  3768. {
  3769. "id": "api.stat.report",
  3770. "name": "uni.report"
  3771. }
  3772. ]
  3773. },
  3774. null,
  3775. {
  3776. "id": "api.unicloud",
  3777. "name": "uniCloud客户端API",
  3778. "children": [
  3779. {
  3780. "id": "api.unicloud.cloudFunction",
  3781. "name": "cloudFunction"
  3782. },
  3783. {
  3784. "id": "api.unicloud.cloudObject",
  3785. "name": "cloudObject"
  3786. },
  3787. {
  3788. "id": "api.unicloud.cloudStorage",
  3789. "name": "cloudStorage"
  3790. },
  3791. {
  3792. "id": "api.unicloud.database",
  3793. "name": "database"
  3794. },
  3795. {
  3796. "id": "api.unicloud.sseChannel",
  3797. "name": "sseChannel"
  3798. }
  3799. ]
  3800. },
  3801. null,
  3802. null,
  3803. null,
  3804. null,
  3805. null,
  3806. null,
  3807. null,
  3808. null,
  3809. null,
  3810. null,
  3811. {
  3812. "id": "api.elementInstance",
  3813. "name": "UniElement 实例"
  3814. }
  3815. ]
  3816. },
  3817. {
  3818. "id": "CSS",
  3819. "name": "组件",
  3820. "children": [
  3821. {
  3822. "id": "css.properties.width",
  3823. "name": "width",
  3824. "children": [
  3825. {
  3826. "id": "css.properties.width.width",
  3827. "name": "width"
  3828. },
  3829. {
  3830. "id": "css.properties.width.min-width",
  3831. "name": "min-width"
  3832. },
  3833. {
  3834. "id": "css.properties.width.max-width",
  3835. "name": "max-width"
  3836. }
  3837. ]
  3838. },
  3839. {
  3840. "id": "css.properties.height",
  3841. "name": "height",
  3842. "children": [
  3843. {
  3844. "id": "css.properties.height.height",
  3845. "name": "height"
  3846. },
  3847. {
  3848. "id": "css.properties.height.min-height",
  3849. "name": "min-height"
  3850. },
  3851. {
  3852. "id": "css.properties.height.max-height",
  3853. "name": "max-height"
  3854. }
  3855. ]
  3856. },
  3857. {
  3858. "id": "css.properties.margin",
  3859. "name": "margin",
  3860. "children": [
  3861. {
  3862. "id": "css.properties.margin.margin",
  3863. "name": "margin"
  3864. },
  3865. {
  3866. "id": "css.properties.margin.margin-top",
  3867. "name": "margin-top"
  3868. },
  3869. {
  3870. "id": "css.properties.margin.margin-bottom",
  3871. "name": "margin-bottom"
  3872. },
  3873. {
  3874. "id": "css.properties.margin.margin-left",
  3875. "name": "margin-left"
  3876. },
  3877. {
  3878. "id": "css.properties.margin.margin-right",
  3879. "name": "margin-right"
  3880. }
  3881. ]
  3882. },
  3883. {
  3884. "id": "css.properties.padding",
  3885. "name": "padding",
  3886. "children": [
  3887. {
  3888. "id": "css.properties.padding.padding",
  3889. "name": "padding"
  3890. },
  3891. {
  3892. "id": "css.properties.padding.padding-top",
  3893. "name": "padding-top"
  3894. },
  3895. {
  3896. "id": "css.properties.padding.padding-bottom",
  3897. "name": "padding-bottom"
  3898. },
  3899. {
  3900. "id": "css.properties.padding.padding-left",
  3901. "name": "padding-left"
  3902. },
  3903. {
  3904. "id": "css.properties.padding.padding-right",
  3905. "name": "padding-right"
  3906. }
  3907. ]
  3908. },
  3909. null,
  3910. {
  3911. "id": "display",
  3912. "name": "display"
  3913. },
  3914. {
  3915. "id": "css.properties.visibility",
  3916. "name": "visibility"
  3917. },
  3918. {
  3919. "id": "css.properties.flex",
  3920. "name": "flex",
  3921. "children": [
  3922. {
  3923. "id": "css.properties.flex.flex",
  3924. "name": "flex"
  3925. },
  3926. {
  3927. "id": "css.properties.flex.flex-direction",
  3928. "name": "flex-direction"
  3929. },
  3930. {
  3931. "id": "css.properties.flex.justify-content",
  3932. "name": "justify-content"
  3933. },
  3934. null,
  3935. {
  3936. "id": "css.properties.flex.align-items",
  3937. "name": "align-items"
  3938. },
  3939. null,
  3940. {
  3941. "id": "css.properties.flex.align-content",
  3942. "name": "align-content"
  3943. },
  3944. {
  3945. "id": "css.properties.flex.flex-grow",
  3946. "name": "flex-grow"
  3947. },
  3948. {
  3949. "id": "css.properties.flex.flex-shrink",
  3950. "name": "flex-shrink"
  3951. },
  3952. {
  3953. "id": "css.properties.flex.flex-basis",
  3954. "name": "flex-basis"
  3955. },
  3956. {
  3957. "id": "css.properties.flex.flex-flow",
  3958. "name": "flex-flow"
  3959. }
  3960. ]
  3961. },
  3962. {
  3963. "id": "css.properties.background",
  3964. "name": "background",
  3965. "children": [
  3966. null,
  3967. {
  3968. "id": "css.properties.background.background-color",
  3969. "name": "background-color"
  3970. },
  3971. {
  3972. "id": "css.properties.background.background-image",
  3973. "name": "background-image"
  3974. }
  3975. ]
  3976. },
  3977. {
  3978. "id": "css.properties.position",
  3979. "name": "position",
  3980. "children": [
  3981. {
  3982. "id": "css.properties.position.position",
  3983. "name": "position"
  3984. }
  3985. ]
  3986. },
  3987. {
  3988. "id": "css.properties.z-index",
  3989. "name": "z-index"
  3990. },
  3991. {
  3992. "id": "overflow",
  3993. "name": "overflow"
  3994. },
  3995. null,
  3996. {
  3997. "id": "css.properties.border",
  3998. "name": "border",
  3999. "children": [
  4000. {
  4001. "id": "css.properties.border.border",
  4002. "name": "border"
  4003. },
  4004. {
  4005. "id": "css.properties.border.border-style",
  4006. "name": "border-style"
  4007. },
  4008. null,
  4009. null,
  4010. null,
  4011. null,
  4012. {
  4013. "id": "css.properties.border.border-width",
  4014. "name": "border-width"
  4015. },
  4016. null,
  4017. null,
  4018. null,
  4019. null,
  4020. {
  4021. "id": "css.properties.border.border-color",
  4022. "name": "border-color"
  4023. },
  4024. null,
  4025. null,
  4026. null,
  4027. null,
  4028. {
  4029. "id": "css.properties.border.border-radius",
  4030. "name": "border-radius"
  4031. },
  4032. null,
  4033. null,
  4034. null,
  4035. null,
  4036. {
  4037. "id": "css.properties.border.border-top",
  4038. "name": "border-top"
  4039. },
  4040. {
  4041. "id": "css.properties.border.border-bottom",
  4042. "name": "border-bottom"
  4043. },
  4044. {
  4045. "id": "css.properties.border.border-left",
  4046. "name": "border-left"
  4047. },
  4048. {
  4049. "id": "css.properties.border.border-right",
  4050. "name": "border-right"
  4051. }
  4052. ]
  4053. },
  4054. {
  4055. "id": "css.properties.text",
  4056. "name": "text",
  4057. "children": [
  4058. {
  4059. "id": "css.properties.text.color",
  4060. "name": "color"
  4061. },
  4062. {
  4063. "id": "css.properties.text.font-size",
  4064. "name": "font-size"
  4065. },
  4066. {
  4067. "id": "css.properties.text.font-family",
  4068. "name": "font-family"
  4069. },
  4070. {
  4071. "id": "css.properties.text.font-style",
  4072. "name": "font-style"
  4073. },
  4074. {
  4075. "id": "css.properties.text.font-weight",
  4076. "name": "font-weight"
  4077. },
  4078. null,
  4079. {
  4080. "id": "css.properties.text.text-decoration-line",
  4081. "name": "text-decoration-line"
  4082. },
  4083. null,
  4084. null,
  4085. null,
  4086. {
  4087. "id": "css.properties.text.text-align",
  4088. "name": "text-align"
  4089. },
  4090. {
  4091. "id": "css.properties.text.text-overflow",
  4092. "name": "text-overflow"
  4093. },
  4094. {
  4095. "id": "css.properties.text.text-shadow",
  4096. "name": "text-shadow"
  4097. },
  4098. {
  4099. "id": "css.properties.text.line-height",
  4100. "name": "line-height"
  4101. },
  4102. null,
  4103. {
  4104. "id": "css.properties.text.letter-spacing",
  4105. "name": "letter-spacing"
  4106. }
  4107. ]
  4108. },
  4109. {
  4110. "id": "css.properties.box-shadow",
  4111. "name": "box-shadow"
  4112. },
  4113. {
  4114. "id": "css.properties.transition",
  4115. "name": "transition"
  4116. },
  4117. {
  4118. "id": "css.properties.transform",
  4119. "name": "transform"
  4120. },
  4121. {
  4122. "id": "css.properties.pointer-events",
  4123. "name": "pointer-events"
  4124. },
  4125. null,
  4126. {
  4127. "id": "function",
  4128. "name": "函数",
  4129. "children" : [
  4130. {
  4131. "id": "variable",
  4132. "name": "variable"
  4133. },
  4134. {
  4135. "id": "function",
  4136. "name": "function"
  4137. }
  4138. ]
  4139. }
  4140. ]
  4141. }
  4142. ]
  4143. }