pages.php 205 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326
  1. <?php
  2. return [
  3. 'DIY_INDEX' => [
  4. 'mall_index_style2' => [ // 页面标识
  5. "title" => "商城首页1", // 页面名称
  6. 'cover' => '', // 页面封面图
  7. 'preview' => '', // 页面预览图
  8. 'desc' => '', // 页面描述
  9. 'mode' => 'diy', // 页面模式:diy:自定义,fixed:固定
  10. // 页面数据源
  11. "data" => [
  12. "global" => [
  13. "title" => "首页",
  14. "pageStartBgColor" => "rgba(246, 246, 246, 1)",
  15. "pageEndBgColor" => "",
  16. "pageGradientAngle" => "to bottom",
  17. "bgUrl" => "",
  18. "bgHeightScale" => 100,
  19. "imgWidth" => "",
  20. "imgHeight" => "",
  21. "topStatusBar" => [
  22. "isShow" => false,
  23. "bgColor" => "#ffffff",
  24. "rollBgColor" => "#ffffff",
  25. "style" => "style-1",
  26. "styleName" => "风格1",
  27. "textColor" => "#333333",
  28. "rollTextColor" => "#333333",
  29. "textAlign" => "center",
  30. "inputPlaceholder" => "请输入搜索关键词",
  31. "imgUrl" => "",
  32. "link" => [
  33. "name" => ""
  34. ]
  35. ],
  36. "bottomTabBarSwitch" => true,
  37. "popWindow" => [
  38. "imgUrl" => "",
  39. "imgWidth" => "",
  40. "imgHeight" => "",
  41. "count" => -1,
  42. "show" => 0,
  43. "link" => [
  44. "name" => ""
  45. ]
  46. ],
  47. "template" => [
  48. "textColor" => "#303133",
  49. "pageStartBgColor" => "",
  50. "pageEndBgColor" => "",
  51. "pageGradientAngle" => "to bottom",
  52. "componentBgUrl" => "",
  53. "componentBgAlpha" => 2,
  54. "componentStartBgColor" => "",
  55. "componentEndBgColor" => "",
  56. "componentGradientAngle" => "to bottom",
  57. "topRounded" => 0,
  58. "bottomRounded" => 0,
  59. "elementBgColor" => "",
  60. "topElementRounded" => 0,
  61. "bottomElementRounded" => 0,
  62. "margin" => [
  63. "top" => 0,
  64. "bottom" => 0,
  65. "both" => 0
  66. ]
  67. ]
  68. ],
  69. "value" => [
  70. [
  71. "path" => "edit-carousel-search",
  72. "uses" => 1,
  73. "position" => "top_fixed",
  74. "id" => "6r6qw5679oo0",
  75. "componentName" => "CarouselSearch",
  76. "componentTitle" => "轮播搜索",
  77. "ignore" => [
  78. "componentBgColor",
  79. "componentBgUrl",
  80. "marginTop",
  81. "marginBottom",
  82. "topRounded",
  83. "bottomRounded",
  84. "pageBgColor",
  85. "marginBoth"
  86. ],
  87. "positionWay" => "fixed",
  88. "fixedBgColor" => "",
  89. "bgGradient" => false,
  90. "search" => [
  91. "logo" => "addon/mall/diy/index/style2/logo.png",
  92. "text" => "请输入搜索关键词",
  93. "link" => [
  94. 'name' => 'MALL_GOODS_SEARCH',
  95. "parent" => "MALL_LINK",
  96. 'title' => '商品搜索',
  97. 'url' => '/addon/mall/pages/goods/search',
  98. 'action' => '',
  99. ],
  100. 'style' => 'style-2',
  101. 'styleName' => '风格2',
  102. "subTitle" => [
  103. "text" => "本地好价·优选生活",
  104. "textColor" => "#000000",
  105. "startColor" => "rgba(255,255,255,0.7)",
  106. "endColor" => "",
  107. ],
  108. 'positionColor' => '#ffffff',
  109. "hotWord" => [
  110. "interval" => 3,
  111. "list" => [
  112. [
  113. 'text' => '新品推荐',
  114. 'id' => '1l3juvqvimw0'
  115. ],
  116. [
  117. 'text' => '爆款',
  118. 'id' => '2vejp61n1xk0'
  119. ]
  120. ]
  121. ],
  122. 'color' => '#999999',
  123. 'btnColor' => '#ffffff',
  124. 'bgColor' => '#ffffff',
  125. 'btnBgColor' => '#ff3434'
  126. ],
  127. "tab" => [
  128. "control" => false,
  129. "noColor" => "rgba(255, 255, 255, 0.7)",
  130. "selectColor" => "rgba(255, 255, 255, 1)",
  131. "fixedNoColor" => "rgba(255, 255, 255, 0.7)",
  132. "fixedSelectColor" => "rgba(255, 255, 255, 1)",
  133. "list" => [
  134. [
  135. "text" => "精选",
  136. "source" => "diy_page",
  137. "diy_id" => "",
  138. "diy_title" => "",
  139. "id" => "1wx7m1wykqbk"
  140. ],
  141. [
  142. "text" => "猜你喜欢",
  143. "source" => "diy_page",
  144. "diy_id" => "",
  145. "diy_title" => "",
  146. "id" => "1gfh1oc6fsjk"
  147. ],
  148. [
  149. "text" => "蔬菜",
  150. "source" => "diy_page",
  151. "diy_id" => "",
  152. "diy_title" => "",
  153. "id" => "25v390lfsd34"
  154. ],
  155. [
  156. "text" => "水果",
  157. "source" => "diy_page",
  158. "diy_id" => "",
  159. "diy_title" => "",
  160. "id" => "2zb1znvn5jc0"
  161. ],
  162. [
  163. "id" => "5acf7ab4f040",
  164. "text" => "海鲜",
  165. "source" => "diy_page",
  166. "diy_id" => 0,
  167. "diy_title" => ""
  168. ],
  169. [
  170. "id" => "37a9vwqt1r20",
  171. "text" => "熟食",
  172. "source" => "diy_page",
  173. "diy_id" => 0,
  174. "diy_title" => ""
  175. ],
  176. [
  177. "id" => "1en9w5jstvs0",
  178. "text" => "米面",
  179. "source" => "diy_page",
  180. "diy_id" => 0,
  181. "diy_title" => ""
  182. ],
  183. [
  184. "id" => "3ae14irgqoa0",
  185. "text" => "粮油",
  186. "source" => "diy_page",
  187. "diy_id" => 0,
  188. "diy_title" => " "
  189. ]
  190. ]
  191. ],
  192. "swiper" => [
  193. "control" => true,
  194. "interval" => 5,
  195. "indicatorColor" => "rgba(255, 255, 255, 1)",
  196. "indicatorActiveColor" => "#FF0E0E",
  197. "indicatorStyle" => "style-3",
  198. "indicatorAlign" => "center",
  199. "swiperStyle" => "style-3",
  200. "imageHeight" => 274,
  201. "topRounded" => 0,
  202. "bottomRounded" => 0,
  203. "list" => [
  204. [
  205. "imageUrl" => "addon/mall/diy/index/style2/banner1.jpg",
  206. "imgWidth" => 750,
  207. "imgHeight" => 580,
  208. "link" => [
  209. "name" => ""
  210. ],
  211. "id" => "397htiaqung0",
  212. "width" => 355,
  213. "height" => 274.53
  214. ],
  215. [
  216. "imageUrl" => "addon/mall/diy/index/style2/banner2.jpg",
  217. "imgWidth" => 750,
  218. "imgHeight" => 580,
  219. "link" => [
  220. "name" => ""
  221. ],
  222. "id" => "6mrj3vwiamw0",
  223. "width" => 355,
  224. "height" => 274.53
  225. ]
  226. ]
  227. ],
  228. "textColor" => "#303133",
  229. "pageStartBgColor" => "",
  230. "pageEndBgColor" => "",
  231. "pageGradientAngle" => "to bottom",
  232. "componentBgUrl" => "",
  233. "componentBgAlpha" => 2,
  234. "componentStartBgColor" => "",
  235. "componentEndBgColor" => "",
  236. "componentGradientAngle" => "to bottom",
  237. "topRounded" => 0,
  238. "bottomRounded" => 0,
  239. "elementBgColor" => "",
  240. "topElementRounded" => 0,
  241. "bottomElementRounded" => 0,
  242. "margin" => [
  243. "top" => 0,
  244. "bottom" => 0,
  245. "both" => 0
  246. ],
  247. "pageStyle" => "padding-top:2rpx;padding-bottom:0rpx;padding-right:0rpx;padding-left:0rpx;"
  248. ],
  249. [
  250. "path" => "edit-horz-blank",
  251. "uses" => 0,
  252. "id" => "4wk9nzocm3c",
  253. "componentName" => "HorzBlank",
  254. "componentTitle" => "辅助空白",
  255. "ignore" => [
  256. "pageBgColor",
  257. "componentBgUrl"
  258. ],
  259. "height" => 22,
  260. "textColor" => "#303133",
  261. "pageStartBgColor" => "",
  262. "pageEndBgColor" => "",
  263. "pageGradientAngle" => "to bottom",
  264. "componentBgUrl" => "",
  265. "componentBgAlpha" => 2,
  266. "componentStartBgColor" => "rgba(246, 246, 246, 1)",
  267. "componentEndBgColor" => "",
  268. "componentGradientAngle" => "to bottom",
  269. "topRounded" => 17,
  270. "bottomRounded" => 0,
  271. "elementBgColor" => "",
  272. "topElementRounded" => 0,
  273. "bottomElementRounded" => 0,
  274. "margin" => [
  275. "top" => -21,
  276. "bottom" => 0,
  277. "both" => 0
  278. ],
  279. "pageStyle" => "padding-top:2rpx;padding-bottom:0rpx;padding-right:0rpx;padding-left:0rpx;"
  280. ],
  281. [
  282. "path" => "edit-graphic-nav",
  283. "uses" => 0,
  284. "id" => "6h28ebyqqnk0",
  285. "componentName" => "GraphicNav",
  286. "componentTitle" => "图文导航",
  287. "ignore" => [],
  288. "layout" => "horizontal",
  289. "mode" => "graphic",
  290. "showStyle" => "fixed",
  291. "rowCount" => 5,
  292. "pageCount" => 2,
  293. "carousel" => [
  294. "type" => "circle",
  295. "color" => "#FFFFFF"
  296. ],
  297. "imageSize" => 40,
  298. "aroundRadius" => 25,
  299. "font" => [
  300. "size" => 12,
  301. "weight" => "normal",
  302. "color" => "#303133"
  303. ],
  304. "list" => [
  305. [
  306. "title" => "签到",
  307. "link" => [
  308. "name" => "MEMBER_MY_SIGN_IN",
  309. "parent" => "MEMBER_LINK",
  310. "title" => "我的签到",
  311. "url" => "/app/pages/member/sign_in",
  312. "action" => ""
  313. ],
  314. "imageUrl" => "addon/mall/diy/index/style2/nav_sign_in.png",
  315. "label" => [
  316. "control" => false,
  317. "text" => "热门",
  318. "textColor" => "#FFFFFF",
  319. "bgColorStart" => "#F83287",
  320. "bgColorEnd" => "#FE3423"
  321. ],
  322. "id" => "1evjnc3zeb5s",
  323. "imgWidth" => 135,
  324. "imgHeight" => 135
  325. ],
  326. [
  327. "title" => "分销管理",
  328. "link" => [
  329. "name" => "MALL_FENXIAO_INDEX",
  330. "parent" => "MALL_FENXIAO_LINK",
  331. "title" => "分销中心",
  332. "url" => "/addon/mall_fenxiao/pages/index",
  333. "action" => ""
  334. ],
  335. "imageUrl" => "addon/mall/diy/index/style2/nav_fenxiao.png",
  336. "label" => [
  337. "control" => false,
  338. "text" => "热门",
  339. "textColor" => "#FFFFFF",
  340. "bgColorStart" => "#F83287",
  341. "bgColorEnd" => "#FE3423"
  342. ],
  343. "id" => "2ktzer8wrnc0",
  344. "imgWidth" => 180,
  345. "imgHeight" => 180
  346. ],
  347. [
  348. "title" => "分销专区",
  349. "link" => [
  350. "name" => "MALL_FENXIAO_ZONE",
  351. "parent" => "MALL_FENXIAO_LINK",
  352. "title" => "分销专区",
  353. "url" => "/addon/mall_fenxiao/pages/zone",
  354. "action" => "decorate"
  355. ],
  356. "imageUrl" => "addon/mall/diy/index/style2/nav_fenxiao_zone.png",
  357. "label" => [
  358. "control" => false,
  359. "text" => "热门",
  360. "textColor" => "#FFFFFF",
  361. "bgColorStart" => "#F83287",
  362. "bgColorEnd" => "#FE3423"
  363. ],
  364. "id" => "4aixr8qu5ek0",
  365. "imgWidth" => 180,
  366. "imgHeight" => 180
  367. ],
  368. [
  369. 'title' => '领券中心',
  370. 'link' => [
  371. 'name' => 'MALL_COUPON_LIST',
  372. 'parent' => 'MALL_LINK',
  373. 'title' => '优惠券列表',
  374. 'url' => '/addon/mall/pages/coupon/list',
  375. 'action' => ''
  376. ],
  377. 'imageUrl' => 'addon/mall/diy/index/style2/nav_coupon.png',
  378. 'label' => [
  379. 'control' => false,
  380. 'text' => '热门',
  381. 'textColor' => '#FFFFFF',
  382. 'bgColorStart' => '#F83287',
  383. 'bgColorEnd' => '#FE3423'
  384. ],
  385. 'id' => '3bmtyrslxxy0',
  386. 'imgWidth' => 180,
  387. 'imgHeight' => 180
  388. ],
  389. [
  390. 'id' => '7bqpc6bjha80',
  391. 'title' => '我的订单',
  392. 'imageUrl' => 'addon/mall/diy/index/style2/nav_my_order.png',
  393. 'imgWidth' => 180,
  394. 'imgHeight' => 180,
  395. 'link' => [
  396. 'name' => 'MALL_ORDER_LIST',
  397. 'parent' => 'MALL_LINK',
  398. 'title' => '订单列表',
  399. 'url' => '/addon/mall/pages/order/list',
  400. 'action' => ''
  401. ],
  402. 'label' => [
  403. 'control' => false,
  404. 'text' => '热门',
  405. 'textColor' => '#FFFFFF',
  406. 'bgColorStart' => '#F83287',
  407. 'bgColorEnd' => '#FE3423'
  408. ]
  409. ],
  410. [
  411. 'title' => '会员中心',
  412. 'link' => [
  413. 'name' => 'MALL_MEMBER_INDEX',
  414. 'parent' => 'MALL_LINK',
  415. 'title' => '商城个人中心',
  416. 'url' => '/app/pages/member/index',
  417. 'action' => 'decorate'
  418. ],
  419. 'imageUrl' => 'addon/mall/diy/index/style2/nav_member.png',
  420. 'label' => [
  421. 'control' => false,
  422. 'text' => '热门',
  423. 'textColor' => '#FFFFFF',
  424. 'bgColorStart' => '#F83287',
  425. 'bgColorEnd' => '#FE3423'
  426. ],
  427. 'id' => '4aixr8qu5ek0',
  428. 'imgWidth' => 180,
  429. 'imgHeight' => 180
  430. ],
  431. [
  432. 'id' => 'tgo5qmjawnk',
  433. 'title' => '我的积分',
  434. 'imageUrl' => 'addon/mall/diy/index/style2/nav_point.png',
  435. 'imgWidth' => 180,
  436. 'imgHeight' => 180,
  437. 'link' => [
  438. 'name' => 'MEMBER_POINT',
  439. 'parent' => 'MEMBER_LINK',
  440. 'title' => '我的积分',
  441. 'url' => '/app/pages/member/point',
  442. 'action' => ''
  443. ],
  444. 'label' => [
  445. 'control' => false,
  446. 'text' => '热门',
  447. 'textColor' => '#FFFFFF',
  448. 'bgColorStart' => '#F83287',
  449. 'bgColorEnd' => '#FE3423'
  450. ]
  451. ],
  452. [
  453. 'id' => '2wggehpnako0',
  454. 'title' => '地址管理',
  455. 'imageUrl' => 'addon/mall/diy/index/style2/nav_my_address.png',
  456. 'imgWidth' => 180,
  457. 'imgHeight' => 180,
  458. 'link' => [
  459. 'name' => 'MEMBER_ADDRESS',
  460. 'parent' => 'MEMBER_LINK',
  461. 'title' => '收货地址',
  462. 'url' => '/app/pages/member/address',
  463. 'action' => ''
  464. ],
  465. 'label' => [
  466. 'control' => false,
  467. 'text' => '热门',
  468. 'textColor' => '#FFFFFF',
  469. 'bgColorStart' => '#F83287',
  470. 'bgColorEnd' => '#FE3423'
  471. ]
  472. ],
  473. [
  474. 'id' => '1fprven2cqrk',
  475. 'title' => '店铺街',
  476. 'imageUrl' => 'addon/mall/diy/index/style2/nav_shop_street.png',
  477. 'imgWidth' => 180,
  478. 'imgHeight' => 180,
  479. 'link' => [
  480. 'name' => 'MALL_SHOP_STREET',
  481. 'parent' => 'MALL_LINK',
  482. 'title' => '店铺街',
  483. 'url' => '/addon/mall/pages/shop/list',
  484. 'action' => ''
  485. ],
  486. 'label' => [
  487. 'control' => false,
  488. 'text' => '热门',
  489. 'textColor' => '#FFFFFF',
  490. 'bgColorStart' => '#F83287',
  491. 'bgColorEnd' => '#FE3423'
  492. ]
  493. ],
  494. [
  495. "id" => "2ktzer8wrnc0",
  496. "title" => "申请入驻",
  497. "imageUrl" => "addon/mall/diy/index/style2/nav_shop_apply.png",
  498. "imgWidth" => 180,
  499. "imgHeight" => 180,
  500. "link" => [
  501. 'name' => 'MALL_SHOP_APPLY',
  502. 'parent' => 'MALL_LINK',
  503. 'title' => '申请入驻',
  504. 'url' => '/addon/mall/pages/member/merchant_settled',
  505. 'action' => ''
  506. ],
  507. "label" => [
  508. "control" => false,
  509. "text" => "热门",
  510. "textColor" => "#FFFFFF",
  511. "bgColorStart" => "#F83287",
  512. "bgColorEnd" => "#FE3423"
  513. ],
  514. ],
  515. ],
  516. // 轮播图设置
  517. 'swiper' => [
  518. 'indicatorColor' => 'rgba(0, 0, 0, 0.3)', // 未选中颜色
  519. "indicatorActiveColor" => '#FF0E0E',
  520. 'indicatorStyle' => 'style-1',
  521. 'indicatorAlign' => 'center',
  522. ],
  523. "textColor" => "#303133",
  524. "pageStartBgColor" => "",
  525. "pageEndBgColor" => "",
  526. "pageGradientAngle" => "to bottom",
  527. "componentBgUrl" => "",
  528. "componentBgAlpha" => 2,
  529. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  530. "componentEndBgColor" => "",
  531. "componentGradientAngle" => "to bottom",
  532. "topRounded" => 12,
  533. "bottomRounded" => 12,
  534. "elementBgColor" => "",
  535. "topElementRounded" => 0,
  536. "bottomElementRounded" => 0,
  537. "margin" => [
  538. "top" => -10,
  539. "bottom" => 10,
  540. "both" => 10
  541. ],
  542. "pageStyle" => "padding-top:2rpx;padding-bottom:0rpx;padding-right:0rpx;padding-left:0rpx;"
  543. ],
  544. [
  545. "path" => "edit-notice",
  546. "uses" => 0,
  547. "id" => "5ux60nfdm680",
  548. "componentName" => "Notice",
  549. "componentTitle" => "公告",
  550. "ignore" => [],
  551. "noticeType" => "img",
  552. "imgType" => "diy",
  553. "systemUrl" => "style_1",
  554. "imageUrl" => "addon/mall/diy/index/style2/notice.png",
  555. "showType" => "popup",
  556. "scrollWay" => "upDown",
  557. "fontSize" => 12,
  558. "fontWeight" => "normal",
  559. "noticeTitle" => "公告",
  560. "list" => [
  561. [
  562. "text" => "最新公告:欢迎来到小店参观!",
  563. "link" => [
  564. "name" => ""
  565. ],
  566. "id" => "1rz6s4buaxc0"
  567. ],
  568. [
  569. "id" => "2wksdax75fc0",
  570. "text" => "最新公告:欢迎来到小店参观!",
  571. "link" => [
  572. "name" => ""
  573. ]
  574. ]
  575. ],
  576. "textColor" => "#303133",
  577. "pageStartBgColor" => "",
  578. "pageEndBgColor" => "",
  579. "pageGradientAngle" => "to bottom",
  580. "componentBgUrl" => "",
  581. "componentBgAlpha" => 2,
  582. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  583. "componentEndBgColor" => "",
  584. "componentGradientAngle" => "to bottom",
  585. "topRounded" => 12,
  586. "bottomRounded" => 12,
  587. "elementBgColor" => "",
  588. "topElementRounded" => 0,
  589. "bottomElementRounded" => 0,
  590. "margin" => [
  591. "top" => 0,
  592. "bottom" => 0,
  593. "both" => 10
  594. ],
  595. "pageStyle" => "padding-top:2rpx;padding-bottom:0rpx;padding-right:20rpx;padding-left:20rpx;"
  596. ],
  597. [
  598. "path" => "edit-mall-goods-coupon",
  599. "uses" => 0,
  600. "id" => "5zq2inzbmu00",
  601. "componentName" => "MallGoodsCoupon",
  602. "componentTitle" => "优惠券",
  603. "ignore" => [
  604. "componentBgColor",
  605. "componentBgUrl"
  606. ],
  607. "style" => "style-3",
  608. "styleName" => "风格3",
  609. "source" => "all",
  610. "num" => 6,
  611. "couponIds" => [],
  612. "btnText" => "立即领取",
  613. "couponTitle" => "每日省钱",
  614. "couponSubTitle" => "先领券 再购物",
  615. "titleColor" => "#ffffff",
  616. "subTitleColor" => "#ffffff",
  617. "couponItem" => [
  618. "bgColor" => "#ffffff",
  619. "textColor" => "#333333",
  620. "subTextColor" => "#666666",
  621. "moneyColor" => "#333333",
  622. "aroundRadius" => 12
  623. ],
  624. "textColor" => "#303133",
  625. "pageStartBgColor" => "",
  626. "pageEndBgColor" => "",
  627. "pageGradientAngle" => "to bottom",
  628. "componentBgUrl" => "",
  629. "componentBgAlpha" => 2,
  630. "componentStartBgColor" => "",
  631. "componentEndBgColor" => "",
  632. "componentGradientAngle" => "to bottom",
  633. "topRounded" => 12,
  634. "bottomRounded" => 12,
  635. "elementBgColor" => "",
  636. "topElementRounded" => 0,
  637. "bottomElementRounded" => 0,
  638. "margin" => [
  639. "top" => 10,
  640. "bottom" => null,
  641. "both" => 10
  642. ],
  643. "pageStyle" => "padding-top:20rpx;padding-bottom:0rpx;padding-right:20rpx;padding-left:20rpx;"
  644. ],
  645. [
  646. "path" => "edit-mall-goods-recommend",
  647. "uses" => 0,
  648. "id" => "2ezdal8ps1og",
  649. "componentName" => "MallGoodsRecommend",
  650. "componentTitle" => "商品推荐",
  651. "ignore" => [],
  652. "priceStyle" => [
  653. "mainColor" => "#333333"
  654. ],
  655. 'source' => 'all',
  656. "goods_ids" => [],
  657. "list" => [
  658. [
  659. "title" => [
  660. "text" => "今日推荐",
  661. "textColor" => "#303133"
  662. ],
  663. "moreTitle" => [
  664. "text" => "精选",
  665. "textColor" => "#FFFFFF",
  666. "startColor" => "#FF7234",
  667. "endColor" => "#FF213F"
  668. ],
  669. "listFrame" => [
  670. "startColor" => "#FFE5E5",
  671. "endColor" => "#FFF5F0"
  672. ],
  673. "button" => [
  674. "text" => "首单",
  675. "textColor" => "#FFFFFF",
  676. "color" => "#FF1128"
  677. ],
  678. "id" => "6t9kv928d680"
  679. ],
  680. [
  681. "title" => [
  682. "text" => "品质好物",
  683. "textColor" => "#303133"
  684. ],
  685. "moreTitle" => [
  686. "text" => "精选",
  687. "textColor" => "#FFFFFF",
  688. "startColor" => "#F2C719",
  689. "endColor" => "#FBBA08"
  690. ],
  691. "listFrame" => [
  692. "startColor" => "#FFEFBA",
  693. "endColor" => "#FFF5D7"
  694. ],
  695. "button" => [
  696. "text" => "首单",
  697. "textColor" => "#FFFFFF",
  698. "color" => "#FF1128"
  699. ],
  700. "id" => "4u1rv0e4qpo0"
  701. ],
  702. [
  703. "title" => [
  704. "text" => "热销爆款",
  705. "textColor" => "#303133"
  706. ],
  707. "moreTitle" => [
  708. "text" => "精选",
  709. "textColor" => "#FFFFFF",
  710. "startColor" => "#FFA629",
  711. "endColor" => "#FF8E1E"
  712. ],
  713. "listFrame" => [
  714. "startColor" => "#FFE4D9",
  715. "endColor" => "#FFFBF9"
  716. ],
  717. "button" => [
  718. "text" => "首单",
  719. "textColor" => "#FFFFFF",
  720. "color" => "#FF1128"
  721. ],
  722. "id" => "4v1bhzhxay60"
  723. ]
  724. ],
  725. "imgElementRounded" => 10, // 图片圆角
  726. "textColor" => "#303133",
  727. "pageStartBgColor" => "",
  728. "pageEndBgColor" => "",
  729. "pageGradientAngle" => "to bottom",
  730. "componentBgUrl" => "",
  731. "componentBgAlpha" => 2,
  732. "componentStartBgColor" => "",
  733. "componentEndBgColor" => "",
  734. "componentGradientAngle" => "to bottom",
  735. "topRounded" => 0,
  736. "bottomRounded" => 0,
  737. "elementBgColor" => "",
  738. "topElementRounded" => 10,
  739. "bottomElementRounded" => 10,
  740. "margin" => [
  741. "top" => 10,
  742. "bottom" => 0,
  743. "both" => 10
  744. ],
  745. "pageStyle" => "padding-top:20rpx;padding-bottom:0rpx;padding-right:20rpx;padding-left:20rpx;"
  746. ],
  747. [
  748. "path" => "edit-active-cube",
  749. "uses" => 0,
  750. "id" => "3vmpaydr2a60",
  751. "componentName" => "ActiveCube",
  752. "componentTitle" => "活动魔方",
  753. "ignore" => [],
  754. "titleStyle" => [
  755. "title" => "风格5",
  756. "value" => "style-5"
  757. ],
  758. "text" => "超值爆款",
  759. "textLink" => [
  760. "name" => ""
  761. ],
  762. "titleColor" => "#F91700",
  763. "subTitle" => [
  764. "text" => "为您精选爆款",
  765. "textColor" => "rgba(153, 153, 153, 1)",
  766. "startColor" => "rgba(255, 255, 255, 1)",
  767. "endColor" => "rgba(255, 255, 255, 1)",
  768. "link" => [
  769. "name" => ""
  770. ]
  771. ],
  772. "blockStyle" => [
  773. "title" => "风格2",
  774. "value" => "style-2",
  775. "fontWeight" => "bold",
  776. "btnText" => "italics"
  777. ],
  778. "list" => [
  779. [
  780. "title" => [
  781. "text" => "品质好物",
  782. "textColor" => "#303133"
  783. ],
  784. "subTitle" => [
  785. "text" => "品质好物推荐",
  786. "textColor" => "#999999",
  787. "startColor" => "",
  788. "endColor" => ""
  789. ],
  790. "moreTitle" => [
  791. "text" => "GO!",
  792. "startColor" => "#FFC051",
  793. "endColor" => "#FF9C00"
  794. ],
  795. "listFrame" => [
  796. "startColor" => "#FFF1DB",
  797. "endColor" => "#FFFBF4"
  798. ],
  799. "link" => [
  800. "name" => ""
  801. ],
  802. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods1.png",
  803. "id" => "77tls7gaho80"
  804. ],
  805. [
  806. "title" => [
  807. "text" => "热销推荐",
  808. "textColor" => "#303133"
  809. ],
  810. "subTitle" => [
  811. "text" => "本周热销商品",
  812. "textColor" => "#999999",
  813. "startColor" => "",
  814. "endColor" => ""
  815. ],
  816. "moreTitle" => [
  817. "text" => "GO!",
  818. "startColor" => "#A4E894",
  819. "endColor" => "#45CC2A"
  820. ],
  821. "listFrame" => [
  822. "startColor" => "#E6F6E2",
  823. "endColor" => "#F5FDF3"
  824. ],
  825. "link" => [
  826. "name" => ""
  827. ],
  828. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods2.png",
  829. "id" => "m4scwuc67do"
  830. ],
  831. [
  832. "title" => [
  833. "text" => "优惠好物",
  834. "textColor" => "#303133"
  835. ],
  836. "subTitle" => [
  837. "text" => "领券后更优惠",
  838. "textColor" => "#999999",
  839. "startColor" => "",
  840. "endColor" => ""
  841. ],
  842. "moreTitle" => [
  843. "text" => "GO!",
  844. "startColor" => "#4BC2FF",
  845. "endColor" => "#1F7DFF"
  846. ],
  847. "listFrame" => [
  848. "startColor" => "#E2F6FF",
  849. "endColor" => "#F2FAFF"
  850. ],
  851. "link" => [
  852. "name" => ""
  853. ],
  854. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods3.png",
  855. "id" => "33nbfp8czea0"
  856. ],
  857. [
  858. "title" => [
  859. "text" => "今日推荐",
  860. "textColor" => "#303133"
  861. ],
  862. "subTitle" => [
  863. "text" => "诚意推荐",
  864. "textColor" => "#999999",
  865. "startColor" => "",
  866. "endColor" => ""
  867. ],
  868. "moreTitle" => [
  869. "text" => "GO!",
  870. "startColor" => "#FB792F",
  871. "endColor" => "#F91700"
  872. ],
  873. "listFrame" => [
  874. "startColor" => "#FFEAEA",
  875. "endColor" => "#FFFCFB"
  876. ],
  877. "link" => [
  878. "name" => ""
  879. ],
  880. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods4.png",
  881. "id" => "49scoy4bgsg0"
  882. ]
  883. ],
  884. "textColor" => "#303133",
  885. "pageStartBgColor" => "",
  886. "pageEndBgColor" => "",
  887. "pageGradientAngle" => "to bottom",
  888. "componentBgUrl" => "",
  889. "componentBgAlpha" => 2,
  890. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  891. "componentEndBgColor" => "",
  892. "componentGradientAngle" => "to bottom",
  893. "topRounded" => 12,
  894. "bottomRounded" => 12,
  895. "elementBgColor" => "#FFFAF5",
  896. "topElementRounded" => 10,
  897. "bottomElementRounded" => 10,
  898. "margin" => [
  899. "top" => 10,
  900. "bottom" => 0,
  901. "both" => 10
  902. ],
  903. "textImg" => "static/resource/images/diy/active_cube/active_cube_text1.png",
  904. "contentBtnTextStyle" => "italics",
  905. "pageStyle" => "padding-top:20rpx;padding-bottom:0rpx;padding-right:20rpx;padding-left:20rpx;"
  906. ],
  907. [
  908. "path" => "edit-picture-show",
  909. "uses" => 0,
  910. "id" => "2o99dw6mytk0",
  911. "componentName" => "PictureShow",
  912. "componentTitle" => "图片展播",
  913. "ignore" => [],
  914. "moduleOne" => [
  915. "head" => [
  916. "textImg" => "static/resource/images/diy/picture_show/picture_show_head_text1.png",
  917. "subText" => "每日上新",
  918. "subTextColor" => "#666666"
  919. ],
  920. "list" => [
  921. [
  922. "btnTitle" => [
  923. "text" => "仅限今日",
  924. "color" => "#ffffff",
  925. "startColor" => "#F5443E",
  926. "endColor" => "#F5443E"
  927. ],
  928. "link" => [
  929. "name" => ""
  930. ],
  931. "imageUrl" => "static/resource/images/diy/picture_show/picture_01.png"
  932. ],
  933. [
  934. "btnTitle" => [
  935. "text" => "超值上新",
  936. "color" => "#ffffff",
  937. "startColor" => "#F5443E",
  938. "endColor" => "#F5443E"
  939. ],
  940. "link" => [
  941. "name" => ""
  942. ],
  943. "imageUrl" => "static/resource/images/diy/picture_show/picture_02.png"
  944. ]
  945. ],
  946. "listFrame" => [
  947. "startColor" => "#FFDDDD",
  948. "endColor" => "#FFEBED"
  949. ]
  950. ],
  951. "moduleTwo" => [
  952. "head" => [
  953. "textImg" => "static/resource/images/diy/picture_show/picture_show_head_text2.png",
  954. "subText" => "好物低至1折1",
  955. "subTextColor" => "#666666"
  956. ],
  957. "list" => [
  958. [
  959. "btnTitle" => [
  960. "text" => "大牌直降",
  961. "color" => "#ffffff",
  962. "startColor" => "#F5443E",
  963. "endColor" => "#F5443E"
  964. ],
  965. "link" => [
  966. "name" => ""
  967. ],
  968. "imageUrl" => "static/resource/images/diy/picture_show/picture_03.png"
  969. ],
  970. [
  971. "btnTitle" => [
  972. "text" => "天天底价",
  973. "color" => "#ffffff",
  974. "startColor" => "#F5443E",
  975. "endColor" => "#F5443E"
  976. ],
  977. "link" => [
  978. "name" => ""
  979. ],
  980. "imageUrl" => "static/resource/images/diy/picture_show/picture_04.png"
  981. ]
  982. ],
  983. "listFrame" => [
  984. "startColor" => "#E6E1FE",
  985. "endColor" => "#F0EEFC"
  986. ]
  987. ],
  988. "moduleRounded" => [
  989. "topRounded" => 10,
  990. "bottomRounded" => 10
  991. ],
  992. "textColor" => "#303133",
  993. "pageStartBgColor" => "",
  994. "pageEndBgColor" => "",
  995. "pageGradientAngle" => "to bottom",
  996. "componentBgUrl" => "",
  997. "componentBgAlpha" => 2,
  998. "componentStartBgColor" => "",
  999. "componentEndBgColor" => "",
  1000. "componentGradientAngle" => "to bottom",
  1001. "topRounded" => 0,
  1002. "bottomRounded" => 0,
  1003. "elementBgColor" => "",
  1004. "topElementRounded" => 0,
  1005. "bottomElementRounded" => 0,
  1006. "margin" => [
  1007. "top" => 10,
  1008. "bottom" => null,
  1009. "both" => 10
  1010. ],
  1011. "pageStyle" => "padding-top:20rpx;padding-bottom:0rpx;padding-right:20rpx;padding-left:20rpx;"
  1012. ],
  1013. [
  1014. "path" => "edit-picture-show",
  1015. "uses" => 0,
  1016. "id" => "3wz1r5bww3q0",
  1017. "componentName" => "PictureShow",
  1018. "componentTitle" => "图片展播",
  1019. "ignore" => [],
  1020. "moduleOne" => [
  1021. "head" => [
  1022. "textImg" => "static/resource/images/diy/picture_show/picture_show_head_text3.png",
  1023. "subText" => "最高补1200元",
  1024. "subTextColor" => "#666666"
  1025. ],
  1026. "list" => [
  1027. [
  1028. "btnTitle" => [
  1029. "text" => "全网低价",
  1030. "color" => "#ffffff",
  1031. "startColor" => "#F5443E",
  1032. "endColor" => "#F5443E"
  1033. ],
  1034. "link" => [
  1035. "name" => ""
  1036. ],
  1037. "imageUrl" => "static/resource/images/diy/picture_show/picture_05.png"
  1038. ],
  1039. [
  1040. "btnTitle" => [
  1041. "text" => "大牌特惠",
  1042. "color" => "#ffffff",
  1043. "startColor" => "#F5443E",
  1044. "endColor" => "#F5443E"
  1045. ],
  1046. "link" => [
  1047. "name" => ""
  1048. ],
  1049. "imageUrl" => "static/resource/images/diy/picture_show/picture_06.png"
  1050. ]
  1051. ],
  1052. "listFrame" => [
  1053. "startColor" => "rgba(212, 239, 255, 1)",
  1054. "endColor" => "rgba(235, 244, 250, 1)"
  1055. ]
  1056. ],
  1057. "moduleTwo" => [
  1058. "head" => [
  1059. "textImg" => "static/resource/images/diy/picture_show/picture_show_head_text4.png",
  1060. "subText" => "每日上新",
  1061. "subTextColor" => "#666666"
  1062. ],
  1063. "list" => [
  1064. [
  1065. "btnTitle" => [
  1066. "text" => "人气爆款",
  1067. "color" => "#ffffff",
  1068. "startColor" => "#F5443E",
  1069. "endColor" => "#F5443E"
  1070. ],
  1071. "link" => [
  1072. "name" => ""
  1073. ],
  1074. "imageUrl" => "static/resource/images/diy/picture_show/picture_07.png"
  1075. ],
  1076. [
  1077. "btnTitle" => [
  1078. "text" => "官方正品",
  1079. "color" => "#ffffff",
  1080. "startColor" => "#F5443E",
  1081. "endColor" => "#F5443E"
  1082. ],
  1083. "link" => [
  1084. "name" => ""
  1085. ],
  1086. "imageUrl" => "static/resource/images/diy/picture_show/picture_08.png"
  1087. ]
  1088. ],
  1089. "listFrame" => [
  1090. "startColor" => "rgba(255, 241, 212, 1)",
  1091. "endColor" => "rgba(249, 242, 229, 1)"
  1092. ]
  1093. ],
  1094. "moduleRounded" => [
  1095. "topRounded" => 10,
  1096. "bottomRounded" => 10
  1097. ],
  1098. "textColor" => "#303133",
  1099. "pageStartBgColor" => "",
  1100. "pageEndBgColor" => "",
  1101. "pageGradientAngle" => "to bottom",
  1102. "componentBgUrl" => "",
  1103. "componentBgAlpha" => 2,
  1104. "componentStartBgColor" => "",
  1105. "componentEndBgColor" => "",
  1106. "componentGradientAngle" => "to bottom",
  1107. "topRounded" => 0,
  1108. "bottomRounded" => 0,
  1109. "elementBgColor" => "",
  1110. "topElementRounded" => 0,
  1111. "bottomElementRounded" => 0,
  1112. "margin" => [
  1113. "top" => 10,
  1114. "bottom" => null,
  1115. "both" => 10
  1116. ],
  1117. "pageStyle" => "padding-top:20rpx;padding-bottom:0rpx;padding-right:20rpx;padding-left:20rpx;"
  1118. ],
  1119. [
  1120. "path" => "edit-mall-shop-list",
  1121. "uses" => 0,
  1122. "id" => "23jelzdbapu",
  1123. "componentName" => "MallShopList",
  1124. "componentTitle" => "甄选好店",
  1125. "ignore" => [
  1126. "componentBgUrl"
  1127. ],
  1128. "titleStyle" => [
  1129. "title" => "风格1",
  1130. "value" => "style-1"
  1131. ],
  1132. "textImg" => "addon/mall/diy/mall_shop_list/index/title.png",
  1133. "siteColor" => "#333333",
  1134. "subTitle" => [
  1135. "text" => "更多",
  1136. "textColor" => "#999999",
  1137. "link" => [
  1138. "name" => ""
  1139. ]
  1140. ],
  1141. "style" => "style-2",
  1142. "source" => "all",
  1143. "num" => 3,
  1144. "site_ids" => [],
  1145. "siteStyle" => [
  1146. "startBgColor" => "#FFC3C4",
  1147. "endBgColor" => "#FFDABA",
  1148. "gradientAngle" => "to bottom",
  1149. "bgUrl"=> "/addon/mall/diy/mall_shop_list/index/bgUrl.jpg"
  1150. ],
  1151. "siteNameStyle" => [
  1152. "color" => "#303133",
  1153. "fontWeight" => "normal",
  1154. "isShow" => false
  1155. ],
  1156. "imgElementRounded" => 10,
  1157. "textColor" => "#303133",
  1158. "pageStartBgColor" => "",
  1159. "pageEndBgColor" => "",
  1160. "pageGradientAngle" => "to bottom",
  1161. "componentBgUrl" => "",
  1162. "componentBgAlpha" => 2,
  1163. "componentStartBgColor" => "",
  1164. "componentEndBgColor" => "",
  1165. "componentGradientAngle" => "to bottom",
  1166. "topRounded" => 0,
  1167. "bottomRounded" => 0,
  1168. "elementBgColor" => "",
  1169. "topElementRounded" => 10,
  1170. "bottomElementRounded" => 10,
  1171. "margin" => [
  1172. "top" => 10,
  1173. "bottom" => 0,
  1174. "both" => 10
  1175. ],
  1176. "pageStyle" => "padding-top:2rpx;padding-bottom:0rpx;padding-right:20rpx;padding-left:20rpx;"
  1177. ],
  1178. [
  1179. "path" => "edit-single-recommend",
  1180. "uses" => 0,
  1181. "id" => "2mxsu6pbqpu0",
  1182. "componentName" => "SingleRecommend",
  1183. "componentTitle" => "精选推荐",
  1184. "ignore" => [],
  1185. "titleStyle" => [
  1186. "title" => "风格1",
  1187. "value" => "style-1"
  1188. ],
  1189. "textImg" => "addon/mall/diy/index/style2/single_recommend_text1.png",
  1190. "textLink" => [
  1191. "name" => ""
  1192. ],
  1193. "titleColor" => "rgba(153, 153, 153, 1)",
  1194. "subTitle" => [
  1195. "text" => "更多",
  1196. "textColor" => "rgba(153, 153, 153, 1)",
  1197. "link" => [
  1198. "name" => ""
  1199. ]
  1200. ],
  1201. "source" => "all",
  1202. "goods_ids" => [],
  1203. "imageHeight" => "250",
  1204. "list" => [
  1205. [
  1206. "id" => "18o4pyaufktc",
  1207. "imageUrl" => "addon/mall/diy/index/style2/single_recommend_banner1.jpg",
  1208. "imgWidth" => 345,
  1209. "imgHeight" => 495,
  1210. "link" => [
  1211. "name" => ""
  1212. ],
  1213. "width" => 355,
  1214. "height" => 509.3478260869565
  1215. ],
  1216. [
  1217. "id" => "18o8pyaufktc",
  1218. "imageUrl" => "addon/mall/diy/index/style2/single_recommend_banner2.jpg",
  1219. "imgWidth" => 345,
  1220. "imgHeight" => 495,
  1221. "link" => [
  1222. "name" => ""
  1223. ],
  1224. "width" => 355,
  1225. "height" => 509.3478260869565
  1226. ]
  1227. ],
  1228. "goodsNameStyle" => [
  1229. "color" => "#303133",
  1230. "control" => true,
  1231. "fontWeight" => "normal"
  1232. ],
  1233. "priceStyle" => [
  1234. "mainColor" => "#FF4142",
  1235. "mainControl" => true,
  1236. "lineColor" => "#999CA7",
  1237. "lineControl" => true
  1238. ],
  1239. "saleStyle" => [
  1240. "color" => "rgba(255, 0, 0, 1)",
  1241. "control" => true
  1242. ],
  1243. "textColor" => "#303133",
  1244. "pageStartBgColor" => "",
  1245. "pageEndBgColor" => "",
  1246. "pageGradientAngle" => "to bottom",
  1247. "componentBgUrl" => "",
  1248. "componentBgAlpha" => 2,
  1249. "componentStartBgColor" => null,
  1250. "componentEndBgColor" => null,
  1251. "componentGradientAngle" => "to bottom",
  1252. "topRounded" => 0,
  1253. "bottomRounded" => 0,
  1254. "elementBgColor" => "rgba(255, 255, 255, 1)",
  1255. "topElementRounded" => 12,
  1256. "bottomElementRounded" => 12,
  1257. "margin" => [
  1258. "top" => 15,
  1259. "bottom" => 0,
  1260. "both" => 10
  1261. ],
  1262. "pageStyle" => "padding-top:20rpx;padding-bottom:20rpx;padding-right:20rpx;padding-left:20rpx;",
  1263. "topCarouselRounded" => 12,
  1264. "bottomCarouselRounded" => 12,
  1265. "indicatorColor" => "rgba(255, 255, 255, 0.6)",
  1266. "indicatorActiveColor" => "rgba(255, 255, 255, 1)"
  1267. ],
  1268. [
  1269. "path" => "edit-image-ads",
  1270. "uses" => 0,
  1271. "id" => "1kfmhruhijgg",
  1272. "componentName" => "ImageAds",
  1273. "componentTitle" => "图片广告",
  1274. "ignore" => [
  1275. ],
  1276. "imageHeight" => 89,
  1277. "isSameScreen" => false,
  1278. "list" => [
  1279. [
  1280. "link" => [
  1281. "name" => ""
  1282. ],
  1283. "imageUrl" => "addon/mall/diy/index/style2/discount_img.png",
  1284. "imgWidth" => 710,
  1285. "imgHeight" => 170,
  1286. "id" => "6eo9vdo9xtc0",
  1287. "width" => 375,
  1288. "height" => 89.78873239436619
  1289. ]
  1290. ],
  1291. "textColor" => "#303133",
  1292. "pageStartBgColor" => "",
  1293. "pageEndBgColor" => "",
  1294. "pageGradientAngle" => "to bottom",
  1295. "componentBgUrl" => "",
  1296. "componentBgAlpha" => 2,
  1297. "componentStartBgColor" => "",
  1298. "componentEndBgColor" => "",
  1299. "componentGradientAngle" => "to bottom",
  1300. "topRounded" => 0,
  1301. "bottomRounded" => 0,
  1302. "elementBgColor" => "",
  1303. "topElementRounded" => 0,
  1304. "bottomElementRounded" => 0,
  1305. "margin" => [
  1306. "top" => 10,
  1307. "bottom" => 10,
  1308. "both" => 10
  1309. ]
  1310. ],
  1311. [
  1312. "path" => "edit-mall-many-goods-list",
  1313. "uses" => 0,
  1314. "id" => "37adfqtqe080",
  1315. "componentName" => "MallManyGoodsList",
  1316. "componentTitle" => "多商品组",
  1317. "ignore" => [
  1318. "componentBgUrl"
  1319. ],
  1320. "style" => "style-2",
  1321. "num" => 6,
  1322. "sortWay" => "default",
  1323. "headStyle" => "style-4",
  1324. "aroundRadius" => 25,
  1325. "source" => "custom",
  1326. "goods_category" => "",
  1327. "goods_category_name" => "请选择",
  1328. "goodsNameStyle" => [
  1329. "color" => "#303133",
  1330. "control" => true,
  1331. "fontWeight" => "normal",
  1332. "isShow" => true
  1333. ],
  1334. "priceStyle" => [
  1335. "color" => "#FF4142",
  1336. "control" => true,
  1337. "isShow" => true
  1338. ],
  1339. "saleStyle" => [
  1340. "color" => "#999999",
  1341. "control" => true,
  1342. "isShow" => true
  1343. ],
  1344. "labelStyle" => [
  1345. "control" => true,
  1346. "isShow" => true
  1347. ],
  1348. "btnStyle" => [
  1349. "fontWeight" => false,
  1350. "padding" => 0,
  1351. "aroundRadius" => 25,
  1352. "cartEvent" => "detail",
  1353. "text" => "购买",
  1354. "textColor" => "#FFFFFF",
  1355. "startBgColor" => "#FF4142",
  1356. "endBgColor" => "#FF4142",
  1357. "style" => "nc-icon-gouwuche1",
  1358. "control" => true
  1359. ],
  1360. "imgElementRounded" => 12, // 图片圆角
  1361. "list" => [
  1362. [
  1363. "title" => "推荐",
  1364. "desc" => "猜你喜欢",
  1365. "source" => "all",
  1366. "goods_category" => "",
  1367. "goods_category_name" => "请选择",
  1368. "goods_ids" => [],
  1369. "imageUrl" => "",
  1370. "id" => "67pl1ysjhr40"
  1371. ],
  1372. [
  1373. "id" => "6z59zcmk4jk0",
  1374. "title" => "衣鞋包饰",
  1375. "desc" => "分类描述",
  1376. "source" => "all",
  1377. "goods_category" => "",
  1378. "goods_category_name" => "请选择",
  1379. "goods_ids" => [],
  1380. "imageUrl" => ""
  1381. ],
  1382. [
  1383. "id" => "1cfbll6wnmw0",
  1384. "title" => "居家百货",
  1385. "desc" => "分类描述",
  1386. "source" => "all",
  1387. "goods_category" => "",
  1388. "goods_category_name" => "请选择",
  1389. "goods_ids" => [],
  1390. "imageUrl" => ""
  1391. ],
  1392. [
  1393. "id" => "49p79g5l5qs0",
  1394. "title" => "食品营养",
  1395. "desc" => "分类描述",
  1396. "source" => "all",
  1397. "goods_category" => "",
  1398. "goods_category_name" => "请选择",
  1399. "goods_ids" => [],
  1400. "imageUrl" => ""
  1401. ]
  1402. ],
  1403. "textColor" => "#303133",
  1404. "pageStartBgColor" => "rgba(255, 255, 255, 1)",
  1405. "pageEndBgColor" => "rgba(255, 255, 255, 0.4)",
  1406. "pageGradientAngle" => "to bottom",
  1407. "componentBgUrl" => "",
  1408. "componentBgAlpha" => 2,
  1409. "componentStartBgColor" => null,
  1410. "componentEndBgColor" => null,
  1411. "componentGradientAngle" => "to bottom",
  1412. "topRounded" => 0,
  1413. "bottomRounded" => 0,
  1414. "elementBgColor" => "",
  1415. "topElementRounded" => 12,
  1416. "bottomElementRounded" => 12,
  1417. "margin" => [
  1418. "top" => 0,
  1419. "bottom" => 0,
  1420. "both" => 10
  1421. ],
  1422. "pageStyle" => "background:linear-gradient(to bottom,rgba(255, 255, 255, 1),rgba(255, 255, 255, 0.4));padding-top:2rpx;padding-bottom:0rpx;padding-right:20rpx;padding-left:20rpx;"
  1423. ]
  1424. ]
  1425. ]
  1426. ],
  1427. 'mall_index_style1' => [ // 页面标识
  1428. 'title' => '商城首页2', // 页面名称
  1429. 'cover' => 'addon/mall/diy/template/mall_index_one_cover.png', // 页面封面图
  1430. 'preview' => '', // 页面预览图
  1431. 'desc' => '', // 页面描述
  1432. 'mode' => 'diy', // 页面模式:diy:自定义,fixed:固定
  1433. // 页面数据源
  1434. 'data' => [
  1435. "global" => [
  1436. "title" => "首页",
  1437. 'pageStartBgColor' => 'rgba(246, 246, 246, 1)',
  1438. 'pageEndBgColor' => '',
  1439. 'pageGradientAngle' => 'to bottom',
  1440. "bgUrl" => "",
  1441. 'bgHeightScale' => 0,
  1442. "imgWidth" => "",
  1443. "imgHeight" => "",
  1444. "topStatusBar" => [
  1445. 'isShow' => false,
  1446. 'bgColor' => "#ffffff",
  1447. 'rollBgColor' => "#ffffff",
  1448. 'style' => 'style-1',
  1449. 'styleName' => '风格1',
  1450. 'textColor' => "#333333",
  1451. 'rollTextColor' => "#333333",
  1452. 'textAlign' => 'center',
  1453. 'inputPlaceholder' => '请输入搜索关键词',
  1454. 'imgUrl' => '',
  1455. 'link' => [
  1456. 'name' => ""
  1457. ]
  1458. ],
  1459. "bottomTabBarSwitch" => true,
  1460. "popWindow" => [
  1461. "imgUrl" => "",
  1462. "imgWidth" => "",
  1463. "imgHeight" => "",
  1464. "count" => -1,
  1465. "show" => 0,
  1466. "link" => [
  1467. "name" => ""
  1468. ]
  1469. ],
  1470. "template" => [
  1471. "textColor" => "#303133",
  1472. 'pageStartBgColor' => '',
  1473. 'pageEndBgColor' => '',
  1474. 'pageGradientAngle' => 'to bottom',
  1475. 'componentBgUrl' => '',
  1476. 'componentBgAlpha' => 2,
  1477. "componentStartBgColor" => "",
  1478. "componentEndBgColor" => "",
  1479. "componentGradientAngle" => "to bottom",
  1480. "topRounded" => 0,
  1481. "bottomRounded" => 0,
  1482. "elementBgColor" => "",
  1483. "topElementRounded" => 0,
  1484. "bottomElementRounded" => 0,
  1485. "margin" => [
  1486. "top" => 0,
  1487. "bottom" => 0,
  1488. "both" => 0
  1489. ]
  1490. ]
  1491. ],
  1492. "value" => [
  1493. [
  1494. "path" => "edit-carousel-search",
  1495. "uses" => 1,
  1496. "position" => "top_fixed",
  1497. "id" => "5wyf9s0k8jw0",
  1498. "componentName" => "CarouselSearch",
  1499. "componentTitle" => "轮播搜索",
  1500. "ignore" => [
  1501. "componentBgColor",
  1502. "componentBgUrl",
  1503. "marginTop",
  1504. "marginBottom",
  1505. "topRounded",
  1506. "bottomRounded",
  1507. "pageBgColor",
  1508. "marginBoth"
  1509. ],
  1510. "positionWay" => "fixed",
  1511. "fixedBgColor" => "",
  1512. 'bgGradient' => true,
  1513. "search" => [
  1514. "logo" => "addon/mall/diy/index/style1/logo.png",
  1515. "text" => "请输入搜索关键词",
  1516. "link" => [
  1517. 'name' => 'MALL_GOODS_SEARCH',
  1518. "parent" => "MALL_LINK",
  1519. 'title' => '商品搜索',
  1520. 'url' => '/addon/mall/pages/goods/search',
  1521. 'action' => '',
  1522. ],
  1523. 'style' => 'style-1',
  1524. 'styleName' => '风格一',
  1525. "subTitle" => [
  1526. "text" => "本地好价·优选生活",
  1527. "textColor" => "#000000",
  1528. "startColor" => "rgba(255,255,255,0.7)",
  1529. "endColor" => "",
  1530. ],
  1531. 'positionColor' => '#ffffff',
  1532. 'hotWord' => [
  1533. "interval" => 3,
  1534. 'list' => [
  1535. [
  1536. 'text' => '新品推荐'
  1537. ],
  1538. [
  1539. 'text' => '爆款'
  1540. ]
  1541. ]
  1542. ]
  1543. ],
  1544. "tab" => [
  1545. "control" => true,
  1546. "noColor" => "rgba(255, 255, 255, 1)",
  1547. "selectColor" => "rgba(255, 255, 255, 1)",
  1548. "fixedNoColor" => "rgba(255, 255, 255, 1)",
  1549. "fixedSelectColor" => "rgba(255, 255, 255, 1)",
  1550. "list" => [
  1551. [
  1552. "text" => "精选",
  1553. "source" => "diy_page",
  1554. "diy_id" => 0,
  1555. "diy_title" => "",
  1556. "id" => "4tbvliuezhq0"
  1557. ],
  1558. [
  1559. "text" => "猜你喜欢",
  1560. "source" => "diy_page",
  1561. "diy_id" => 0,
  1562. "diy_title" => "",
  1563. "id" => "1rpxkuehd03k"
  1564. ],
  1565. [
  1566. "text" => "蔬菜",
  1567. "source" => "diy_page",
  1568. "diy_id" => 0,
  1569. "diy_title" => "",
  1570. "id" => "6d0zybcxzvc0"
  1571. ],
  1572. [
  1573. "text" => "水果",
  1574. "source" => "diy_page",
  1575. "diy_id" => 0,
  1576. "diy_title" => "",
  1577. "id" => "17r58ld9i8xs"
  1578. ],
  1579. [
  1580. "id" => "5acf7ab4f040",
  1581. "text" => "海鲜",
  1582. "source" => "diy_page",
  1583. "diy_id" => 0,
  1584. "diy_title" => ""
  1585. ],
  1586. [
  1587. "id" => "37a9vwqt1r20",
  1588. "text" => "熟食",
  1589. "source" => "diy_page",
  1590. "diy_id" => 0,
  1591. "diy_title" => ""
  1592. ],
  1593. [
  1594. "id" => "1en9w5jstvs0",
  1595. "text" => "米面",
  1596. "source" => "diy_page",
  1597. "diy_id" => 0,
  1598. "diy_title" => ""
  1599. ],
  1600. [
  1601. "id" => "3ae14irgqoa0",
  1602. "text" => "粮油",
  1603. "source" => "diy_page",
  1604. "diy_id" => 0,
  1605. "diy_title" => " "
  1606. ]
  1607. ]
  1608. ],
  1609. "swiper" => [
  1610. "control" => true,
  1611. "interval" => 5,
  1612. "indicatorColor" => "rgba(0, 0, 0, 0.3)",
  1613. "indicatorActiveColor" => "#FF0E0E",
  1614. 'indicatorStyle' => 'style-1',
  1615. 'indicatorAlign' => 'center',
  1616. 'swiperStyle' => 'style-1',
  1617. "imageHeight" => 164,
  1618. "topRounded" => 10,
  1619. "bottomRounded" => 10,
  1620. "list" => [
  1621. [
  1622. "imageUrl" => "addon/mall/diy/index/style1/banner.png",
  1623. "imgWidth" => 630,
  1624. "imgHeight" => 300,
  1625. "link" => [
  1626. "name" => ""
  1627. ],
  1628. "id" => "2ywogh006ai0",
  1629. "width" => 345,
  1630. "height" => 164.28571428571428
  1631. ],
  1632. [
  1633. "imageUrl" => "addon/mall/diy/index/style1/banner.png",
  1634. "imgWidth" => 690,
  1635. "imgHeight" => 300,
  1636. "link" => [
  1637. "name" => ""
  1638. ],
  1639. "id" => "3ewogh006ai0",
  1640. "width" => 345,
  1641. "height" => 150
  1642. ],
  1643. ]
  1644. ],
  1645. 'color' => '#999999',
  1646. 'btnColor' => '#ffffff',
  1647. 'bgColor' => '#ffffff',
  1648. 'btnBgColor' => '#ff3434',
  1649. "textColor" => "#303133",
  1650. 'pageStartBgColor' => '',
  1651. 'pageEndBgColor' => '',
  1652. 'pageGradientAngle' => 'to bottom',
  1653. 'componentBgUrl' => '',
  1654. 'componentBgAlpha' => 2,
  1655. "componentStartBgColor" => "",
  1656. "componentEndBgColor" => "",
  1657. "componentGradientAngle" => "to bottom",
  1658. "topRounded" => 12,
  1659. "bottomRounded" => 12,
  1660. "elementBgColor" => "",
  1661. "topElementRounded" => 0,
  1662. "bottomElementRounded" => 0,
  1663. "margin" => [
  1664. "top" => 0,
  1665. "bottom" => 0,
  1666. "both" => 0
  1667. ]
  1668. ],
  1669. [
  1670. "path" => "edit-graphic-nav",
  1671. "uses" => 0,
  1672. "id" => "6lvx8ztvquc0",
  1673. "componentName" => "GraphicNav",
  1674. "componentTitle" => "图文导航",
  1675. "ignore" => [],
  1676. "layout" => "horizontal",
  1677. "mode" => "graphic",
  1678. "showStyle" => "fixed",
  1679. "rowCount" => 5,
  1680. "pageCount" => 2,
  1681. "carousel" => [
  1682. "type" => "circle",
  1683. "color" => "#FFFFFF"
  1684. ],
  1685. "imageSize" => 40,
  1686. "aroundRadius" => 25,
  1687. "font" => [
  1688. "size" => 12,
  1689. "weight" => "normal",
  1690. "color" => "#303133"
  1691. ],
  1692. "list" => [
  1693. [
  1694. "title" => "签到",
  1695. "link" => [
  1696. "name" => "MEMBER_MY_SIGN_IN",
  1697. "parent" => "MEMBER_LINK",
  1698. "title" => "我的签到",
  1699. "url" => "/app/pages/member/sign_in",
  1700. "action" => ""
  1701. ],
  1702. "imageUrl" => "addon/mall/diy/index/style1/nav_sign_in.png",
  1703. "label" => [
  1704. "control" => false,
  1705. "text" => "热门",
  1706. "textColor" => "#FFFFFF",
  1707. "bgColorStart" => "#F83287",
  1708. "bgColorEnd" => "#FE3423"
  1709. ],
  1710. "id" => "1evjnc3zeb5s",
  1711. "imgWidth" => 135,
  1712. "imgHeight" => 135
  1713. ],
  1714. [
  1715. 'title' => '商品分类',
  1716. 'link' => [
  1717. 'name' => 'MALL_GOODS_CATEGORY',
  1718. 'parent' => 'MALL_LINK',
  1719. 'title' => '商品分类',
  1720. 'url' => '/addon/mall/pages/goods/category',
  1721. 'action' => ''
  1722. ],
  1723. 'imageUrl' => 'addon/mall/diy/index/style1/nav_goods_category.png',
  1724. 'label' => [
  1725. 'control' => false,
  1726. 'text' => '热门',
  1727. 'textColor' => '#FFFFFF',
  1728. 'bgColorStart' => '#F83287',
  1729. 'bgColorEnd' => '#FE3423'
  1730. ],
  1731. 'id' => '1evjnc3zeb5s',
  1732. 'imgWidth' => 180,
  1733. 'imgHeight' => 180
  1734. ],
  1735. [
  1736. 'title' => '领券中心',
  1737. 'link' => [
  1738. 'name' => 'MALL_COUPON_LIST',
  1739. 'parent' => 'MALL_LINK',
  1740. 'title' => '优惠券列表',
  1741. 'url' => '/addon/mall/pages/coupon/list',
  1742. 'action' => ''
  1743. ],
  1744. 'imageUrl' => 'addon/mall/diy/index/style1/nav_coupon.png',
  1745. 'label' => [
  1746. 'control' => false,
  1747. 'text' => '热门',
  1748. 'textColor' => '#FFFFFF',
  1749. 'bgColorStart' => '#F83287',
  1750. 'bgColorEnd' => '#FE3423'
  1751. ],
  1752. 'id' => '3bmtyrslxxy0',
  1753. 'imgWidth' => 180,
  1754. 'imgHeight' => 180
  1755. ],
  1756. [
  1757. 'title' => '会员中心',
  1758. 'link' => [
  1759. 'name' => 'MALL_MEMBER_INDEX',
  1760. 'parent' => 'MALL_LINK',
  1761. 'title' => '商城个人中心',
  1762. 'url' => '/app/pages/member/index',
  1763. 'action' => 'decorate'
  1764. ],
  1765. 'imageUrl' => 'addon/mall/diy/index/style1/nav_member_index.png',
  1766. 'label' => [
  1767. 'control' => false,
  1768. 'text' => '热门',
  1769. 'textColor' => '#FFFFFF',
  1770. 'bgColorStart' => '#F83287',
  1771. 'bgColorEnd' => '#FE3423'
  1772. ],
  1773. 'id' => '4aixr8qu5ek0',
  1774. 'imgWidth' => 180,
  1775. 'imgHeight' => 180
  1776. ],
  1777. // [
  1778. // 'id' => '6iux9g1aojo0',
  1779. // 'title' => '新闻资讯',
  1780. // 'imageUrl' => 'addon/mall/diy/index/style1/nav_news_info.png',
  1781. // 'imgWidth' => 180,
  1782. // 'imgHeight' => 180,
  1783. // 'link' => [
  1784. // 'name' => ''
  1785. // ],
  1786. // 'label' => [
  1787. // 'control' => false,
  1788. // 'text' => '热门',
  1789. // 'textColor' => '#FFFFFF',
  1790. // 'bgColorStart' => '#F83287',
  1791. // 'bgColorEnd' => '#FE3423'
  1792. // ]
  1793. // ],
  1794. [
  1795. 'id' => '7jggy5euv3w0',
  1796. 'title' => '购物车',
  1797. 'imageUrl' => 'addon/mall/diy/index/style1/nav_cart.png',
  1798. 'imgWidth' => 180,
  1799. 'imgHeight' => 180,
  1800. 'link' => [
  1801. 'name' => 'MALL_GOODS_CART',
  1802. 'parent' => 'MALL_LINK',
  1803. 'title' => '购物车',
  1804. 'url' => '/addon/mall/pages/goods/cart',
  1805. 'action' => ''
  1806. ],
  1807. 'label' => [
  1808. 'control' => false,
  1809. 'text' => '热门',
  1810. 'textColor' => '#FFFFFF',
  1811. 'bgColorStart' => '#F83287',
  1812. 'bgColorEnd' => '#FE3423'
  1813. ]
  1814. ],
  1815. [
  1816. 'id' => '7bqpc6bjha80',
  1817. 'title' => '我的订单',
  1818. 'imageUrl' => 'addon/mall/diy/index/style1/nav_my_order.png',
  1819. 'imgWidth' => 180,
  1820. 'imgHeight' => 180,
  1821. 'link' => [
  1822. 'name' => 'MALL_ORDER_LIST',
  1823. 'parent' => 'MALL_LINK',
  1824. 'title' => '订单列表',
  1825. 'url' => '/addon/mall/pages/order/list',
  1826. 'action' => ''
  1827. ],
  1828. 'label' => [
  1829. 'control' => false,
  1830. 'text' => '热门',
  1831. 'textColor' => '#FFFFFF',
  1832. 'bgColorStart' => '#F83287',
  1833. 'bgColorEnd' => '#FE3423'
  1834. ]
  1835. ],
  1836. [
  1837. 'id' => 'tgo5qmjawnk',
  1838. 'title' => '我的积分',
  1839. 'imageUrl' => 'addon/mall/diy/index/style1/nav_my_point.png',
  1840. 'imgWidth' => 180,
  1841. 'imgHeight' => 180,
  1842. 'link' => [
  1843. 'name' => 'MEMBER_POINT',
  1844. 'parent' => 'MEMBER_LINK',
  1845. 'title' => '我的积分',
  1846. 'url' => '/app/pages/member/point',
  1847. 'action' => ''
  1848. ],
  1849. 'label' => [
  1850. 'control' => false,
  1851. 'text' => '热门',
  1852. 'textColor' => '#FFFFFF',
  1853. 'bgColorStart' => '#F83287',
  1854. 'bgColorEnd' => '#FE3423'
  1855. ]
  1856. ],
  1857. [
  1858. 'id' => '1fprven2cqrk',
  1859. 'title' => '我的余额',
  1860. 'imageUrl' => 'addon/mall/diy/index/style1/nav_my_balance.png',
  1861. 'imgWidth' => 180,
  1862. 'imgHeight' => 180,
  1863. 'link' => [
  1864. 'name' => 'MEMBER_BALANCE',
  1865. 'parent' => 'MEMBER_LINK',
  1866. 'title' => '我的余额',
  1867. 'url' => '/app/pages/member/balance',
  1868. 'action' => ''
  1869. ],
  1870. 'label' => [
  1871. 'control' => false,
  1872. 'text' => '热门',
  1873. 'textColor' => '#FFFFFF',
  1874. 'bgColorStart' => '#F83287',
  1875. 'bgColorEnd' => '#FE3423'
  1876. ]
  1877. ],
  1878. [
  1879. 'id' => '2wggehpnako0',
  1880. 'title' => '地址管理',
  1881. 'imageUrl' => 'addon/mall/diy/index/style1/nav_my_address.png',
  1882. 'imgWidth' => 180,
  1883. 'imgHeight' => 180,
  1884. 'link' => [
  1885. 'name' => 'MEMBER_ADDRESS',
  1886. 'parent' => 'MEMBER_LINK',
  1887. 'title' => '收货地址',
  1888. 'url' => '/app/pages/member/address',
  1889. 'action' => ''
  1890. ],
  1891. 'label' => [
  1892. 'control' => false,
  1893. 'text' => '热门',
  1894. 'textColor' => '#FFFFFF',
  1895. 'bgColorStart' => '#F83287',
  1896. 'bgColorEnd' => '#FE3423'
  1897. ]
  1898. ],
  1899. [
  1900. "id" => "2ktzer8wrnc0",
  1901. "title" => "申请入驻",
  1902. "imageUrl" => "addon/mall/diy/index/style1/nav_fenxiao.png",
  1903. "imgWidth" => 180,
  1904. "imgHeight" => 180,
  1905. "link" => [
  1906. 'name' => 'MALL_SHOP_APPLY',
  1907. 'parent' => 'MALL_LINK',
  1908. 'title' => '申请入驻',
  1909. 'url' => '/addon/mall/pages/member/merchant_settled',
  1910. 'action' => ''
  1911. ],
  1912. "label" => [
  1913. "control" => false,
  1914. "text" => "热门",
  1915. "textColor" => "#FFFFFF",
  1916. "bgColorStart" => "#F83287",
  1917. "bgColorEnd" => "#FE3423"
  1918. ],
  1919. ],
  1920. ],
  1921. "textColor" => "#303133",
  1922. 'pageStartBgColor' => '',
  1923. 'pageEndBgColor' => '',
  1924. 'pageGradientAngle' => 'to bottom',
  1925. 'componentBgUrl' => '',
  1926. 'componentBgAlpha' => 2,
  1927. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  1928. "componentEndBgColor" => "",
  1929. "componentGradientAngle" => "to bottom",
  1930. "topRounded" => 12,
  1931. "bottomRounded" => 12,
  1932. "elementBgColor" => "",
  1933. "topElementRounded" => 0,
  1934. "bottomElementRounded" => 0,
  1935. "margin" => [
  1936. "top" => -1,
  1937. "bottom" => 5,
  1938. "both" => 10
  1939. ]
  1940. ],
  1941. [
  1942. "path" => "edit-notice",
  1943. "uses" => 0,
  1944. "id" => "4m9g2ylz1di0",
  1945. "componentName" => "Notice",
  1946. "componentTitle" => "公告",
  1947. "ignore" => [],
  1948. "noticeType" => "img",
  1949. "imgType" => "system",
  1950. "systemUrl" => "style_2",
  1951. "imageUrl" => "",
  1952. "showType" => "popup",
  1953. "scrollWay" => "upDown",
  1954. "fontSize" => 12,
  1955. "fontWeight" => "normal",
  1956. "noticeTitle" => "公告",
  1957. "list" => [
  1958. [
  1959. "text" => "最新公告:欢迎来到小店参观!",
  1960. "link" => [
  1961. "name" => ""
  1962. ],
  1963. "id" => "1rz6s4buaxc0"
  1964. ],
  1965. [
  1966. "id" => "2wksdax75fc0",
  1967. "text" => "最新公告:欢迎来到小店参观!",
  1968. "link" => [
  1969. "name" => ""
  1970. ]
  1971. ]
  1972. ],
  1973. "textColor" => "#303133",
  1974. 'pageStartBgColor' => '',
  1975. 'pageEndBgColor' => '',
  1976. 'pageGradientAngle' => 'to bottom',
  1977. 'componentBgUrl' => '',
  1978. 'componentBgAlpha' => 2,
  1979. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  1980. "componentEndBgColor" => "",
  1981. "componentGradientAngle" => "to bottom",
  1982. "topRounded" => 12,
  1983. "bottomRounded" => 12,
  1984. "elementBgColor" => "",
  1985. "topElementRounded" => 0,
  1986. "bottomElementRounded" => 0,
  1987. "margin" => [
  1988. "top" => 5,
  1989. "bottom" => 5,
  1990. "both" => 10
  1991. ]
  1992. ],
  1993. [
  1994. "path" => "edit-mall-goods-coupon",
  1995. "uses" => 0,
  1996. "id" => "52ldidxgpcg0",
  1997. "componentName" => "MallGoodsCoupon",
  1998. "componentTitle" => "优惠券",
  1999. "ignore" => [
  2000. "componentBgColor",
  2001. "componentBgUrl"
  2002. ],
  2003. "style" => "style-1",
  2004. "styleName" => "风格一",
  2005. "source" => "all",
  2006. "num" => 6,
  2007. "couponIds" => [],
  2008. "btnText" => "立即领取",
  2009. "couponTitle" => "先领券 再购物",
  2010. "couponSubTitle" => "领券下单 享购物优惠",
  2011. "titleColor" => "#ffffff",
  2012. "subTitleColor" => "#ffffff",
  2013. "couponItem" => [
  2014. "bgColor" => "#ffffff",
  2015. "textColor" => "#333333",
  2016. "subTextColor" => "#666666",
  2017. "moneyColor" => "#333333",
  2018. "aroundRadius" => 12
  2019. ],
  2020. "textColor" => "#303133",
  2021. 'pageStartBgColor' => '',
  2022. 'pageEndBgColor' => '',
  2023. 'pageGradientAngle' => 'to bottom',
  2024. 'componentBgUrl' => '',
  2025. 'componentBgAlpha' => 2,
  2026. "componentStartBgColor" => "",
  2027. "componentEndBgColor" => "",
  2028. "componentGradientAngle" => "to bottom",
  2029. "topRounded" => 0,
  2030. "bottomRounded" => 12,
  2031. "elementBgColor" => "",
  2032. "topElementRounded" => 0,
  2033. "bottomElementRounded" => 0,
  2034. "margin" => [
  2035. "top" => 5,
  2036. "bottom" => 5,
  2037. "both" => 10
  2038. ]
  2039. ],
  2040. [
  2041. "path" => "edit-active-cube",
  2042. "uses" => 0,
  2043. "id" => "717m86hlcho0",
  2044. "componentName" => "ActiveCube",
  2045. "componentTitle" => "活动魔方",
  2046. "ignore" => [],
  2047. "titleStyle" => [
  2048. "title" => "风格1",
  2049. "value" => "style-1"
  2050. ],
  2051. "text" => "超值爆款",
  2052. "textLink" => [
  2053. "name" => ""
  2054. ],
  2055. "textImg" => "static/resource/images/diy/active_cube/active_cube_text1.png",
  2056. "titleColor" => "#F91700",
  2057. "subTitle" => [
  2058. "text" => "为您精选爆款",
  2059. "textColor" => "#FFFFFF",
  2060. "startColor" => "#FB792F",
  2061. "endColor" => "#F91700",
  2062. "link" => [
  2063. "name" => ""
  2064. ],
  2065. ],
  2066. "blockStyle" => [
  2067. "title" => "风格4",
  2068. "value" => "style-4",
  2069. 'fontWeight' => 'bold',
  2070. 'btnText' => 'normal'
  2071. ],
  2072. "list" => [
  2073. [
  2074. "title" => [
  2075. "text" => "今日推荐",
  2076. "textColor" => "#303133"
  2077. ],
  2078. "subTitle" => [
  2079. "text" => "诚意推荐",
  2080. "textColor" => "rgba(237, 110, 0, 1)",
  2081. "startColor" => "rgba(243, 218, 197, 1)",
  2082. "endColor" => "rgba(255, 228, 217, 1)"
  2083. ],
  2084. "moreTitle" => [
  2085. "text" => "去看看",
  2086. "startColor" => "#FEA715",
  2087. "endColor" => "#FE1E00",
  2088. ],
  2089. "listFrame" => [
  2090. "startColor" => "rgba(255, 173, 77, 1)",
  2091. "endColor" => "rgba(249, 61, 2, 1)"
  2092. ],
  2093. "link" => [
  2094. "name" => ""
  2095. ],
  2096. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods1.png",
  2097. "id" => "bvn98cr8j1s"
  2098. ],
  2099. [
  2100. "title" => [
  2101. "text" => "优惠好物",
  2102. "textColor" => "#303133"
  2103. ],
  2104. "subTitle" => [
  2105. "text" => "领券优惠",
  2106. "textColor" => "rgba(46, 89, 233, 1)",
  2107. "startColor" => "rgba(205, 217, 248, 1)",
  2108. "endColor" => "rgba(205, 217, 248, 1)"
  2109. ],
  2110. "moreTitle" => [
  2111. "text" => "去看看",
  2112. "startColor" => "#FFBF50",
  2113. "endColor" => "#FF9E03"
  2114. ],
  2115. "listFrame" => [
  2116. "startColor" => "rgba(124, 167, 244, 1)",
  2117. "endColor" => "rgba(43, 86, 233, 1)"
  2118. ],
  2119. "link" => [
  2120. "name" => ""
  2121. ],
  2122. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods2.png",
  2123. "id" => "6u24tqbyc780"
  2124. ],
  2125. [
  2126. "title" => [
  2127. "text" => "热销推荐",
  2128. "textColor" => "#303133"
  2129. ],
  2130. "subTitle" => [
  2131. "text" => "热销商品",
  2132. "textColor" => "rgba(246, 47, 85, 1)",
  2133. "startColor" => "rgba(252, 216, 219, 1)",
  2134. "endColor" => "rgba(252, 216, 219, 1)"
  2135. ],
  2136. "moreTitle" => [
  2137. "text" => "去看看",
  2138. "startColor" => "#A2E792",
  2139. "endColor" => "#49CD2D"
  2140. ],
  2141. "listFrame" => [
  2142. "startColor" => "rgba(255, 127, 72, 1)",
  2143. "endColor" => "rgba(238, 51, 91, 1)"
  2144. ],
  2145. "link" => [
  2146. "name" => ""
  2147. ],
  2148. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods3.png",
  2149. "id" => "6dn1yt1j0as0"
  2150. ],
  2151. [
  2152. "title" => [
  2153. "text" => "书桌好物",
  2154. "textColor" => "#303133"
  2155. ],
  2156. "subTitle" => [
  2157. "text" => "好物推荐",
  2158. "textColor" => "rgba(19, 155, 60, 1)",
  2159. "startColor" => "rgba(211, 241, 218, 1)",
  2160. "endColor" => "rgba(211, 241, 218, 1)"
  2161. ],
  2162. "moreTitle" => [
  2163. "text" => "去看看",
  2164. "startColor" => "#4AC1FF",
  2165. "endColor" => "#1D7CFF",
  2166. ],
  2167. "listFrame" => [
  2168. "startColor" => "rgba(144, 212, 140, 1)",
  2169. "endColor" => "rgba(41, 159, 79, 1)"
  2170. ],
  2171. "link" => [
  2172. "name" => ""
  2173. ],
  2174. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods4.png",
  2175. "id" => "4q9zphidqtm0"
  2176. ]
  2177. ],
  2178. "textColor" => "#303133",
  2179. 'pageStartBgColor' => '',
  2180. 'pageEndBgColor' => '',
  2181. 'pageGradientAngle' => 'to bottom',
  2182. 'componentBgUrl' => '',
  2183. 'componentBgAlpha' => 2,
  2184. "componentStartBgColor" => "#ffffff",
  2185. "componentEndBgColor" => "",
  2186. "componentGradientAngle" => "to bottom",
  2187. "topRounded" => 12,
  2188. "bottomRounded" => 12,
  2189. "elementBgColor" => "#FFFAF5",
  2190. "topElementRounded" => 10,
  2191. "bottomElementRounded" => 10,
  2192. "margin" => [
  2193. "top" => 5,
  2194. "bottom" => 5,
  2195. "both" => 10
  2196. ]
  2197. ],
  2198. [
  2199. "path" => "edit-active-cube",
  2200. "uses" => 0,
  2201. "id" => "3keeqqrkpxk0",
  2202. "componentName" => "ActiveCube",
  2203. "componentTitle" => "活动魔方",
  2204. "ignore" => [],
  2205. "titleStyle" => [
  2206. "title" => "风格4",
  2207. "value" => "style-4"
  2208. ],
  2209. "text" => "数码产品",
  2210. "textImg" => "static/resource/images/diy/active_cube/active_cube_text1.png",
  2211. "textLink" => [
  2212. "name" => ""
  2213. ],
  2214. "titleColor" => "rgba(255, 255, 255, 1)",
  2215. "subTitle" => [
  2216. "text" => "去逛逛",
  2217. "textColor" => "#303133",
  2218. "startColor" => "rgba(255, 255, 255, 1)",
  2219. "endColor" => "rgba(255, 255, 255, 1)",
  2220. "link" => [
  2221. "name" => ""
  2222. ],
  2223. ],
  2224. "blockStyle" => [
  2225. "title" => "风格3",
  2226. "value" => "style-3",
  2227. 'fontWeight' => 'normal',
  2228. 'btnText' => 'normal'
  2229. ],
  2230. "list" => [
  2231. [
  2232. "title" => [
  2233. "text" => "蓝牙耳机",
  2234. "textColor" => "#303133"
  2235. ],
  2236. "subTitle" => [
  2237. "text" => "诚意推荐",
  2238. "textColor" => "#999999",
  2239. "startColor" => "",
  2240. "endColor" => ""
  2241. ],
  2242. "moreTitle" => [
  2243. "text" => "去看看",
  2244. "startColor" => "#FEA715",
  2245. "endColor" => "#FE1E00"
  2246. ],
  2247. "listFrame" => [
  2248. "startColor" => "",
  2249. "endColor" => ""
  2250. ],
  2251. "link" => [
  2252. "name" => ""
  2253. ],
  2254. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods5.png",
  2255. "id" => "5am2l07pkr00"
  2256. ],
  2257. [
  2258. "title" => [
  2259. "text" => "医用雾化",
  2260. "textColor" => "#303133"
  2261. ],
  2262. "subTitle" => [
  2263. "text" => "领券更优惠",
  2264. "textColor" => "#999999",
  2265. "startColor" => "",
  2266. "endColor" => ""
  2267. ],
  2268. "moreTitle" => [
  2269. "text" => "去看看",
  2270. "startColor" => "#FFBF50",
  2271. "endColor" => "#FF9E03"
  2272. ],
  2273. "listFrame" => [
  2274. "startColor" => "",
  2275. "endColor" => ""
  2276. ],
  2277. "link" => [
  2278. "name" => ""
  2279. ],
  2280. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods6.png",
  2281. "id" => "2v4zusih9u80"
  2282. ],
  2283. [
  2284. "title" => [
  2285. "text" => "智能手表",
  2286. "textColor" => "#303133"
  2287. ],
  2288. "subTitle" => [
  2289. "text" => "本周热销商品",
  2290. "textColor" => "#999999",
  2291. "startColor" => "",
  2292. "endColor" => ""
  2293. ],
  2294. "moreTitle" => [
  2295. "text" => "去看看",
  2296. "startColor" => "#A2E792",
  2297. "endColor" => "#49CD2D"
  2298. ],
  2299. "listFrame" => [
  2300. "startColor" => "",
  2301. "endColor" => ""
  2302. ],
  2303. "link" => [
  2304. "name" => ""
  2305. ],
  2306. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods7.png",
  2307. "id" => "va5dyomnq68"
  2308. ],
  2309. [
  2310. "title" => [
  2311. "text" => "甜心咖啡",
  2312. "textColor" => "#303133"
  2313. ],
  2314. "subTitle" => [
  2315. "text" => "办公好物推荐",
  2316. "textColor" => "#999999",
  2317. "startColor" => "",
  2318. "endColor" => ""
  2319. ],
  2320. "moreTitle" => [
  2321. "text" => "去看看",
  2322. "startColor" => "#4AC1FF",
  2323. "endColor" => "#1D7CFF"
  2324. ],
  2325. "listFrame" => [
  2326. "startColor" => "",
  2327. "endColor" => ""
  2328. ],
  2329. "link" => [
  2330. "name" => ""
  2331. ],
  2332. "imageUrl" => "static/resource/images/diy/active_cube/active_cube_goods8.png",
  2333. "id" => "4h16lw3ntsw0"
  2334. ]
  2335. ],
  2336. "textColor" => "#303133",
  2337. "pageStartBgColor" => "",
  2338. "pageEndBgColor" => "",
  2339. "pageGradientAngle" => "to bottom",
  2340. "componentBgUrl" => "static/resource/images/diy/active_cube/active_cube_bg.png",
  2341. "componentBgAlpha" => 7,
  2342. "componentStartBgColor" => "",
  2343. "componentEndBgColor" => "",
  2344. "componentGradientAngle" => "to bottom",
  2345. "topRounded" => 12,
  2346. "bottomRounded" => 12,
  2347. "elementBgColor" => "#FFFAF5",
  2348. "topElementRounded" => 10,
  2349. "bottomElementRounded" => 10,
  2350. "margin" => [
  2351. "top" => 5,
  2352. "bottom" => 5,
  2353. "both" => 10
  2354. ]
  2355. ],
  2356. [
  2357. "path" => "edit-horz-blank",
  2358. "uses" => 0,
  2359. "id" => "6nc7hkh3g100",
  2360. "componentName" => "HorzBlank",
  2361. "componentTitle" => "辅助空白",
  2362. "ignore" => [
  2363. "pageBgColor",
  2364. "componentBgUrl"
  2365. ],
  2366. "textColor" => "#303133",
  2367. "pageStartBgColor" => "",
  2368. "pageEndBgColor" => "",
  2369. "pageGradientAngle" => "to bottom",
  2370. "componentBgUrl" => "",
  2371. "componentBgAlpha" => 2,
  2372. "componentStartBgColor" => "rgba(255, 169, 97, 1)",
  2373. "componentEndBgColor" => "rgba(250, 61, 61, 1)",
  2374. "componentGradientAngle" => "to right",
  2375. "topRounded" => 12,
  2376. "bottomRounded" => 0,
  2377. "elementBgColor" => "",
  2378. "topElementRounded" => 0,
  2379. "bottomElementRounded" => 0,
  2380. "margin" => [
  2381. "top" => 5,
  2382. "bottom" => 0,
  2383. "both" => 10
  2384. ],
  2385. "height" => 10
  2386. ],
  2387. [
  2388. "path" => "edit-text",
  2389. "uses" => 0,
  2390. "position" => "",
  2391. "id" => "7f1nc9pkntw0",
  2392. "componentName" => "Text",
  2393. "componentTitle" => "标题",
  2394. "ignore" => [],
  2395. "style" => "style-2",
  2396. "styleName" => "风格2",
  2397. "text" => "新人尝鲜价",
  2398. "link" => [
  2399. "name" => ""
  2400. ],
  2401. "textColor" => "#FFFFFF",
  2402. "fontSize" => 15,
  2403. "fontWeight" => "normal",
  2404. "textAlign" => "center",
  2405. "subTitle" => [
  2406. "text" => "数量有限 抢完为止",
  2407. "color" => "#FFFFFF",
  2408. "fontSize" => 12,
  2409. "control" => true,
  2410. "fontWeight" => "normal"
  2411. ],
  2412. "more" => [
  2413. "text" => "查看更多",
  2414. "control" => true,
  2415. "isShow" => false,
  2416. "link" => [
  2417. "name" => ""
  2418. ],
  2419. "color" => "#999999"
  2420. ],
  2421. 'pageStartBgColor' => '',
  2422. 'pageEndBgColor' => '',
  2423. 'pageGradientAngle' => 'to bottom',
  2424. 'componentBgUrl' => '',
  2425. 'componentBgAlpha' => 2,
  2426. "componentStartBgColor" => "rgba(255, 169, 97, 1)",
  2427. "componentEndBgColor" => "rgba(250, 61, 61, 1)",
  2428. "componentGradientAngle" => "to right",
  2429. "topRounded" => 0,
  2430. "bottomRounded" => 0,
  2431. "elementBgColor" => "",
  2432. "topElementRounded" => 0,
  2433. "bottomElementRounded" => 0,
  2434. "margin" => [
  2435. "top" => 0,
  2436. "bottom" => 0,
  2437. "both" => 10
  2438. ]
  2439. ],
  2440. [
  2441. "path" => "edit-horz-blank",
  2442. "uses" => 0,
  2443. "id" => "1o6ptkjsnabk",
  2444. "componentName" => "HorzBlank",
  2445. "componentTitle" => "辅助空白",
  2446. "ignore" => [
  2447. "pageBgColor",
  2448. "componentBgUrl"
  2449. ],
  2450. "textColor" => "#303133",
  2451. "pageStartBgColor" => "",
  2452. "pageEndBgColor" => "",
  2453. "pageGradientAngle" => "to bottom",
  2454. "componentBgUrl" => "",
  2455. "componentBgAlpha" => 2,
  2456. "componentStartBgColor" => "rgba(255, 169, 97, 1)",
  2457. "componentEndBgColor" => "rgba(250, 61, 61, 1)",
  2458. "componentGradientAngle" => "to right",
  2459. "topRounded" => 0,
  2460. "bottomRounded" => 0,
  2461. "elementBgColor" => "",
  2462. "topElementRounded" => 0,
  2463. "bottomElementRounded" => 0,
  2464. "margin" => [
  2465. "top" => 0,
  2466. "bottom" => 0,
  2467. "both" => 10
  2468. ],
  2469. "height" => 10
  2470. ],
  2471. [
  2472. "path" => "edit-mall-goods-list",
  2473. "uses" => 0,
  2474. "id" => "17uao387qdds",
  2475. "componentName" => "MallGoodsList",
  2476. "componentTitle" => "商品列表",
  2477. "ignore" => [],
  2478. "style" => "style-3",
  2479. "source" => "all",
  2480. "num" => 10,
  2481. "goods_category" => "",
  2482. "goods_category_name" => "请选择",
  2483. "goods_ids" => [],
  2484. "sortWay" => "default",
  2485. "goodsNameStyle" => [
  2486. "color" => "#303133",
  2487. "control" => true,
  2488. "fontWeight" => "normal",
  2489. "isShow" => true
  2490. ],
  2491. "priceStyle" => [
  2492. "color" => "#FF4142",
  2493. "control" => true,
  2494. "isShow" => true
  2495. ],
  2496. "saleStyle" => [
  2497. "color" => "#999999",
  2498. "control" => true,
  2499. "isShow" => true
  2500. ],
  2501. "labelStyle" => [
  2502. "control" => true,
  2503. "isShow" => true
  2504. ],
  2505. "btnStyle" => [
  2506. "fontWeight" => false,
  2507. "padding" => 0,
  2508. "aroundRadius" => 25,
  2509. "cartEvent" => "detail",
  2510. "text" => "购买",
  2511. "textColor" => "#FFFFFF",
  2512. "startBgColor" => "#FF4142",
  2513. "endBgColor" => "#FF4142",
  2514. "style" => "button",
  2515. "control" => true
  2516. ],
  2517. "imgElementRounded" => 10,// 图片圆角
  2518. "textColor" => "#303133",
  2519. 'pageStartBgColor' => '',
  2520. 'pageEndBgColor' => '',
  2521. 'pageGradientAngle' => 'to bottom',
  2522. 'componentBgUrl' => '',
  2523. 'componentBgAlpha' => 2,
  2524. "componentStartBgColor" => "rgba(255, 169, 97, 1)",
  2525. "componentEndBgColor" => "rgba(250, 61, 61, 1)",
  2526. "componentGradientAngle" => "to right",
  2527. "topRounded" => 0,
  2528. "bottomRounded" => 12,
  2529. "elementBgColor" => "",
  2530. "topElementRounded" => 10,
  2531. "bottomElementRounded" => 10,
  2532. "margin" => [
  2533. "top" => 0,
  2534. "bottom" => 9,
  2535. "both" => 10
  2536. ]
  2537. ],
  2538. [
  2539. "path" => "edit-horz-blank",
  2540. "uses" => 0,
  2541. "id" => "4z9jltfk8jc0",
  2542. "componentName" => "HorzBlank",
  2543. "componentTitle" => "辅助空白",
  2544. "ignore" => [
  2545. "pageBgColor",
  2546. "componentBgUrl"
  2547. ],
  2548. "textColor" => "#303133",
  2549. "pageStartBgColor" => "",
  2550. "pageEndBgColor" => "",
  2551. "pageGradientAngle" => "to bottom",
  2552. "componentBgUrl" => "",
  2553. "componentBgAlpha" => 2,
  2554. "componentStartBgColor" => "rgba(253, 41, 52, 1)",
  2555. "componentEndBgColor" => "",
  2556. "componentGradientAngle" => "to bottom",
  2557. "topRounded" => 12,
  2558. "bottomRounded" => 0,
  2559. "elementBgColor" => "",
  2560. "topElementRounded" => 0,
  2561. "bottomElementRounded" => 0,
  2562. "margin" => [
  2563. "top" => 5,
  2564. "bottom" => 0,
  2565. "both" => 10
  2566. ],
  2567. "height" => 10
  2568. ],
  2569. [
  2570. "path" => "edit-text",
  2571. "uses" => 0,
  2572. "position" => "",
  2573. "id" => "65qaokgbzg80",
  2574. "componentName" => "Text",
  2575. "componentTitle" => "标题",
  2576. "ignore" => [],
  2577. "style" => "style-2",
  2578. "styleName" => "风格2",
  2579. "text" => "今日疯抢",
  2580. "link" => [
  2581. "name" => ""
  2582. ],
  2583. "textColor" => "#FFFFFF",
  2584. "fontSize" => 15,
  2585. "fontWeight" => "normal",
  2586. "textAlign" => "center",
  2587. "subTitle" => [
  2588. "text" => "数量有限 抢完为止",
  2589. "color" => "#FFFFFF",
  2590. "fontSize" => 12,
  2591. "control" => true,
  2592. "fontWeight" => "normal"
  2593. ],
  2594. "more" => [
  2595. "text" => "查看更多",
  2596. "control" => true,
  2597. "isShow" => false,
  2598. "link" => [
  2599. "name" => ""
  2600. ],
  2601. "color" => "#999999"
  2602. ],
  2603. 'pageStartBgColor' => '',
  2604. 'pageEndBgColor' => '',
  2605. 'pageGradientAngle' => 'to bottom',
  2606. 'componentBgUrl' => '',
  2607. 'componentBgAlpha' => 2,
  2608. "componentStartBgColor" => "rgba(253, 41, 52, 1)",
  2609. "componentEndBgColor" => "",
  2610. "componentGradientAngle" => "to bottom",
  2611. "topRounded" => 0,
  2612. "bottomRounded" => 0,
  2613. "elementBgColor" => "",
  2614. "topElementRounded" => 0,
  2615. "bottomElementRounded" => 0,
  2616. "margin" => [
  2617. "top" => 0,
  2618. "bottom" => 0,
  2619. "both" => 10
  2620. ]
  2621. ],
  2622. [
  2623. "path" => "edit-mall-goods-list",
  2624. "uses" => 0,
  2625. "id" => "2u96wyrm79u0",
  2626. "componentName" => "MallGoodsList",
  2627. "componentTitle" => "商品列表",
  2628. "ignore" => [],
  2629. "style" => "style-1",
  2630. "source" => "all",
  2631. "num" => 10,
  2632. "goods_category" => "",
  2633. "goods_category_name" => "请选择",
  2634. "goods_ids" => [],
  2635. "sortWay" => "default",
  2636. "goodsNameStyle" => [
  2637. "color" => "#303133",
  2638. "control" => true,
  2639. "fontWeight" => "normal",
  2640. "isShow" => true
  2641. ],
  2642. "priceStyle" => [
  2643. "color" => "#FF4142",
  2644. "control" => true,
  2645. "isShow" => true
  2646. ],
  2647. "saleStyle" => [
  2648. "color" => "#999999",
  2649. "control" => true,
  2650. "isShow" => true
  2651. ],
  2652. "labelStyle" => [
  2653. "control" => true,
  2654. "isShow" => true
  2655. ],
  2656. "btnStyle" => [
  2657. "fontWeight" => false,
  2658. "padding" => 0,
  2659. "aroundRadius" => 25,
  2660. "cartEvent" => "detail",
  2661. "text" => "购买",
  2662. "textColor" => "#FFFFFF",
  2663. "startBgColor" => "#FF4142",
  2664. "endBgColor" => "#FF4142",
  2665. "style" => "button",
  2666. "control" => true
  2667. ],
  2668. "imgElementRounded" => 10,// 图片圆角
  2669. "textColor" => "#303133",
  2670. 'pageStartBgColor' => '',
  2671. 'pageEndBgColor' => '',
  2672. 'pageGradientAngle' => 'to bottom',
  2673. 'componentBgUrl' => '',
  2674. 'componentBgAlpha' => 2,
  2675. "componentStartBgColor" => "",
  2676. "componentEndBgColor" => "",
  2677. "componentGradientAngle" => "to bottom",
  2678. "topRounded" => 0,
  2679. "bottomRounded" => 12,
  2680. "elementBgColor" => "",
  2681. "topElementRounded" => 10,
  2682. "bottomElementRounded" => 10,
  2683. "margin" => [
  2684. "top" => 0,
  2685. "bottom" => 5,
  2686. "both" => 10
  2687. ]
  2688. ],
  2689. [
  2690. "path" => "edit-text",
  2691. "uses" => 0,
  2692. "position" => "",
  2693. "id" => "5izyn9jcz3k0",
  2694. "componentName" => "Text",
  2695. "componentTitle" => "标题",
  2696. "ignore" => [],
  2697. "style" => "style-1",
  2698. "styleName" => "风格1",
  2699. "text" => "精选推荐",
  2700. "link" => [
  2701. "name" => ""
  2702. ],
  2703. "textColor" => "#303133",
  2704. "fontSize" => 15,
  2705. "fontWeight" => "normal",
  2706. "textAlign" => "center",
  2707. "subTitle" => [
  2708. "text" => "副标题",
  2709. "color" => "#999999",
  2710. "fontSize" => 14,
  2711. "control" => false,
  2712. "fontWeight" => "normal"
  2713. ],
  2714. "more" => [
  2715. "text" => "查看更多",
  2716. "control" => false,
  2717. "isShow" => true,
  2718. "link" => [
  2719. "name" => ""
  2720. ],
  2721. "color" => "#999999"
  2722. ],
  2723. 'pageStartBgColor' => '',
  2724. 'pageEndBgColor' => '',
  2725. 'pageGradientAngle' => 'to bottom',
  2726. 'componentBgUrl' => '',
  2727. 'componentBgAlpha' => 2,
  2728. "componentStartBgColor" => "",
  2729. "componentEndBgColor" => "",
  2730. "componentGradientAngle" => "to bottom",
  2731. "topRounded" => 0,
  2732. "bottomRounded" => 0,
  2733. "elementBgColor" => "",
  2734. "topElementRounded" => 0,
  2735. "bottomElementRounded" => 0,
  2736. "margin" => [
  2737. "top" => 20,
  2738. "bottom" => 15,
  2739. "both" => 0
  2740. ]
  2741. ],
  2742. [
  2743. "path" => "edit-mall-goods-list",
  2744. "uses" => 0,
  2745. "id" => "4y7mw7j2uko0",
  2746. "componentName" => "MallGoodsList",
  2747. "componentTitle" => "商品列表",
  2748. "ignore" => [],
  2749. "style" => "style-2",
  2750. "source" => "all",
  2751. "num" => 10,
  2752. "goods_category" => "",
  2753. "goods_category_name" => "请选择",
  2754. "goods_ids" => [],
  2755. "sortWay" => "default",
  2756. "goodsNameStyle" => [
  2757. "color" => "#303133",
  2758. "control" => true,
  2759. "fontWeight" => "normal",
  2760. "isShow" => true
  2761. ],
  2762. "priceStyle" => [
  2763. "color" => "#FF4142",
  2764. "control" => true,
  2765. "isShow" => true
  2766. ],
  2767. "saleStyle" => [
  2768. "color" => "#999999",
  2769. "control" => true,
  2770. "isShow" => true
  2771. ],
  2772. "labelStyle" => [
  2773. "control" => true,
  2774. "isShow" => true
  2775. ],
  2776. "btnStyle" => [
  2777. "fontWeight" => false,
  2778. "padding" => 0,
  2779. "aroundRadius" => 25,
  2780. "cartEvent" => "detail",
  2781. "text" => "购买",
  2782. "textColor" => "#FFFFFF",
  2783. "startBgColor" => "#FF4142",
  2784. "endBgColor" => "#FF4142",
  2785. "style" => "button",
  2786. "control" => true
  2787. ],
  2788. "imgElementRounded" => 12,// 图片圆角
  2789. "textColor" => "#303133",
  2790. 'pageStartBgColor' => '',
  2791. 'pageEndBgColor' => '',
  2792. 'pageGradientAngle' => 'to bottom',
  2793. 'componentBgUrl' => '',
  2794. 'componentBgAlpha' => 2,
  2795. "componentStartBgColor" => "",
  2796. "componentEndBgColor" => "",
  2797. "componentGradientAngle" => "to bottom",
  2798. "topRounded" => 12,
  2799. "bottomRounded" => 12,
  2800. "elementBgColor" => "",
  2801. "topElementRounded" => 12,
  2802. "bottomElementRounded" => 12,
  2803. "margin" => [
  2804. "top" => 5,
  2805. "bottom" => 5,
  2806. "both" => 10
  2807. ]
  2808. ],
  2809. [
  2810. "path" => "edit-mall-many-goods-list",
  2811. "uses" => 0,
  2812. "id" => "65lv65b38ig0",
  2813. "componentName" => "MallManyGoodsList",
  2814. "componentTitle" => "多商品组",
  2815. "ignore" => [ 'componentBgUrl' ],
  2816. "style" => "style-2",
  2817. "num" => 6,
  2818. "sortWay" => "default",
  2819. "headStyle" => "style-2",
  2820. "aroundRadius" => 25,
  2821. "source" => "custom",
  2822. "goodsNameStyle" => [
  2823. "color" => "#303133",
  2824. "control" => true,
  2825. "fontWeight" => "normal",
  2826. "isShow" => true
  2827. ],
  2828. "priceStyle" => [
  2829. "color" => "#FF4142",
  2830. "control" => true,
  2831. "isShow" => true
  2832. ],
  2833. "saleStyle" => [
  2834. "color" => "#999999",
  2835. "control" => true,
  2836. "isShow" => true
  2837. ],
  2838. "labelStyle" => [
  2839. "control" => true,
  2840. "isShow" => true
  2841. ],
  2842. "imgElementRounded" => 12, // 图片圆角
  2843. "btnStyle" => [
  2844. "fontWeight" => false,
  2845. "padding" => 0,
  2846. "aroundRadius" => 25,
  2847. "cartEvent" => "detail",
  2848. "text" => "购买",
  2849. "textColor" => "#FFFFFF",
  2850. "startBgColor" => "#FF4142",
  2851. "endBgColor" => "#FF4142",
  2852. "style" => "button",
  2853. "control" => true
  2854. ],
  2855. "list" => [
  2856. [
  2857. "title" => "推荐",
  2858. "desc" => "猜你喜欢",
  2859. "source" => "all",
  2860. "goods_category" => "",
  2861. "goods_category_name" => "请选择",
  2862. "goods_ids" => [],
  2863. "id" => "2iljdx2ajqg0"
  2864. ],
  2865. [
  2866. "id" => "3a1x4kgbre40",
  2867. "title" => "衣鞋包饰",
  2868. "desc" => "分类描述",
  2869. "source" => "all",
  2870. "goods_category" => "",
  2871. "goods_category_name" => "请选择",
  2872. "goods_ids" => []
  2873. ],
  2874. [
  2875. "id" => "12ozjal2rfe8",
  2876. "title" => "居家百货",
  2877. "desc" => "分类描述",
  2878. "source" => "all",
  2879. "goods_category" => "",
  2880. "goods_category_name" => "请选择",
  2881. "goods_ids" => []
  2882. ],
  2883. [
  2884. "id" => "71kwrfxeoxw0",
  2885. "title" => "热卖好物",
  2886. "desc" => "分类描述",
  2887. "source" => "all",
  2888. "goods_category" => "",
  2889. "goods_category_name" => "请选择",
  2890. "goods_ids" => []
  2891. ],
  2892. [
  2893. "id" => "5tktk8897ag0",
  2894. "title" => "优品精选",
  2895. "desc" => "分类描述",
  2896. "source" => "all",
  2897. "goods_category" => "",
  2898. "goods_category_name" => "请选择",
  2899. "goods_ids" => []
  2900. ]
  2901. ],
  2902. "textColor" => "#303133",
  2903. 'pageStartBgColor' => '',
  2904. 'pageEndBgColor' => '',
  2905. 'pageGradientAngle' => 'to bottom',
  2906. 'componentBgUrl' => '',
  2907. 'componentBgAlpha' => 2,
  2908. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  2909. "componentEndBgColor" => "",
  2910. "componentGradientAngle" => "to bottom",
  2911. "topRounded" => 12,
  2912. "bottomRounded" => 12,
  2913. "elementBgColor" => "",
  2914. "topElementRounded" => 12,
  2915. "bottomElementRounded" => 12,
  2916. "margin" => [
  2917. "top" => 10,
  2918. "bottom" => 10,
  2919. "both" => 10
  2920. ]
  2921. ]
  2922. ]
  2923. ]
  2924. ],
  2925. ],
  2926. 'DIY_MEMBER_INDEX' => [
  2927. 'mall_member_index_style1' => [
  2928. 'title' => '商城个人中心1', // 页面名称
  2929. 'cover' => 'addon/mall/diy/template/member_index_cover.png', // 页面封面图
  2930. 'preview' => '', // 页面预览图
  2931. 'desc' => '个人中心', // 页面描述
  2932. 'mode' => 'diy', // 页面模式:diy:自定义,fixed:固定
  2933. 'data' => [
  2934. "global" => [
  2935. "title" => "个人中心",
  2936. "bgUrl" => "",
  2937. "imgWidth" => "",
  2938. "imgHeight" => "",
  2939. "bottomTabBarSwitch" => true,
  2940. "template" => [
  2941. "textColor" => "#303133",
  2942. "componentStartBgColor" => "",
  2943. "componentEndBgColor" => "",
  2944. "topRounded" => 0,
  2945. "bottomRounded" => 0,
  2946. "elementBgColor" => "",
  2947. "topElementRounded" => 0,
  2948. "bottomElementRounded" => 0,
  2949. "margin" => [
  2950. "top" => 0,
  2951. "bottom" => 0,
  2952. "both" => 0
  2953. ],
  2954. "pageStartBgColor" => "",
  2955. "pageEndBgColor" => "",
  2956. "pageGradientAngle" => "to bottom",
  2957. "componentBgUrl" => "",
  2958. "componentBgAlpha" => 2,
  2959. "componentGradientAngle" => "to bottom"
  2960. ],
  2961. "topStatusBar" => [
  2962. 'isShow' => true,
  2963. 'bgColor' => "#ffffff",
  2964. 'rollBgColor' => "#ffffff",
  2965. 'style' => 'style-1',
  2966. 'styleName' => '风格1',
  2967. 'textColor' => "#333333",
  2968. 'rollTextColor' => "#333333",
  2969. 'textAlign' => 'center',
  2970. 'inputPlaceholder' => '请输入搜索关键词',
  2971. 'imgUrl' => '',
  2972. 'link' => [
  2973. 'name' => ""
  2974. ]
  2975. ],
  2976. "popWindow" => [
  2977. "imgUrl" => "",
  2978. "imgWidth" => "",
  2979. "imgHeight" => "",
  2980. "count" => -1,
  2981. "show" => 0,
  2982. "link" => [
  2983. "name" => ""
  2984. ]
  2985. ],
  2986. "pageStartBgColor" => "rgba(246, 246, 246, 1)",
  2987. "pageEndBgColor" => "",
  2988. "pageGradientAngle" => "to bottom",
  2989. "bgHeightScale" => 0
  2990. ],
  2991. "value" => [
  2992. [
  2993. "path" => "edit-mall-member-info",
  2994. "id" => "3pt9pn9bvn20",
  2995. "componentName" => "MallMemberInfo",
  2996. "componentTitle" => "会员信息",
  2997. "uses" => 1,
  2998. "ignore" => [
  2999. "componentBgUrl"
  3000. ],
  3001. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  3002. "componentEndBgColor" => "rgba(246, 246, 246, 0.1)",
  3003. "topRounded" => 0,
  3004. "bottomRounded" => 0,
  3005. "elementBgColor" => "",
  3006. "topElementRounded" => 0,
  3007. "bottomElementRounded" => 0,
  3008. "margin" => [
  3009. "top" => 0,
  3010. "bottom" => 0,
  3011. "both" => 0
  3012. ],
  3013. "textColor" => "#333333",
  3014. "uidTextColor" => "#666666",
  3015. 'accountTextColor' => '#666666',
  3016. "pageStartBgColor" => "",
  3017. "pageEndBgColor" => "",
  3018. "pageGradientAngle" => "to bottom",
  3019. "componentBgUrl" => "",
  3020. "componentBgAlpha" => 2,
  3021. "componentGradientAngle" => "to bottom",
  3022. "style" => "style-1",
  3023. "styleName" => "风格1",
  3024. "bgUrl" => "",
  3025. "isShowAccount" => true
  3026. ],
  3027. [
  3028. "path" => "edit-member-level",
  3029. "uses" => 1,
  3030. "id" => "533e6ynytmo0",
  3031. "componentName" => "MemberLevel",
  3032. "componentTitle" => "会员等级",
  3033. "ignore" => [
  3034. "componentBgColor",
  3035. "componentBgUrl"
  3036. ],
  3037. "style" => "style-5",
  3038. "styleName" => "风格5",
  3039. "textColor" => "#303133",
  3040. "componentStartBgColor" => "",
  3041. "componentEndBgColor" => "",
  3042. "topRounded" => 12,
  3043. "bottomRounded" => 12,
  3044. "elementBgColor" => "",
  3045. "topElementRounded" => 0,
  3046. "bottomElementRounded" => 0,
  3047. "margin" => [
  3048. "top" => -45,
  3049. "bottom" => 0,
  3050. "both" => 10
  3051. ],
  3052. "pageStartBgColor" => "",
  3053. "pageEndBgColor" => "",
  3054. "pageGradientAngle" => "to bottom",
  3055. "componentBgUrl" => "",
  3056. "componentBgAlpha" => 2,
  3057. "componentGradientAngle" => "to bottom"
  3058. ],
  3059. [
  3060. "path" => "edit-mall-order-info",
  3061. "uses" => 1,
  3062. "id" => "2jmnqqhc8ri0",
  3063. "componentName" => "MallOrderInfo",
  3064. "componentTitle" => "订单中心",
  3065. "ignore" => [],
  3066. "textColor" => "#303133",
  3067. "fontSize" => 15,
  3068. "fontWeight" => "normal",
  3069. "text" => "订单中心",
  3070. "more" => [
  3071. "text" => "全部订单",
  3072. "color" => "#999999",
  3073. ],
  3074. "item" => [
  3075. "fontSize" => 12,
  3076. "fontWeight" => "normal",
  3077. "color" => "#303133"
  3078. ],
  3079. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  3080. "componentEndBgColor" => "",
  3081. "topRounded" => 8,
  3082. "bottomRounded" => 8,
  3083. "elementBgColor" => "",
  3084. "topElementRounded" => 0,
  3085. "bottomElementRounded" => 0,
  3086. "margin" => [
  3087. "top" => 10,
  3088. "bottom" => 0,
  3089. "both" => 10
  3090. ],
  3091. "pageStartBgColor" => "",
  3092. "pageEndBgColor" => "",
  3093. "pageGradientAngle" => "to bottom",
  3094. "componentBgUrl" => "",
  3095. "componentBgAlpha" => 2,
  3096. "componentGradientAngle" => "to bottom"
  3097. ],
  3098. [
  3099. "path" => "edit-horz-blank",
  3100. "uses" => 0,
  3101. "id" => "6cil3ipiis40",
  3102. "componentName" => "HorzBlank",
  3103. "componentTitle" => "辅助空白",
  3104. "ignore" => ['pageBgColor','componentBgUrl'],
  3105. "height" => 15,
  3106. "textColor" => "#303133",
  3107. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  3108. "componentEndBgColor" => "",
  3109. "topRounded" => 12,
  3110. "bottomRounded" => 0,
  3111. "elementBgColor" => "",
  3112. "topElementRounded" => 0,
  3113. "bottomElementRounded" => 0,
  3114. "margin" => [
  3115. "top" => 10,
  3116. "bottom" => 0,
  3117. "both" => 10
  3118. ],
  3119. "pageStartBgColor" => "",
  3120. "pageEndBgColor" => "",
  3121. "pageGradientAngle" => "to bottom",
  3122. "componentBgUrl" => "",
  3123. "componentBgAlpha" => 2,
  3124. "componentGradientAngle" => "to bottom"
  3125. ],
  3126. [
  3127. "path" => "edit-text",
  3128. "uses" => 0,
  3129. "id" => "68gnubbygqg0",
  3130. "componentName" => "Text",
  3131. "componentTitle" => "标题",
  3132. "ignore" => [],
  3133. "textColor" => "#303133",
  3134. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  3135. "componentEndBgColor" => "",
  3136. "topRounded" => 0,
  3137. "bottomRounded" => 0,
  3138. "elementBgColor" => "",
  3139. "topElementRounded" => 0,
  3140. "bottomElementRounded" => 0,
  3141. "margin" => [
  3142. "top" => 0,
  3143. "bottom" => 0,
  3144. "both" => 10
  3145. ],
  3146. "fontSize" => 15,
  3147. "fontWeight" => "400",
  3148. "pageStartBgColor" => "",
  3149. "pageEndBgColor" => "",
  3150. "pageGradientAngle" => "to bottom",
  3151. "componentBgUrl" => "",
  3152. "componentBgAlpha" => 2,
  3153. "componentGradientAngle" => "to bottom",
  3154. "position" => "",
  3155. "style" => "style-1",
  3156. "styleName" => "风格1",
  3157. "text" => "其他功能",
  3158. "link" => [
  3159. "name" => ""
  3160. ],
  3161. "textAlign" => "left",
  3162. "subTitle" => [
  3163. "text" => "副标题",
  3164. "color" => "#999999",
  3165. "fontSize" => 14,
  3166. "control" => false,
  3167. "fontWeight" => "normal"
  3168. ],
  3169. "more" => [
  3170. "text" => "查看更多",
  3171. "control" => false,
  3172. "isShow" => true,
  3173. "link" => [
  3174. "name" => ""
  3175. ],
  3176. "color" => "#999999"
  3177. ]
  3178. ],
  3179. [
  3180. "path" => "edit-horz-blank",
  3181. "uses" => 0,
  3182. "id" => "5jx57rrjl940",
  3183. "componentName" => "HorzBlank",
  3184. "componentTitle" => "辅助空白",
  3185. "ignore" => ['pageBgColor','componentBgUrl'],
  3186. "height" => 8,
  3187. "textColor" => "#303133",
  3188. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  3189. "componentEndBgColor" => "",
  3190. "topRounded" => 0,
  3191. "bottomRounded" => 0,
  3192. "elementBgColor" => "",
  3193. "topElementRounded" => 0,
  3194. "bottomElementRounded" => 0,
  3195. "margin" => [
  3196. "top" => 0,
  3197. "bottom" => 0,
  3198. "both" => 10
  3199. ],
  3200. "pageStartBgColor" => "",
  3201. "pageEndBgColor" => "",
  3202. "pageGradientAngle" => "to bottom",
  3203. "componentBgUrl" => "",
  3204. "componentBgAlpha" => 2,
  3205. "componentGradientAngle" => "to bottom"
  3206. ],
  3207. [
  3208. "path" => "edit-graphic-nav",
  3209. "uses" => 0,
  3210. "id" => "5myxk1opz0c0",
  3211. "componentName" => "GraphicNav",
  3212. "componentTitle" => "图文导航",
  3213. "ignore" => [],
  3214. "textColor" => "#303133",
  3215. "componentStartBgColor" => "rgba(255, 255, 255, 1)",
  3216. "componentEndBgColor" => "",
  3217. "topRounded" => 0,
  3218. "bottomRounded" => 8,
  3219. "elementBgColor" => "",
  3220. "topElementRounded" => 0,
  3221. "bottomElementRounded" => 0,
  3222. "margin" => [
  3223. "top" => 0,
  3224. "bottom" => 0,
  3225. "both" => 10
  3226. ],
  3227. "pageStartBgColor" => "",
  3228. "pageEndBgColor" => "",
  3229. "pageGradientAngle" => "to bottom",
  3230. "componentBgUrl" => "",
  3231. "componentBgAlpha" => 2,
  3232. "componentGradientAngle" => "to bottom",
  3233. "layout" => "horizontal",
  3234. "mode" => "graphic",
  3235. "showStyle" => "fixed",
  3236. "rowCount" => 4,
  3237. "pageCount" => 2,
  3238. "carousel" => [
  3239. "type" => "circle",
  3240. "color" => "#FFFFFF"
  3241. ],
  3242. "imageSize" => 20,
  3243. "aroundRadius" => 0,
  3244. "font" => [
  3245. "size" => 12,
  3246. "weight" => "normal",
  3247. "color" => "#303133"
  3248. ],
  3249. "list" => [
  3250. [
  3251. "id" => "49kxbgr5lwue",
  3252. "title" => "签到",
  3253. "imageUrl" => "addon/mall/diy/member/style1/nav_sign_in.png",
  3254. "imgWidth" => 88,
  3255. "imgHeight" => 88,
  3256. "link" => [
  3257. "name" => "MEMBER_MY_SIGN_IN",
  3258. "parent" => "MEMBER_LINK",
  3259. "title" => "我的签到",
  3260. "url" => "/app/pages/member/sign_in",
  3261. "action" => ""
  3262. ],
  3263. "label" => [
  3264. "control" => false,
  3265. "text" => "热门",
  3266. "textColor" => "#FFFFFF",
  3267. "bgColorStart" => "#F83287",
  3268. "bgColorEnd" => "#FE3423"
  3269. ]
  3270. ],
  3271. [
  3272. "title" => "我的余额",
  3273. "link" => [
  3274. "parent" => "MEMBER_LINK",
  3275. "name" => "MEMBER_BALANCE",
  3276. "title" => "我的余额",
  3277. "url" => "/app/pages/member/balance",
  3278. "action" => ""
  3279. ],
  3280. "imageUrl" => "addon/mall/diy/member/style1/nav_balance.png",
  3281. "label" => [
  3282. "control" => false,
  3283. "text" => "热门",
  3284. "textColor" => "#FFFFFF",
  3285. "bgColorStart" => "#F83287",
  3286. "bgColorEnd" => "#FE3423"
  3287. ],
  3288. "id" => "2aqy33banse8",
  3289. "imgWidth" => 88,
  3290. "imgHeight" => 88
  3291. ],
  3292. [
  3293. "title" => "地址管理",
  3294. "link" => [
  3295. "parent" => "MEMBER_LINK",
  3296. "name" => "MEMBER_ADDRESS",
  3297. "title" => "收货地址",
  3298. "url" => "/app/pages/member/address",
  3299. "action" => ""
  3300. ],
  3301. "imageUrl" => "addon/mall/diy/member/style1/nav_address.png",
  3302. "label" => [
  3303. "control" => false,
  3304. "text" => "热门",
  3305. "textColor" => "#FFFFFF",
  3306. "bgColorStart" => "#F83287",
  3307. "bgColorEnd" => "#FE3423"
  3308. ],
  3309. "id" => "hdk4145zk40",
  3310. "imgWidth" => 88,
  3311. "imgHeight" => 88
  3312. ],
  3313. [
  3314. "title" => "优惠券",
  3315. "link" => [
  3316. "parent" => "MALL_LINK",
  3317. "name" => "MALL_MY_COUPON",
  3318. "title" => "我的优惠券",
  3319. "url" => "/addon/mall/pages/member/my_coupon",
  3320. "action" => ""
  3321. ],
  3322. "imageUrl" => "addon/mall/diy/member/style1/nav_coupon.png",
  3323. "label" => [
  3324. "control" => false,
  3325. "text" => "热门",
  3326. "textColor" => "#FFFFFF",
  3327. "bgColorStart" => "#F83287",
  3328. "bgColorEnd" => "#FE3423"
  3329. ],
  3330. "id" => "34t5xg9ik0i0",
  3331. "imgWidth" => 88,
  3332. "imgHeight" => 88
  3333. ],
  3334. [
  3335. "id" => "7dpefp0s9ew0",
  3336. "title" => "我的推广",
  3337. "imageUrl" => "addon/mall/diy/member/style1/nav_promote.png",
  3338. "imgWidth" => 88,
  3339. "imgHeight" => 88,
  3340. "link" => [
  3341. "name" => ""
  3342. ],
  3343. "label" => [
  3344. "control" => false,
  3345. "text" => "热门",
  3346. "textColor" => "#FFFFFF",
  3347. "bgColorStart" => "#F83287",
  3348. "bgColorEnd" => "#FE3423"
  3349. ]
  3350. ],
  3351. [
  3352. "id" => "78k8bgr4lipw",
  3353. "title" => "发票管理",
  3354. "imageUrl" => "addon/mall/diy/member/style1/nav_invoice.png",
  3355. "imgWidth" => 88,
  3356. "imgHeight" => 88,
  3357. "link" => [
  3358. "name" => "MALL_INVOICE",
  3359. "parent" => "MALL_LINK",
  3360. "title" => "发票管理",
  3361. 'url' => '/addon/mall/pages/invoice/list',
  3362. "action" => ""
  3363. ],
  3364. "label" => [
  3365. "control" => false,
  3366. "text" => "热门",
  3367. "textColor" => "#FFFFFF",
  3368. "bgColorStart" => "#F83287",
  3369. "bgColorEnd" => "#FE3423"
  3370. ]
  3371. ],
  3372. [
  3373. "id" => "78kxbgr4lipw",
  3374. "title" => "核销台",
  3375. "imageUrl" => "addon/mall/diy/member/style1/nav_verify_index.png",
  3376. "imgWidth" => 88,
  3377. "imgHeight" => 88,
  3378. "link" => [
  3379. "name" => "MEMBER_VERIFY_INDEX",
  3380. "parent" => "MEMBER_LINK",
  3381. "title" => "核销台",
  3382. 'url' => '/app/pages/verify/index',
  3383. "action" => ""
  3384. ],
  3385. "label" => [
  3386. "control" => false,
  3387. "text" => "热门",
  3388. "textColor" => "#FFFFFF",
  3389. "bgColorStart" => "#F83287",
  3390. "bgColorEnd" => "#FE3423"
  3391. ]
  3392. ],
  3393. [
  3394. "id" => "4o2q7yss59m0",
  3395. "title" => "我的等级",
  3396. "imageUrl" => "addon/mall/diy/member/style1/nav_my_level.png",
  3397. "imgWidth" => 88,
  3398. "imgHeight" => 88,
  3399. "link" => [
  3400. "name" => "MEMBER_MY_LEVEL",
  3401. "parent" => "MEMBER_LINK",
  3402. "title" => "会员等级",
  3403. "url" => "/app/pages/member/level",
  3404. "action" => ""
  3405. ],
  3406. "label" => [
  3407. "control" => false,
  3408. "text" => "热门",
  3409. "textColor" => "#FFFFFF",
  3410. "bgColorStart" => "#F83287",
  3411. "bgColorEnd" => "#FE3423"
  3412. ]
  3413. ],
  3414. [
  3415. "id" => "78fnsh8cx5k0",
  3416. "title" => "我的收藏",
  3417. "imageUrl" => "addon/mall/diy/member/style1/nav_collect.png",
  3418. "imgWidth" => 88,
  3419. "imgHeight" => 88,
  3420. "link" => [
  3421. "name" => "MALL_COLLECT",
  3422. "parent" => "MALL_LINK",
  3423. "title" => "我的收藏",
  3424. "url" => "/addon/mall/pages/collect/goods",
  3425. "action" => ""
  3426. ],
  3427. "label" => [
  3428. "control" => false,
  3429. "text" => "热门",
  3430. "textColor" => "#FFFFFF",
  3431. "bgColorStart" => "#F83287",
  3432. "bgColorEnd" => "#FE3423"
  3433. ]
  3434. ],
  3435. [
  3436. "id" => "27kxbgr5ljbw",
  3437. "title" => "我的足迹",
  3438. "imageUrl" => "addon/mall/diy/member/style1/nav_footmark.png",
  3439. "imgWidth" => 88,
  3440. "imgHeight" => 88,
  3441. "link" => [
  3442. "name" => "MALL_BROWSE",
  3443. "parent" => "MALL_LINK",
  3444. "title" => "我的足迹",
  3445. "url" => "/addon/mall/pages/member/browse",
  3446. "action" => ""
  3447. ],
  3448. "label" => [
  3449. "control" => false,
  3450. "text" => "热门",
  3451. "textColor" => "#FFFFFF",
  3452. "bgColorStart" => "#F83287",
  3453. "bgColorEnd" => "#FE3423"
  3454. ]
  3455. ],
  3456. [
  3457. "id" => "x3k0l0h2d4m4",
  3458. "title" => "商户入驻",
  3459. "imageUrl" => "addon/mall/diy/member/style1/nav_shop_apply.png",
  3460. "imgWidth" => 88,
  3461. "imgHeight" => 88,
  3462. "link" => [
  3463. 'name' => 'MALL_SHOP_APPLY',
  3464. 'parent' => 'MALL_LINK',
  3465. 'title' => '申请入驻',
  3466. 'url' => '/addon/mall/pages/member/merchant_settled',
  3467. 'action' => ''
  3468. ],
  3469. "label" => [
  3470. "control" => false,
  3471. "text" => "热门",
  3472. "textColor" => "#FFFFFF",
  3473. "bgColorStart" => "#F83287",
  3474. "bgColorEnd" => "#FE3423"
  3475. ]
  3476. ],
  3477. ]
  3478. ]
  3479. ]
  3480. ]
  3481. ]
  3482. ],
  3483. 'DIY_SITE_INDEX' => [
  3484. 'mall_site_index_style2' => [
  3485. 'title' => '店铺首页', // 页面名称
  3486. 'cover' => '', // 页面封面图
  3487. 'preview' => '', // 页面预览图
  3488. 'desc' => '', // 页面描述
  3489. 'mode' => 'diy', // 页面模式:diy:自定义,fixed:固定
  3490. // 页面数据源
  3491. 'data' => [
  3492. "global" => [
  3493. "title" => "商家首页",
  3494. "pageStartBgColor" => "",
  3495. "pageEndBgColor" => "",
  3496. "pageGradientAngle" => "to bottom",
  3497. "bgUrl" => "",
  3498. "bgHeightScale" => 100,
  3499. "imgWidth" => "",
  3500. "imgHeight" => "",
  3501. "topStatusBar" => [
  3502. "isShow" => true,
  3503. "bgColor" => "#ffffff",
  3504. "isTransparent" => false,
  3505. "style" => "style-1",
  3506. "styleName" => "风格1",
  3507. "textColor" => "#333333",
  3508. "textAlign" => "center",
  3509. "inputPlaceholder" => "请输入搜索关键词",
  3510. "imgUrl" => "",
  3511. "link" => [
  3512. "name" => ""
  3513. ]
  3514. ],
  3515. "bottomTabBarSwitch" => true,
  3516. "popWindow" => [
  3517. "imgUrl" => "",
  3518. "imgWidth" => "",
  3519. "imgHeight" => "",
  3520. "count" => -1,
  3521. "show" => 0,
  3522. "link" => [
  3523. "name" => ""
  3524. ]
  3525. ],
  3526. "template" => [
  3527. "textColor" => "#303133",
  3528. "pageStartBgColor" => "",
  3529. "pageEndBgColor" => "",
  3530. "pageGradientAngle" => "to bottom",
  3531. "componentBgUrl" => "",
  3532. "componentBgAlpha" => 2,
  3533. "componentStartBgColor" => "",
  3534. "componentEndBgColor" => "",
  3535. "componentGradientAngle" => "to bottom",
  3536. "topRounded" => 0,
  3537. "bottomRounded" => 0,
  3538. "elementBgColor" => "",
  3539. "topElementRounded" => 0,
  3540. "bottomElementRounded" => 0,
  3541. "margin" => [
  3542. "top" => 0,
  3543. "bottom" => 0,
  3544. "both" => 0
  3545. ]
  3546. ]
  3547. ],
  3548. "value" => [
  3549. [
  3550. "path" => "edit-mall-shop-info",
  3551. "uses" => 1,
  3552. "position" => "top_fixed",
  3553. "id" => "27ge9umz4k2s",
  3554. "componentName" => "MallShopInfo",
  3555. "componentTitle" => "商家信息",
  3556. "ignore" => [
  3557. "componentBgColor",
  3558. "componentBgUrl",
  3559. "marginTop",
  3560. "marginBottom",
  3561. "topRounded",
  3562. "bottomRounded",
  3563. "pageBgColor",
  3564. "marginBoth"
  3565. ],
  3566. "positionWay" => "static",
  3567. "fixedBgColor" => "",
  3568. "bgGradient" => false,
  3569. "bgImg" => "/addon/mall/diy/site_index/style2/header_bg.jpg",
  3570. "bgOpacity" => 80,
  3571. "search" => [
  3572. "text" => "请输入搜索关键词",
  3573. "link" => [
  3574. "name" => ""
  3575. ],
  3576. "hotWord" => [
  3577. "interval" => 3,
  3578. "list" => []
  3579. ],
  3580. "color" => "#ffffff",
  3581. "btnColor" => "#EF000C",
  3582. "bgColor" => "rgba(255, 255, 255, 0.2)",
  3583. "btnBgColor" => "#ffffff"
  3584. ],
  3585. "tab" => [
  3586. "control" => true,
  3587. "noColor" => "#ffffff",
  3588. "selectColor" => "#EF000C ",
  3589. "noBgColor" => "transparent",
  3590. "selectBgColor" => "#ffffff",
  3591. "list" => [
  3592. [
  3593. "text" => "新品",
  3594. "source" => "diy_page",
  3595. "diy_id" => "",
  3596. "diy_title" => ""
  3597. ],
  3598. [
  3599. "text" => "热卖",
  3600. "source" => "diy_page",
  3601. "diy_id" => "",
  3602. "diy_title" => ""
  3603. ],
  3604. [
  3605. "text" => "领券",
  3606. "source" => "diy_page",
  3607. "diy_id" => "",
  3608. "diy_title" => ""
  3609. ]
  3610. ]
  3611. ],
  3612. "shop" => [
  3613. "textColor" => "#ffffff"
  3614. ],
  3615. "textColor" => "#303133",
  3616. "pageStartBgColor" => "",
  3617. "pageEndBgColor" => "",
  3618. "pageGradientAngle" => "to bottom",
  3619. "componentBgUrl" => "",
  3620. "componentBgAlpha" => 2,
  3621. "componentStartBgColor" => "",
  3622. "componentEndBgColor" => "",
  3623. "componentGradientAngle" => "to bottom",
  3624. "topRounded" => 0,
  3625. "bottomRounded" => 0,
  3626. "elementBgColor" => "",
  3627. "topElementRounded" => 0,
  3628. "bottomElementRounded" => 0,
  3629. "margin" => [
  3630. "top" => 0,
  3631. "bottom" => 0,
  3632. "both" => 0
  3633. ]
  3634. ],
  3635. [
  3636. "path" => "edit-image-ads",
  3637. "uses" => 0,
  3638. "id" => "5u0a3bgovrk0",
  3639. "componentName" => "ImageAds",
  3640. "componentTitle" => "图片广告",
  3641. "ignore" => [
  3642. "componentBgUrl"
  3643. ],
  3644. "imageHeight" => 475,
  3645. "isSameScreen" => false,
  3646. "list" => [
  3647. [
  3648. "link" => [
  3649. "name" => ""
  3650. ],
  3651. "imageUrl" => "/addon/mall/diy/site_index/style2/banner_01.jpg",
  3652. "imgWidth" => 710,
  3653. "imgHeight" => 900,
  3654. "id" => "304artzi99a0",
  3655. "width" => 375,
  3656. "height" => 475.3521126760564
  3657. ]
  3658. ],
  3659. "textColor" => "#303133",
  3660. "pageStartBgColor" => "#f6f6f6",
  3661. "pageEndBgColor" => "",
  3662. "pageGradientAngle" => "to bottom",
  3663. "componentBgUrl" => "",
  3664. "componentBgAlpha" => 2,
  3665. "componentStartBgColor" => "",
  3666. "componentEndBgColor" => "",
  3667. "componentGradientAngle" => "to bottom",
  3668. "topRounded" => 12,
  3669. "bottomRounded" => 12,
  3670. "elementBgColor" => "",
  3671. "topElementRounded" => 0,
  3672. "bottomElementRounded" => 0,
  3673. "margin" => [
  3674. "top" => -14,
  3675. "bottom" => 10,
  3676. "both" => 10
  3677. ]
  3678. ],
  3679. [
  3680. "path" => "edit-hot-area",
  3681. "uses" => 0,
  3682. "id" => "15mcdpx0uqlc",
  3683. "componentName" => "HotArea",
  3684. "componentTitle" => "热区",
  3685. "ignore" => [
  3686. "componentBgUrl"
  3687. ],
  3688. "imageUrl" => "/addon/mall/diy/site_index/style2/category.jpg",
  3689. "imgWidth" => 710,
  3690. "imgHeight" => 224,
  3691. "heatMapData" => [],
  3692. "textColor" => "#303133",
  3693. "pageStartBgColor" => "",
  3694. "pageEndBgColor" => "",
  3695. "pageGradientAngle" => "to bottom",
  3696. "componentBgUrl" => "",
  3697. "componentBgAlpha" => 2,
  3698. "componentStartBgColor" => "",
  3699. "componentEndBgColor" => "",
  3700. "componentGradientAngle" => "to bottom",
  3701. "topRounded" => 12,
  3702. "bottomRounded" => 12,
  3703. "elementBgColor" => "",
  3704. "topElementRounded" => 0,
  3705. "bottomElementRounded" => 0,
  3706. "margin" => [
  3707. "top" => 0,
  3708. "bottom" => 10,
  3709. "both" => 10
  3710. ]
  3711. ],
  3712. [
  3713. "path" => "edit-mall-goods-coupon",
  3714. "uses" => 0,
  3715. "id" => "5ho3xjjulw00",
  3716. "componentName" => "MallGoodsCoupon",
  3717. "componentTitle" => "优惠券",
  3718. "ignore" => [
  3719. "componentBgUrl"
  3720. ],
  3721. "style" => "style-5",
  3722. "styleName" => "风格5",
  3723. "source" => "all",
  3724. "num" => 6,
  3725. "couponIds" => [],
  3726. "btnText" => "立即领取",
  3727. "couponTitle" => "畅享礼券",
  3728. "couponSubTitle" => "领券下单 享购物优惠",
  3729. "titleColor" => "#333",
  3730. "subTitleColor" => "#ffffff",
  3731. "couponItem" => [
  3732. "bgColor" => "#FFF7F6",
  3733. "bgUrl" => "/addon/mall/diy/site_index/style2/coupon_bg.png",
  3734. "textColor" => "#FF0000",
  3735. "subTextColor" => "#666666",
  3736. "moneyColor" => "#FF0000",
  3737. "btnColor" => "#FF0000",
  3738. "aroundRadius" => 6
  3739. ],
  3740. "textColor" => "#303133",
  3741. "pageStartBgColor" => "",
  3742. "pageEndBgColor" => "",
  3743. "pageGradientAngle" => "to bottom",
  3744. "componentBgUrl" => "",
  3745. "componentBgAlpha" => 2,
  3746. "componentStartBgColor" => "#fff",
  3747. "componentEndBgColor" => "",
  3748. "componentGradientAngle" => "to bottom",
  3749. "topRounded" => 12,
  3750. "bottomRounded" => 12,
  3751. "elementBgColor" => "",
  3752. "topElementRounded" => 0,
  3753. "bottomElementRounded" => 0,
  3754. "margin" => [
  3755. "top" => 10,
  3756. "bottom" => 10,
  3757. "both" => 10
  3758. ]
  3759. ],
  3760. [
  3761. "path" => "edit-image-ads",
  3762. "uses" => 0,
  3763. "id" => "3cl72uurex40",
  3764. "componentName" => "ImageAds",
  3765. "componentTitle" => "图片广告",
  3766. "ignore" => [
  3767. "componentBgUrl"
  3768. ],
  3769. "imageHeight" => 63,
  3770. "isSameScreen" => false,
  3771. "list" => [
  3772. [
  3773. "link" => [
  3774. "name" => ""
  3775. ],
  3776. "imageUrl" => "/addon/mall/diy/site_index/style2/title_01.png",
  3777. "imgWidth" => 710,
  3778. "imgHeight" => 120,
  3779. "id" => "icbejonzj2w",
  3780. "width" => 375,
  3781. "height" => 63.38028169014084
  3782. ]
  3783. ],
  3784. "textColor" => "#303133",
  3785. "pageStartBgColor" => "",
  3786. "pageEndBgColor" => "",
  3787. "pageGradientAngle" => "to bottom",
  3788. "componentBgUrl" => "",
  3789. "componentBgAlpha" => 2,
  3790. "componentStartBgColor" => "",
  3791. "componentEndBgColor" => "",
  3792. "componentGradientAngle" => "to bottom",
  3793. "topRounded" => 12,
  3794. "bottomRounded" => 12,
  3795. "elementBgColor" => "",
  3796. "topElementRounded" => 0,
  3797. "bottomElementRounded" => 0,
  3798. "margin" => [
  3799. "top" => 0,
  3800. "bottom" => 10,
  3801. "both" => 10
  3802. ]
  3803. ],
  3804. [
  3805. "path" => "edit-image-ads",
  3806. "uses" => 0,
  3807. "id" => "5qv8rsa23cs0",
  3808. "componentName" => "ImageAds",
  3809. "componentTitle" => "图片广告",
  3810. "ignore" => [
  3811. "0" => "componentBgUrl"
  3812. ],
  3813. "imageHeight" => 422,
  3814. "isSameScreen" => false,
  3815. "list" => [
  3816. [
  3817. "link" => [
  3818. "name" => ""
  3819. ],
  3820. "imageUrl" => "/addon/mall/diy/site_index/style2/banner_02.jpg",
  3821. "imgWidth" => 710,
  3822. "imgHeight" => 800,
  3823. "id" => "atxn9ughunk",
  3824. "width" => 375,
  3825. "height" => 422.53521126760563
  3826. ]
  3827. ],
  3828. "textColor" => "#303133",
  3829. "pageStartBgColor" => "",
  3830. "pageEndBgColor" => "",
  3831. "pageGradientAngle" => "to bottom",
  3832. "componentBgUrl" => "",
  3833. "componentBgAlpha" => 2,
  3834. "componentStartBgColor" => "",
  3835. "componentEndBgColor" => "",
  3836. "componentGradientAngle" => "to bottom",
  3837. "topRounded" => 12,
  3838. "bottomRounded" => 12,
  3839. "elementBgColor" => "",
  3840. "topElementRounded" => 0,
  3841. "bottomElementRounded" => 0,
  3842. "margin" => [
  3843. "top" => 0,
  3844. "bottom" => 10,
  3845. "both" => 10
  3846. ],
  3847. "pageStyle" => "padding-top:2rpx;padding-bottom:0rpx;padding-right:0rpx;padding-left:0rpx;"
  3848. ],
  3849. [
  3850. "path" => "edit-image-ads",
  3851. "uses" => 0,
  3852. "id" => "2hhd5q4p2bi0",
  3853. "componentName" => "ImageAds",
  3854. "componentTitle" => "图片广告",
  3855. "ignore" => [
  3856. "componentBgUrl"
  3857. ],
  3858. "imageHeight" => 29,
  3859. "isSameScreen" => false,
  3860. "list" => [
  3861. [
  3862. "link" => [
  3863. "name" => ""
  3864. ],
  3865. "imageUrl" => "/addon/mall/diy/site_index/style2/title_02.png",
  3866. "imgWidth" => 710,
  3867. "imgHeight" => 56,
  3868. "id" => "47njtuj2sa00",
  3869. "width" => 375,
  3870. "height" => 29.577464788732396
  3871. ]
  3872. ],
  3873. "textColor" => "#303133",
  3874. "pageStartBgColor" => "",
  3875. "pageEndBgColor" => "",
  3876. "pageGradientAngle" => "to bottom",
  3877. "componentBgUrl" => "",
  3878. "componentBgAlpha" => 2,
  3879. "componentStartBgColor" => "",
  3880. "componentEndBgColor" => "",
  3881. "componentGradientAngle" => "to bottom",
  3882. "topRounded" => 0,
  3883. "bottomRounded" => 0,
  3884. "elementBgColor" => "",
  3885. "topElementRounded" => 0,
  3886. "bottomElementRounded" => 0,
  3887. "margin" => [
  3888. "top" => 0,
  3889. "bottom" => 10,
  3890. "both" => 0
  3891. ]
  3892. ],
  3893. [
  3894. "path" => "edit-image-ads",
  3895. "uses" => 0,
  3896. "id" => "49q6pqggzrs0",
  3897. "componentName" => "ImageAds",
  3898. "componentTitle" => "图片广告",
  3899. "ignore" => [
  3900. "componentBgUrl"
  3901. ],
  3902. "imageHeight" => 52,
  3903. "isSameScreen" => false,
  3904. "list" => [
  3905. [
  3906. "link" => [
  3907. "name" => ""
  3908. ],
  3909. "imageUrl" => "/addon/mall/diy/site_index/style2/title_03.png",
  3910. "imgWidth" => 710,
  3911. "imgHeight" => 100,
  3912. "id" => "4p457xnmu8a0",
  3913. "width" => 375,
  3914. "height" => 52.816901408450704
  3915. ]
  3916. ],
  3917. "textColor" => "#303133",
  3918. "pageStartBgColor" => "",
  3919. "pageEndBgColor" => "",
  3920. "pageGradientAngle" => "to bottom",
  3921. "componentBgUrl" => "",
  3922. "componentBgAlpha" => 2,
  3923. "componentStartBgColor" => "",
  3924. "componentEndBgColor" => "",
  3925. "componentGradientAngle" => "to bottom",
  3926. "topRounded" => 0,
  3927. "bottomRounded" => 0,
  3928. "elementBgColor" => "",
  3929. "topElementRounded" => 0,
  3930. "bottomElementRounded" => 0,
  3931. "margin" => [
  3932. "top" => 0,
  3933. "bottom" => 10,
  3934. "both" => 0
  3935. ]
  3936. ],
  3937. [
  3938. "path" => "edit-rubik-cube",
  3939. "uses" => 0,
  3940. "id" => "3jac25jefu40",
  3941. "componentName" => "RubikCube",
  3942. "componentTitle" => "魔方",
  3943. "ignore" => [],
  3944. "mode" => "row1-of2",
  3945. "imageGap" => 10,
  3946. "list" => [
  3947. [
  3948. "imageUrl" => "/addon/mall/diy/site_index/style2/cube_01.jpg",
  3949. "imgWidth" => 345,
  3950. "imgHeight" => 470,
  3951. "link" => [
  3952. "name" => ""
  3953. ]
  3954. ],
  3955. [
  3956. "imageUrl" => "/addon/mall/diy/site_index/style2/cube_02.jpg",
  3957. "imgWidth" => 345,
  3958. "imgHeight" => 470,
  3959. "link" => [
  3960. "name" => ""
  3961. ]
  3962. ]
  3963. ],
  3964. "textColor" => "#303133",
  3965. "pageStartBgColor" => "",
  3966. "pageEndBgColor" => "",
  3967. "pageGradientAngle" => "to bottom",
  3968. "componentBgUrl" => "",
  3969. "componentBgAlpha" => 2,
  3970. "componentStartBgColor" => "",
  3971. "componentEndBgColor" => "",
  3972. "componentGradientAngle" => "to bottom",
  3973. "topRounded" => 0,
  3974. "bottomRounded" => 0,
  3975. "elementBgColor" => "",
  3976. "topElementRounded" => 12,
  3977. "bottomElementRounded" => 12,
  3978. "margin" => [
  3979. "top" => 0,
  3980. "bottom" => 10,
  3981. "both" => 10
  3982. ]
  3983. ],
  3984. [
  3985. "path" => "edit-image-ads",
  3986. "uses" => 0,
  3987. "id" => "70vzyp69npc0",
  3988. "componentName" => "ImageAds",
  3989. "componentTitle" => "图片广告",
  3990. "ignore" => [
  3991. "0" => "componentBgUrl"
  3992. ],
  3993. "imageHeight" => 369,
  3994. "isSameScreen" => false,
  3995. "list" => [
  3996. [
  3997. "link" => [
  3998. "name" => ""
  3999. ],
  4000. "imageUrl" => "/addon/mall/diy/site_index/style2/banner_03.jpg",
  4001. "imgWidth" => 710,
  4002. "imgHeight" => 700,
  4003. "id" => "4jsj852xf200",
  4004. "width" => 375,
  4005. "height" => 369.71830985915494
  4006. ]
  4007. ],
  4008. "textColor" => "#303133",
  4009. "pageStartBgColor" => "",
  4010. "pageEndBgColor" => "",
  4011. "pageGradientAngle" => "to bottom",
  4012. "componentBgUrl" => "",
  4013. "componentBgAlpha" => 2,
  4014. "componentStartBgColor" => "",
  4015. "componentEndBgColor" => "",
  4016. "componentGradientAngle" => "to bottom",
  4017. "topRounded" => 12,
  4018. "bottomRounded" => 12,
  4019. "elementBgColor" => "",
  4020. "topElementRounded" => 0,
  4021. "bottomElementRounded" => 0,
  4022. "margin" => [
  4023. "top" => 0,
  4024. "bottom" => 10,
  4025. "both" => 10
  4026. ],
  4027. "pageStyle" => "padding-top:2rpx;padding-bottom:0rpx;padding-right:0rpx;padding-left:0rpx;"
  4028. ],
  4029. [
  4030. "path" => "edit-hot-area",
  4031. "uses" => 0,
  4032. "id" => "5fitc7c3ris0",
  4033. "componentName" => "HotArea",
  4034. "componentTitle" => "热区",
  4035. "ignore" => [
  4036. "componentBgUrl"
  4037. ],
  4038. "imageUrl" => "/addon/mall/diy/site_index/style2/banner_04.jpg",
  4039. "imgWidth" => 710,
  4040. "imgHeight" => 829,
  4041. "heatMapData" => [],
  4042. "textColor" => "#303133",
  4043. "pageStartBgColor" => "",
  4044. "pageEndBgColor" => "",
  4045. "pageGradientAngle" => "to bottom",
  4046. "componentBgUrl" => "",
  4047. "componentBgAlpha" => 2,
  4048. "componentStartBgColor" => "",
  4049. "componentEndBgColor" => "",
  4050. "componentGradientAngle" => "to bottom",
  4051. "topRounded" => 12,
  4052. "bottomRounded" => 12,
  4053. "elementBgColor" => "",
  4054. "topElementRounded" => 0,
  4055. "bottomElementRounded" => 0,
  4056. "margin" => [
  4057. "top" => 0,
  4058. "bottom" => 0,
  4059. "both" => 10
  4060. ]
  4061. ]
  4062. ]
  4063. ]
  4064. ],
  4065. ],
  4066. 'DIY_SHOP_GOODS_LIST' => [
  4067. 'mall_shop_goods_list' => [ // 页面标识
  4068. "title" => "店铺商品", // 页面名称
  4069. 'cover' => '', // 页面封面图
  4070. 'preview' => '', // 页面预览图
  4071. 'desc' => '', // 页面描述
  4072. 'mode' => 'diy', // 页面模式:diy:自定义,fixed:固定
  4073. // 页面数据源
  4074. "data" => [
  4075. "global" => [
  4076. "title" => "店铺商品",
  4077. "pageStartBgColor" => "rgba(246, 246, 246, 1)",
  4078. "pageEndBgColor" => "",
  4079. "pageGradientAngle" => "to bottom",
  4080. "bgUrl" => "",
  4081. "bgHeightScale" => 100,
  4082. "imgWidth" => "",
  4083. "imgHeight" => "",
  4084. "topStatusBar" => [
  4085. "isShow" => true,
  4086. "bgColor" => "#ffffff",
  4087. "isTransparent" => false,
  4088. "style" => "style-1",
  4089. "styleName" => "风格1",
  4090. "textColor" => "#333333",
  4091. "textAlign" => "center",
  4092. "inputPlaceholder" => "请输入搜索关键词",
  4093. "imgUrl" => "",
  4094. "link" => [
  4095. "name" => ""
  4096. ]
  4097. ],
  4098. "bottomTabBarSwitch" => true,
  4099. "popWindow" => [
  4100. "imgUrl" => "",
  4101. "imgWidth" => "",
  4102. "imgHeight" => "",
  4103. "count" => -1,
  4104. "show" => 0,
  4105. "link" => [
  4106. "name" => ""
  4107. ]
  4108. ],
  4109. "template" => [
  4110. "textColor" => "#303133",
  4111. "pageStartBgColor" => "",
  4112. "pageEndBgColor" => "",
  4113. "pageGradientAngle" => "to bottom",
  4114. "componentBgUrl" => "",
  4115. "componentBgAlpha" => 2,
  4116. "componentStartBgColor" => "",
  4117. "componentEndBgColor" => "",
  4118. "componentGradientAngle" => "to bottom",
  4119. "topRounded" => 0,
  4120. "bottomRounded" => 0,
  4121. "elementBgColor" => "",
  4122. "topElementRounded" => 0,
  4123. "bottomElementRounded" => 0,
  4124. "margin" => [
  4125. "top" => 0,
  4126. "bottom" => 0,
  4127. "both" => 0
  4128. ]
  4129. ]
  4130. ],
  4131. "value" => [
  4132. [
  4133. "path" => "edit-mall-goods-list",
  4134. "uses" => 0,
  4135. "id" => "3hg60o5oaii0",
  4136. "componentName" => "MallGoodsList",
  4137. "componentTitle" => "商品列表",
  4138. "ignore" => [],
  4139. "style" => "style-1",
  4140. "source" => "all",
  4141. "num" => 10,
  4142. "goods_category" => "",
  4143. "goods_category_name" => "请选择",
  4144. "goods_ids" => [],
  4145. "sortWay" => "default",
  4146. "goodsNameStyle" => [
  4147. "color" => "#303133",
  4148. "control" => true,
  4149. "fontWeight" => "normal",
  4150. "isShow" => true
  4151. ],
  4152. "priceStyle" => [
  4153. "color" => "#FF4142",
  4154. "control" => true,
  4155. "isShow" => true
  4156. ],
  4157. "saleStyle" => [
  4158. "color" => "#999999",
  4159. "control" => true,
  4160. "isShow" => true
  4161. ],
  4162. "labelStyle" => [
  4163. "control" => true,
  4164. "isShow" => true
  4165. ],
  4166. "btnStyle" => [
  4167. "fontWeight" => false,
  4168. "padding" => 0,
  4169. "aroundRadius" => 25,
  4170. "cartEvent" => "detail",
  4171. "text" => "购买",
  4172. "textColor" => "#FFFFFF",
  4173. "startBgColor" => "#FF4142",
  4174. "endBgColor" => "#FF4142",
  4175. "style" => "button",
  4176. "control" => true
  4177. ],
  4178. "imgElementRounded" => 10,
  4179. "textColor" => "#303133",
  4180. "pageStartBgColor" => "",
  4181. "pageEndBgColor" => "",
  4182. "pageGradientAngle" => "to bottom",
  4183. "componentBgUrl" => "",
  4184. "componentBgAlpha" => 2,
  4185. "componentStartBgColor" => "",
  4186. "componentEndBgColor" => "",
  4187. "componentGradientAngle" => "to bottom",
  4188. "topRounded" => 0,
  4189. "bottomRounded" => 0,
  4190. "elementBgColor" => "rgba(255, 255, 255, 1)",
  4191. "topElementRounded" => 10,
  4192. "bottomElementRounded" => 10,
  4193. "margin" => [
  4194. "top" => 10,
  4195. "bottom" => 0,
  4196. "both" => 10
  4197. ]
  4198. ]
  4199. ]
  4200. ]
  4201. ],
  4202. ],
  4203. 'DIY_SHOP_COUPON_LIST' => [
  4204. 'mall_shop_coupon_list' => [ // 页面标识
  4205. "title" => "店铺领券", // 页面名称
  4206. 'cover' => '', // 页面封面图
  4207. 'preview' => '', // 页面预览图
  4208. 'desc' => '', // 页面描述
  4209. 'mode' => 'diy', // 页面模式:diy:自定义,fixed:固定
  4210. // 页面数据源
  4211. "data" => [
  4212. "global" => [
  4213. "title" => "领券微页面",
  4214. "pageStartBgColor" => "rgba(246, 246, 246, 1)",
  4215. "pageEndBgColor" => "",
  4216. "pageGradientAngle" => "to bottom",
  4217. "bgUrl" => "",
  4218. "bgHeightScale" => 100,
  4219. "imgWidth" => "",
  4220. "imgHeight" => "",
  4221. "topStatusBar" => [
  4222. "isShow" => true,
  4223. "bgColor" => "#ffffff",
  4224. "isTransparent" => false,
  4225. "style" => "style-1",
  4226. "styleName" => "风格1",
  4227. "textColor" => "#333333",
  4228. "textAlign" => "center",
  4229. "inputPlaceholder" => "请输入搜索关键词",
  4230. "imgUrl" => "",
  4231. "link" => [
  4232. "name" => ""
  4233. ]
  4234. ],
  4235. "bottomTabBarSwitch" => true,
  4236. "popWindow" => [
  4237. "imgUrl" => "",
  4238. "imgWidth" => "",
  4239. "imgHeight" => "",
  4240. "count" => -1,
  4241. "show" => 0,
  4242. "link" => [
  4243. "name" => ""
  4244. ]
  4245. ],
  4246. "template" => [
  4247. "textColor" => "#303133",
  4248. "pageStartBgColor" => "",
  4249. "pageEndBgColor" => "",
  4250. "pageGradientAngle" => "to bottom",
  4251. "componentBgUrl" => "",
  4252. "componentBgAlpha" => 2,
  4253. "componentStartBgColor" => "",
  4254. "componentEndBgColor" => "",
  4255. "componentGradientAngle" => "to bottom",
  4256. "topRounded" => 0,
  4257. "bottomRounded" => 0,
  4258. "elementBgColor" => "",
  4259. "topElementRounded" => 0,
  4260. "bottomElementRounded" => 0,
  4261. "margin" => [
  4262. "top" => 0,
  4263. "bottom" => 0,
  4264. "both" => 0
  4265. ]
  4266. ]
  4267. ],
  4268. "value" => [
  4269. [
  4270. "path" => "edit-mall-shop-coupon-list",
  4271. "uses" => 0,
  4272. "id" => "18decq48c0xs",
  4273. "componentName" => "MallShopCouponList",
  4274. "componentTitle" => "商家优惠券",
  4275. "ignore" => [
  4276. "0" => "componentBgColor",
  4277. "1" => "componentBgUrl"
  4278. ],
  4279. "style" => "style-1",
  4280. "styleName" => "风格一",
  4281. "source" => "all",
  4282. "num" => 6,
  4283. "couponIds" => [],
  4284. "btnText" => "立即领取",
  4285. "couponTitle" => "先领券 再购物",
  4286. "couponSubTitle" => "领券下单 享购物优惠",
  4287. "titleColor" => "#ffffff",
  4288. "subTitleColor" => "#ffffff",
  4289. "couponItem" => [
  4290. "bgColor" => "#ffffff",
  4291. "bgUrl" => "/addons/mall/diy/img/goods_coupon/style5_bg.png",
  4292. "textColor" => "#333333",
  4293. "subTextColor" => "#666666",
  4294. "moneyColor" => "#333333",
  4295. "btnColor" => "#333333",
  4296. "aroundRadius" => 12
  4297. ],
  4298. "textColor" => "#303133",
  4299. "pageStartBgColor" => "",
  4300. "pageEndBgColor" => "",
  4301. "pageGradientAngle" => "to bottom",
  4302. "componentBgUrl" => "",
  4303. "componentBgAlpha" => 2,
  4304. "componentStartBgColor" => "",
  4305. "componentEndBgColor" => "",
  4306. "componentGradientAngle" => "to bottom",
  4307. "topRounded" => 0,
  4308. "bottomRounded" => 0,
  4309. "elementBgColor" => "",
  4310. "topElementRounded" => 0,
  4311. "bottomElementRounded" => 0,
  4312. "margin" => [
  4313. "top" => 10,
  4314. "bottom" => 10,
  4315. "both" => 10
  4316. ]
  4317. ]
  4318. ]
  4319. ]
  4320. ],
  4321. ],
  4322. ];