| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908 |
- <?php
- /**
- * Niushop商城系统 - 团队十年电商经验汇集巨献!
- * =========================================================
- * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
- * ----------------------------------------------
- * 官方网址: https://www.niushop.com
- * =========================================================
- */
- return [
- // 自定义模板页面类型,格式:[ 'title' => '页面类型名称', 'name' => '页面标识', 'path' => '页面路径', 'value' => '页面数据,json格式' ]
- 'template' => [],
- // 后台自定义组件——装修
- 'util' => [],
- // 自定义页面路径
- 'link' => [],
- // 自定义图标库
- 'icon_library' => [],
- // uni-app 组件,格式:[ 'name' => '组件名称/文件夹名称', 'path' => '文件路径/目录路径' ],多个逗号隔开,自定义组件名称前缀必须是diy-,也可以引用第三方组件
- 'component' => [],
- // uni-app 页面,多个逗号隔开
- 'pages' => [],
- // 模板信息,格式:'title' => '模板名称', 'name' => '模板标识', 'cover' => '模板封面图', 'preview' => '模板预览图', 'desc' => '模板描述'
- 'info' => [
- 'title' => '多门店新零售模板', // 模板名称
- 'name' => 'official_diy_store', // 模板标识
- 'cover' => 'addon/diy_store/shop/view/public/img/cover.png', // 模板封面图
- 'preview' => 'addon/diy_store/shop/view/public/img/preview.png', // 模板预览图
- 'desc' => '官方推出多门店新零售模板', // 模板描述
- ],
- // 主题风格配色,格式可以自由定义扩展,【在uni-app中通过:this.themeStyle... 获取定义的颜色字段,例如:this.themeStyle.main_color】
- 'theme' => [],
- // 自定义页面数据,格式:[ 'title' => '页面名称', 'name' => "页面标识", 'value' => [页面数据,json格式] ]
- 'data' => [
- [
- 'title' => '多门店新零售模板',
- 'name' => "DIY_VIEW_INDEX",
- 'value' => [
- "global" => [
- "title" => "多门店新零售模板",
- "pageBgColor" => "#F5F6FA",
- "topNavColor" => "#04C561",
- "topNavBg" => true,
- "navBarSwitch" => true,
- "navStyle" => "4",
- "textNavColor" => "#FFFFFF",
- "topNavImg" => "",
- "moreLink" => [
- "name" => ""
- ],
- "openBottomNav" => true,
- "textImgPosLink" => "center",
- "mpCollect" => false,
- "popWindow" => [
- "imageUrl" => "",
- "count" => -1,
- "show" => 0,
- "link" => [
- "name" => ""
- ],
- "imgWidth" => "",
- "imgHeight" => ""
- ],
- "bgUrl" => "addon/diy_store/shop/view/public/img/bg.png",
- "imgWidth" => "375",
- "imgHeight" => "247",
- "template" => [
- "pageBgColor" => "",
- "textColor" => "#303133",
- "componentBgColor" => "",
- "componentAngle" => "round",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 0,
- "elementBgColor" => "",
- "elementAngle" => "round",
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 0,
- "bottom" => 0,
- "both" => 12
- ]
- ]
- ],
- "value" => [
- [
- "searchStyle" => 2,
- "title" => "请输入搜索关键词",
- "textAlign" => "left",
- "borderType" => 2,
- "iconType" => "img",
- "icon" => "",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "imageUrl" => "addon/diy_store/shop/view/public/img/search.png",
- "id" => "4v0q7l4eyhs0",
- "addonName" => "",
- "componentName" => "Search",
- "componentTitle" => "搜索框",
- "searchLink" => [
- "name" => ""
- ],
- "isDelete" => 0,
- "pageBgColor" => "",
- "textColor" => "#303133",
- "componentBgColor" => "",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 0,
- "elementBgColor" => "#FFFFFF",
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 6,
- "bottom" => 6,
- "both" => 12
- ],
- "imgWidth" => "60",
- "imgHeight" => "60",
- "positionWay" => "fixed"
- ],
- [
- "mode" => "graphic",
- "type" => "img",
- "showStyle" => "fixed",
- "ornament" => [
- "type" => "default",
- "color" => "#EDEDED"
- ],
- "rowCount" => 5,
- "pageCount" => 2,
- "carousel" => [
- "type" => "circle",
- "color" => "#FFFFFF"
- ],
- "imageSize" => 50,
- "aroundRadius" => 25,
- "font" => [
- "size" => 14,
- "weight" => "normal",
- "color" => "#303133"
- ],
- "list" => [
- [
- "title" => "新鲜蔬菜",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_1.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => true,
- "text" => "热卖",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#FE8681",
- "bgColorEnd" => "#FF5754"
- ],
- "icon" => "",
- "id" => "1v99h14wqhr40",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ],
- [
- "title" => "鲜肉蛋禽",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_2.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "icon" => "",
- "id" => "1s5oxgjxss5c0",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ],
- [
- "title" => "优选水果",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_3.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => true,
- "text" => "草莓",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#FE8681",
- "bgColorEnd" => "#FF5754"
- ],
- "icon" => "",
- "id" => "1z76ythx14sg0",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ],
- [
- "title" => "海鲜水产",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_4.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "77stelj6ykc0",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ],
- [
- "title" => "蛋糕甜点",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_5.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => true,
- "text" => "蛋糕",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#FE8681",
- "bgColorEnd" => "#FF5754"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "1zmlt86jn8xs0",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ],
- [
- "title" => "牛奶乳品",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_6.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "ld0uf9zrh2o0",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ],
- [
- "title" => "厨房调料",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_7.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "fruwfv8bads",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ],
- [
- "title" => "米面粮油",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_8.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "70g58o07zrk0",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ],
- [
- "title" => "卤味蔬食",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_9.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "186cp6fj4vr40",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ],
- [
- "title" => "饮料酒水",
- "imageUrl" => "addon/diy_store/shop/view/public/img/nav_10.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "1ivu0ox8nmxs0",
- "imgWidth" => "147",
- "imgHeight" => "147"
- ]
- ],
- "id" => "49qvi2em5is0",
- "addonName" => "",
- "componentName" => "GraphicNav",
- "componentTitle" => "图文导航",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 12,
- "bottomAroundRadius" => 12,
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 6,
- "bottom" => 6,
- "both" => 12
- ]
- ],
- [
- "indicatorColor" => "#ffffff",
- "carouselStyle" => "circle",
- "indicatorLocation" => "center",
- "list" => [
- [
- "imageUrl" => "addon/diy_store/shop/view/public/img/point.png",
- "link" => [
- "name" => "INTEGRAL_STORE",
- "title" => "积分商城",
- "wap_url" => "/pages_promotion/point/list",
- "parent" => "MARKETING_LINK"
- ],
- "imgWidth" => "702",
- "imgHeight" => "180",
- "id" => "1z69zcd5vkio0"
- ]
- ],
- "id" => "1vtq5yokj44g",
- "addonName" => "",
- "componentName" => "ImageAds",
- "componentTitle" => "图片广告",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "",
- "componentAngle" => "round",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 0,
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 6,
- "bottom" => 6,
- "both" => 12
- ]
- ],
- [
- "mode" => "row1-lt-of2-rt",
- "imageGap" => 10,
- "list" => [
- [
- "imageUrl" => "addon/diy_store/shop/view/public/img/rubik_cube_5.png",
- "imgWidth" => "342",
- "imgHeight" => "350",
- "previewWidth" => 163.5,
- "previewHeight" => "177.32px",
- "link" => [
- "name" => ""
- ]
- ],
- [
- "imageUrl" => "addon/diy_store/shop/view/public/img/rubik_cube_6.png",
- "imgWidth" => "342",
- "imgHeight" => "166",
- "previewWidth" => 163.5,
- "previewHeight" => "83.66px",
- "link" => [
- "name" => ""
- ]
- ],
- [
- "imageUrl" => "addon/diy_store/shop/view/public/img/rubik_cube_7.png",
- "imgWidth" => "342",
- "imgHeight" => "166",
- "previewWidth" => 163.5,
- "previewHeight" => "83.66px",
- "link" => [
- "name" => ""
- ]
- ]
- ],
- "id" => "47v1783p3oo0",
- "addonName" => "",
- "componentName" => "RubikCube",
- "componentTitle" => "魔方",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "",
- "componentAngle" => "round",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 0,
- "elementAngle" => "round",
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 6,
- "bottom" => 6,
- "both" => 12
- ]
- ],
- [
- "indicatorColor" => "#ffffff",
- "carouselStyle" => "circle",
- "indicatorLocation" => "center",
- "list" => [
- [
- "imageUrl" => "addon/diy_store/shop/view/public/img/baozhang.png",
- "link" => [
- "name" => ""
- ],
- "imgWidth" => "702",
- "imgHeight" => "66",
- "id" => "1glfoxntyc1s0"
- ]
- ],
- "id" => "68xzp1ipgkw0",
- "addonName" => "",
- "componentName" => "ImageAds",
- "componentTitle" => "图片广告",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "",
- "componentAngle" => "round",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 0,
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 6,
- "bottom" => 6,
- "both" => 12
- ]
- ],
- [
- "ornament" => [
- "type" => "default",
- "color" => "#EDEDED"
- ],
- "style" => "style-3",
- "count" => 6,
- "nameLineMode" => "single",
- "sortWay" => "default",
- "imgAroundRadius" => 10,
- "goodsNameStyle" => [
- "color" => "#303133",
- "control" => false,
- "fontWeight" => false,
- "support" => false
- ],
- "saleStyle" => [
- "color" => "#999CA7",
- "control" => false,
- "support" => false
- ],
- "theme" => "default",
- "priceStyle" => [
- "mainColor" => "#FF1544",
- "mainControl" => true,
- "lineColor" => "#999CA7",
- "lineControl" => false,
- "lineSupport" => false
- ],
- "sources" => "initial",
- "goodsId" => [],
- "categoryId" => 0,
- "categoryName" => "请选择",
- "topStyle" => [
- "title" => "今日推荐",
- "subTitle" => "大家都在买",
- "icon" => [
- "value" => "icondiy icon-system-tuijian",
- "color" => "#FF3D3D",
- "bgColor" => ""
- ],
- "color" => "#303133",
- "subColor" => "#999CA7",
- "support" => false
- ],
- "bgUrl" => "app/component/view/goods_recommend/img/style3_bg.png",
- "styleName" => "风格3",
- "labelStyle" => [
- "support" => true,
- "bgColor" => "#FF504D",
- "title" => "新人专享",
- "color" => "#FFFFFF"
- ],
- "id" => "16uuk7vmsq5c",
- "addonName" => "",
- "componentName" => "GoodsRecommend",
- "componentTitle" => "商品推荐",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "",
- "componentAngle" => "round",
- "topAroundRadius" => 8,
- "bottomAroundRadius" => 8,
- "elementBgColor" => "",
- "elementAngle" => "round",
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 6,
- "bottom" => 6,
- "both" => 12
- ]
- ],
- [
- "style" => "style-2",
- "sources" => "initial",
- "count" => 6,
- "goodsId" => [],
- "goodsMarginType" => "default",
- "goodsMarginNum" => 10,
- "ornament" => [
- "type" => "default",
- "color" => "#EDEDED"
- ],
- "nameLineMode" => "single",
- "template" => "horizontal-slide",
- "btnStyle" => [
- "text" => "去秒杀",
- "textColor" => "#FFFFFF",
- "theme" => "default",
- "aroundRadius" => 25,
- "control" => false,
- "support" => false,
- "bgColorStart" => "#FF7B1D",
- "bgColorEnd" => "#FF1544"
- ],
- "imgAroundRadius" => 5,
- "saleStyle" => [
- "color" => "#999CA7",
- "control" => false,
- "support" => false
- ],
- "progressStyle" => [
- "control" => false,
- "support" => false,
- "currColor" => "#FDBE6C",
- "bgColor" => "#FCECD7"
- ],
- "titleStyle" => [
- "backgroundImage" => "addon/seckill/component/view/seckill/img/style_title_4_bg.png",
- "isShow" => true,
- "leftStyle" => "img",
- "leftImg" => "addon/seckill/component/view/seckill/img/style_title_4_name.png",
- "style" => "style-4",
- "styleName" => "风格4",
- "leftText" => "",
- "fontSize" => 16,
- "fontWeight" => true,
- "textColor" => "#666666",
- "bgColorStart" => "#FFFFFF",
- "bgColorEnd" => "#FFFFFF",
- "more" => "",
- "moreColor" => "",
- "moreFontSize" => 12,
- "timeTextColor" => "#FFFFFF",
- "timeBgColor" => "",
- "timeImageUrl" => "",
- "moreSupport" => false,
- "colonColor" => "#FE3718",
- "numBgColorStart" => "#FF5F17",
- "numBgColorEnd" => "#FE2F18",
- "numTextColor" => "#FFFFFF"
- ],
- "slideMode" => "slide",
- "theme" => "default",
- "priceStyle" => [
- "mainColor" => "#FFFFFF",
- "mainControl" => true,
- "lineColor" => "#999CA7",
- "lineControl" => true,
- "lineSupport" => true
- ],
- "goodsNameStyle" => [
- "color" => "#303133",
- "control" => false,
- "fontWeight" => false
- ],
- "id" => "2qfjelhllvs0",
- "addonName" => "seckill",
- "componentName" => "Seckill",
- "componentTitle" => "秒杀",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 8,
- "bottomAroundRadius" => 8,
- "elementBgColor" => "",
- "elementAngle" => "round",
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 6,
- "bottom" => 6,
- "both" => 12
- ]
- ],
- [
- "ornament" => [
- "type" => "default",
- "color" => "#EDEDED"
- ],
- "id" => "2i5zb56h2dy0",
- "addonName" => "pintuan",
- "componentName" => "Pintuan",
- "componentTitle" => "拼团",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 8,
- "bottomAroundRadius" => 8,
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 6,
- "bottom" => 6,
- "both" => 12
- ],
- "style" => "style-3",
- "sources" => "initial",
- "count" => 6,
- "goodsId" => [],
- "nameLineMode" => "single",
- "template" => "horizontal-slide",
- "btnStyle" => [
- "text" => "去拼团",
- "textColor" => "#FFFFFF",
- "theme" => "default",
- "aroundRadius" => 25,
- "control" => false,
- "support" => false,
- "bgColorStart" => "#FF1544",
- "bgColorEnd" => "#FF1544"
- ],
- "imgAroundRadius" => 10,
- "saleStyle" => [
- "color" => "#FF1544",
- "control" => false,
- "support" => false
- ],
- "slideMode" => "scroll",
- "theme" => "default",
- "goodsNameStyle" => [
- "color" => "#303133",
- "control" => true,
- "fontWeight" => false
- ],
- "priceStyle" => [
- "mainColor" => "#FF1544",
- "mainControl" => true,
- "lineColor" => "#999CA7",
- "lineControl" => false,
- "lineSupport" => false
- ],
- "titleStyle" => [
- "virtualNum" => 999,
- "bgColorStart" => "#FFFFFF",
- "bgColorEnd" => "#FFFFFF",
- "isShow" => true,
- "leftStyle" => "img",
- "leftImg" => "addon/pintuan/component/view/pintuan/img/style_2_title.png",
- "style" => "style-2",
- "styleName" => "风格2",
- "leftText" => "超值拼团",
- "fontSize" => 16,
- "fontWeight" => true,
- "textColor" => "#888888",
- "more" => "更多",
- "moreColor" => "#FFFFFF",
- "moreFontSize" => 12,
- "backgroundImage" => ""
- ],
- "goodsMarginType" => "default",
- "goodsMarginNum" => 10,
- "groupStyle" => [
- "color" => "#FFFFFF",
- "control" => true,
- "support" => true,
- "bgColorStart" => "#FA2379",
- "bgColorEnd" => "#FF4F61"
- ],
- "elementBgColor" => "",
- "elementAngle" => "round"
- ],
- [
- "style" => "style-3",
- "sources" => "initial",
- "count" => 6,
- "goodsId" => [],
- "ornament" => [
- "type" => "default",
- "color" => "#EDEDED"
- ],
- "nameLineMode" => "single",
- "template" => "row1-of1",
- "btnStyle" => [
- "text" => "去砍价",
- "textColor" => "#FFFFFF",
- "theme" => "default",
- "aroundRadius" => "4",
- "control" => true,
- "support" => true,
- "bgColorStart" => "#3EDB73",
- "bgColorEnd" => "#1DB576"
- ],
- "imgAroundRadius" => 5,
- "saleStyle" => [
- "color" => "#FFFFFF",
- "control" => false,
- "support" => false
- ],
- "slideMode" => "scroll",
- "theme" => "default",
- "goodsNameStyle" => [
- "color" => "#303133",
- "control" => true,
- "fontWeight" => false
- ],
- "priceStyle" => [
- "mainColor" => "#FF1745",
- "mainControl" => true,
- "lineColor" => "#999CA7",
- "lineControl" => false,
- "lineSupport" => false
- ],
- "titleStyle" => [
- "bgColorStart" => "#FFFFFF",
- "bgColorEnd" => "#FFFFFF",
- "isShow" => true,
- "leftStyle" => "img",
- "leftImg" => "addon/bargain/component/view/bargain/img/row1_of1_style_3_name.png",
- "style" => "style-2",
- "styleName" => "风格2",
- "leftText" => "疯狂砍价",
- "fontSize" => 16,
- "fontWeight" => true,
- "textColor" => "#FFFFFF",
- "more" => "更多",
- "moreColor" => "#FFFFFF",
- "moreFontSize" => 12,
- "backgroundImage" => ""
- ],
- "goodsMarginType" => "default",
- "goodsMarginNum" => 10,
- "id" => "4x7liou5lm20",
- "addonName" => "bargain",
- "componentName" => "Bargain",
- "componentTitle" => "砍价",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 8,
- "bottomAroundRadius" => 8,
- "elementBgColor" => "",
- "elementAngle" => "round",
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 6,
- "bottom" => 6,
- "both" => 12
- ]
- ],
- [
- "ornament" => [
- "type" => "default",
- "color" => "#EDEDED"
- ],
- "template" => "row1-of2",
- "goodsMarginType" => "default",
- "goodsMarginNum" => 10,
- "style" => "style-2",
- "sources" => "initial",
- "count" => 6,
- "goodsId" => [],
- "categoryId" => 0,
- "categoryName" => "请选择",
- "sortWay" => "default",
- "nameLineMode" => "single",
- "imgAroundRadius" => 0,
- "slideMode" => "scroll",
- "theme" => "default",
- "btnStyle" => [
- "fontWeight" => false,
- "padding" => 0,
- "cartEvent" => "cart",
- "text" => "购买",
- "textColor" => "#FFFFFF",
- "theme" => "default",
- "aroundRadius" => 25,
- "control" => true,
- "support" => true,
- "bgColor" => "#FF6A00",
- "style" => "button",
- "iconDiy" => [
- "iconType" => "icon",
- "icon" => "",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ]
- ]
- ],
- "tag" => [
- "text" => "隐藏",
- "value" => "hidden"
- ],
- "goodsNameStyle" => [
- "color" => "#303133",
- "control" => true,
- "fontWeight" => false
- ],
- "saleStyle" => [
- "color" => "#999CA7",
- "control" => true,
- "support" => true
- ],
- "priceStyle" => [
- "mainColor" => "#FF6A00",
- "mainControl" => true,
- "lineColor" => "#999CA7",
- "lineControl" => true,
- "lineSupport" => true
- ],
- "id" => "4dd123y6pco",
- "addonName" => "",
- "componentName" => "GoodsList",
- "componentTitle" => "商品列表",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "",
- "componentAngle" => "round",
- "topAroundRadius" => 8,
- "bottomAroundRadius" => 8,
- "elementBgColor" => "#FFFFFF",
- "elementAngle" => "round",
- "topElementAroundRadius" => 8,
- "bottomElementAroundRadius" => 8,
- "margin" => [
- "top" => 6,
- "bottom" => 0,
- "both" => 12
- ]
- ]
- ]
- ]
- ],
- [
- 'title' => '会员中心',
- 'name' => "DIY_VIEW_MEMBER_INDEX",
- 'value' => [
- "global" => [
- "title" => "会员中心",
- "pageBgColor" => "#F8F8F8",
- "topNavColor" => "#FFFFFF",
- "topNavBg" => true,
- "navBarSwitch" => false,
- "navStyle" => 1,
- "textNavColor" => "#333333",
- "topNavImg" => "",
- "moreLink" => [
- "name" => ""
- ],
- "openBottomNav" => true,
- "textImgPosLink" => "center",
- "mpCollect" => false,
- "popWindow" => [
- "imageUrl" => "",
- "count" => -1,
- "show" => 0,
- "link" => [
- "name" => ""
- ],
- "imgWidth" => "",
- "imgHeight" => ""
- ],
- "bgUrl" => "",
- "imgWidth" => "",
- "imgHeight" => "",
- "template" => [
- "pageBgColor" => "",
- "textColor" => "#303133",
- "componentBgColor" => "",
- "componentAngle" => "round",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 0,
- "elementBgColor" => "",
- "elementAngle" => "round",
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 0,
- "bottom" => 0,
- "both" => 0
- ]
- ]
- ],
- "value" => [
- [
- "style" => 4,
- "theme" => "default",
- "bgColorStart" => "#FF7230",
- "bgColorEnd" => "#FF1544",
- "gradientAngle" => "129",
- "infoMargin" => 12,
- "id" => "1tkaoxbhavj4",
- "addonName" => "",
- "componentName" => "MemberInfo",
- "componentTitle" => "会员信息",
- "isDelete" => 0,
- "pageBgColor" => "",
- "textColor" => "#303133",
- "componentBgColor" => "",
- "componentAngle" => "round",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 0,
- "elementBgColor" => "",
- "elementAngle" => "round",
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 0,
- "bottom" => 0,
- "both" => 0
- ]
- ],
- [
- "style" => "style-12",
- "styleName" => "风格12",
- "text" => "我的订单",
- "link" => [
- "name" => ""
- ],
- "fontSize" => 15,
- "fontWeight" => "bold",
- "subTitle" => [
- "fontSize" => 14,
- "text" => "",
- "isElementShow" => true,
- "color" => "#999999",
- "bgColor" => "#303133"
- ],
- "more" => [
- "text" => "查看全部",
- "link" => [
- "name" => "ALL_ORDER",
- "title" => "全部订单",
- "wap_url" => "/pages/order/list",
- "parent" => "MALL_LINK"
- ],
- "isShow" => 1,
- "isElementShow" => true,
- "color" => "#999999"
- ],
- "id" => "2txcvx3d5u6",
- "addonName" => "",
- "componentName" => "Text",
- "componentTitle" => "标题",
- "isDelete" => 0,
- "pageBgColor" => "",
- "textColor" => "#121836",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 9,
- "bottomAroundRadius" => 0,
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 12,
- "bottom" => 0,
- "both" => 12
- ]
- ],
- [
- "icon" => [
- "waitPay" => [
- "title" => "待支付",
- "icon" => "icondiy icon-system-daizhifu",
- "style" => [
- "bgRadius" => 0,
- "fontSize" => 90,
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "iconColor" => [ "#20DA86", "#03B352" ],
- "iconColorDeg" => 0
- ]
- ],
- "waitSend" => [
- "title" => "备货中",
- "icon" => "icondiy icon-system-beihuozhong",
- "style" => [
- "bgRadius" => 0,
- "fontSize" => 90,
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "iconColor" => [ "#20DA86", "#03B352" ],
- "iconColorDeg" => 0
- ]
- ],
- "waitConfirm" => [
- "title" => "配送中",
- "icon" => "icondiy icon-system-paisongzhong",
- "style" => [
- "bgRadius" => 0,
- "fontSize" => 90,
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "iconColor" => [ "#20DA86", "#03B352" ],
- "iconColorDeg" => 0
- ]
- ],
- "waitUse" => [
- "title" => "待使用",
- "icon" => "icondiy icon-system-daishiyong2",
- "style" => [
- "bgRadius" => 0,
- "fontSize" => 75,
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "iconColor" => [ "#20DA86", "#03B352" ],
- "iconColorDeg" => 0
- ]
- ],
- "refunding" => [
- "title" => "退换货",
- "icon" => "icondiy icon-system-tuihuoguanli",
- "style" => [
- "bgRadius" => 0,
- "fontSize" => 90,
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "iconColor" => [ "#20DA86", "#03B352" ],
- "iconColorDeg" => 0
- ]
- ]
- ],
- "style" => 4,
- "id" => "2bplt2x9n0bo",
- "addonName" => "",
- "componentName" => "MemberMyOrder",
- "componentTitle" => "我的订单",
- "isDelete" => 0,
- "pageBgColor" => "",
- "textColor" => "#303133",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 9,
- "elementBgColor" => "",
- "elementAngle" => "round",
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 0,
- "bottom" => 0,
- "both" => 12
- ]
- ],
- [
- "style" => "style-12",
- "styleName" => "风格12",
- "text" => "我的服务",
- "link" => [
- "name" => ""
- ],
- "fontSize" => 15,
- "fontWeight" => "bold",
- "subTitle" => [
- "fontSize" => 14,
- "text" => "",
- "isElementShow" => true,
- "color" => "#999999",
- "bgColor" => "#303133"
- ],
- "more" => [
- "text" => "",
- "link" => [
- "name" => ""
- ],
- "isShow" => 0,
- "isElementShow" => true,
- "color" => "#999999"
- ],
- "id" => "405rb6vv3rq0",
- "addonName" => "",
- "componentName" => "Text",
- "componentTitle" => "标题",
- "isDelete" => 0,
- "pageBgColor" => "",
- "textColor" => "#121836",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 9,
- "bottomAroundRadius" => 0,
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 12,
- "bottom" => 0,
- "both" => 12
- ]
- ],
- [
- "mode" => "graphic",
- "type" => "img",
- "showStyle" => "fixed",
- "ornament" => [
- "type" => "default",
- "color" => "#EDEDED"
- ],
- "rowCount" => 5,
- "pageCount" => 2,
- "carousel" => [
- "type" => "circle",
- "color" => "#FFFFFF"
- ],
- "imageSize" => 30,
- "aroundRadius" => 0,
- "font" => [
- "size" => 12,
- "weight" => "normal",
- "color" => "#666666"
- ],
- "list" => [
- [
- "title" => "我的资料",
- "imageUrl" => "public/uniapp/member/index/menu/new_persion.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => "MEMBER_INFO",
- "title" => "个人资料",
- "wap_url" => "/pages_tool/member/info",
- "parent" => "MALL_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "icon" => "",
- "id" => "10rhv0x6phhc0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "签到",
- "imageUrl" => "public/uniapp/member/index/menu/new_sign.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => "SIGN_IN",
- "title" => "签到",
- "wap_url" => "/pages_tool/member/signin",
- "parent" => "MARKETING_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "hodjcxowf8g0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "收货地址",
- "imageUrl" => "public/uniapp/member/index/menu/new_address.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => "SHIPPING_ADDRESS",
- "title" => "收货地址",
- "wap_url" => "/pages_tool/member/address",
- "parent" => "MALL_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "icon" => "",
- "id" => "1n8gycn6xqe80",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "优惠券",
- "imageUrl" => "public/uniapp/member/index/menu/new_coupon.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => "COUPON",
- "title" => "优惠券",
- "wap_url" => "/pages_tool/member/coupon",
- "parent" => "MALL_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "1tnu0vihrnq80",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "我的拼单",
- "imageUrl" => "public/uniapp/member/index/menu/new_pindan.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => "MY_PINTUAN",
- "title" => "我的拼团",
- "wap_url" => "/pages_promotion/pintuan/my_spell",
- "parent" => "MARKETING_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "uoarcfsleio0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "我的礼品",
- "imageUrl" => "public/uniapp/member/index/menu/new_gift.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => "MEMBER_RECOMMEND",
- "title" => "邀请有礼",
- "wap_url" => "/pages_tool/member/invite_friends",
- "parent" => "MARKETING_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "1h34nmfisge80",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "我的关注",
- "imageUrl" => "public/uniapp/member/index/menu/new_like.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => "ATTENTION",
- "title" => "我的关注",
- "wap_url" => "/pages_tool/member/collection",
- "parent" => "MALL_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "icon" => "",
- "id" => "cnamoch6cvk0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "我的足迹",
- "imageUrl" => "public/uniapp/member/index/menu/new_foot.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => "FOOTPRINT",
- "title" => "我的足迹",
- "wap_url" => "/pages_tool/member/footprint",
- "parent" => "MALL_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "icon" => "",
- "id" => "drf3hi3slo00",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "我的砍价",
- "imageUrl" => "public/uniapp/member/index/menu/new_bargain.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => "MY_BARGAIN",
- "title" => "我的砍价",
- "wap_url" => "/pages_promotion/bargain/my_bargain",
- "parent" => "MARKETING_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "13uz22sbag000",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "积分兑换",
- "imageUrl" => "public/uniapp/member/index/menu/new_point_change.png",
- "iconType" => "img",
- "style" => "",
- "link" => [
- "name" => "INTEGRAL_CONVERSION",
- "title" => "积分兑换",
- "wap_url" => "/pages_promotion/point/order_list",
- "parent" => "MARKETING_LINK"
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "iconfont" => [
- "value" => "",
- "color" => ""
- ],
- "id" => "rnyw8xo5rdc0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ]
- ],
- "id" => "5ywbzsnigpw0",
- "addonName" => "",
- "componentName" => "GraphicNav",
- "componentTitle" => "图文导航",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 9,
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 0,
- "bottom" => 12,
- "both" => 12
- ]
- ],
- [
- "style" => "style-12",
- "styleName" => "风格12",
- "text" => "我的工具",
- "link" => [
- "name" => ""
- ],
- "fontSize" => 15,
- "fontWeight" => "bold",
- "subTitle" => [
- "fontSize" => 14,
- "text" => "",
- "isElementShow" => true,
- "color" => "#999999",
- "bgColor" => "#303133"
- ],
- "more" => [
- "text" => "",
- "link" => [
- "name" => ""
- ],
- "isShow" => 0,
- "isElementShow" => true,
- "color" => "#999999"
- ],
- "id" => "1dbblwhsuwg0",
- "addonName" => "",
- "componentName" => "Text",
- "componentTitle" => "标题",
- "isDelete" => 0,
- "pageBgColor" => "",
- "textColor" => "#121836",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 9,
- "bottomAroundRadius" => 0,
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 0,
- "bottom" => 0,
- "both" => 12
- ]
- ],
- [
- "ornament" => [
- "type" => "default",
- "color" => "#EDEDED"
- ],
- "list" => [
- [
- "title" => "分销中心",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => "DISTRIBUTION_CENTRE",
- "title" => "分销中心",
- "wap_url" => "/pages_promotion/fenxiao/index",
- "parent" => "MARKETING_LINK"
- ],
- "icon" => "",
- "iconType" => "img",
- "imageUrl" => "public/uniapp/member/index/menu/new_fenxiao.png",
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "id" => "cox48f75shs0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "账户列表",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => "ACCOUNT",
- "title" => "账户列表",
- "wap_url" => "/pages_tool/member/account",
- "parent" => "MALL_LINK"
- ],
- "icon" => "",
- "iconType" => "img",
- "imageUrl" => "public/uniapp/member/index/menu/new_account.png",
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "id" => "5q0mccyypjo0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "红包列表",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => ""
- ],
- "icon" => "",
- "iconType" => "img",
- "imageUrl" => "public/uniapp/member/index/menu/new_red_package.png",
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "id" => "1jyhbd1gn5j40",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "我的预售",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => "MAPRESALE_PREFECTURE",
- "title" => "我的预售",
- "wap_url" => "/pages_promotion/presale/order_list",
- "parent" => "MARKETING_LINK"
- ],
- "icon" => "",
- "iconType" => "img",
- "imageUrl" => "public/uniapp/member/index/menu/new_presale.png",
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "id" => "r18ye6w6l000",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "单位采购",
- "icon" => "",
- "imageUrl" => "public/uniapp/member/index/menu/new_unit_purchase.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "id" => "et2y2d7do6w0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "生活订水",
- "icon" => "",
- "imageUrl" => "public/uniapp/member/index/menu/new_life_water.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "id" => "11a3m3u72ukw0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "投诉建议",
- "icon" => "",
- "imageUrl" => "public/uniapp/member/index/menu/new_advice.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "id" => "1ydxsnwlrxmo0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ],
- [
- "title" => "客服入口",
- "icon" => "",
- "imageUrl" => "public/uniapp/member/index/menu/new_service.png",
- "iconType" => "img",
- "style" => [
- "fontSize" => "60",
- "iconBgColor" => [],
- "iconBgColorDeg" => 0,
- "iconBgImg" => "",
- "bgRadius" => 0,
- "iconColor" => [
- "#000000"
- ],
- "iconColorDeg" => 0
- ],
- "link" => [
- "name" => ""
- ],
- "label" => [
- "control" => false,
- "text" => "热门",
- "textColor" => "#FFFFFF",
- "bgColorStart" => "#F83287",
- "bgColorEnd" => "#FE3423"
- ],
- "id" => "1jb54egmii1s0",
- "imgWidth" => "60",
- "imgHeight" => "60"
- ]
- ],
- "mode" => "graphic",
- "type" => "img",
- "showStyle" => "fixed",
- "rowCount" => 5,
- "pageCount" => 2,
- "carousel" => [
- "type" => "circle",
- "color" => "#FFFFFF"
- ],
- "imageSize" => 30,
- "aroundRadius" => 25,
- "font" => [
- "size" => 12,
- "weight" => "normal",
- "color" => "#666666"
- ],
- "id" => "cdv0gsi1cw0",
- "addonName" => "",
- "componentName" => "GraphicNav",
- "componentTitle" => "图文导航",
- "isDelete" => 0,
- "pageBgColor" => "",
- "componentBgColor" => "#FFFFFF",
- "componentAngle" => "round",
- "topAroundRadius" => 0,
- "bottomAroundRadius" => 9,
- "topElementAroundRadius" => 0,
- "bottomElementAroundRadius" => 0,
- "margin" => [
- "top" => 0,
- "bottom" => 12,
- "both" => 12
- ]
- ]
- ]
- ]
- ]
- ]
- ];
|