diy_view.php 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. return [
  11. // 自定义模板页面类型,格式:[ 'title' => '页面类型名称', 'name' => '页面标识', 'path' => '页面路径', 'value' => '页面数据,json格式' ]
  12. 'template' => [],
  13. // 后台自定义组件——装修
  14. 'util' => [],
  15. // 自定义页面路径
  16. 'link' => [],
  17. // 自定义图标库
  18. 'icon_library' => [],
  19. // uni-app 组件,格式:[ 'name' => '组件名称/文件夹名称', 'path' => '文件路径/目录路径' ],多个逗号隔开,自定义组件名称前缀必须是diy-,也可以引用第三方组件
  20. 'component' => [],
  21. // uni-app 页面,多个逗号隔开
  22. 'pages' => [],
  23. // 模板信息,格式:'title' => '模板名称', 'name' => '模板标识', 'cover' => '模板封面图', 'preview' => '模板预览图', 'desc' => '模板描述'
  24. 'info' => [
  25. 'title' => '多门店新零售模板', // 模板名称
  26. 'name' => 'official_diy_store', // 模板标识
  27. 'cover' => 'addon/diy_store/shop/view/public/img/cover.png', // 模板封面图
  28. 'preview' => 'addon/diy_store/shop/view/public/img/preview.png', // 模板预览图
  29. 'desc' => '官方推出多门店新零售模板', // 模板描述
  30. ],
  31. // 主题风格配色,格式可以自由定义扩展,【在uni-app中通过:this.themeStyle... 获取定义的颜色字段,例如:this.themeStyle.main_color】
  32. 'theme' => [],
  33. // 自定义页面数据,格式:[ 'title' => '页面名称', 'name' => "页面标识", 'value' => [页面数据,json格式] ]
  34. 'data' => [
  35. [
  36. 'title' => '多门店新零售模板',
  37. 'name' => "DIY_VIEW_INDEX",
  38. 'value' => [
  39. "global" => [
  40. "title" => "多门店新零售模板",
  41. "pageBgColor" => "#F5F6FA",
  42. "topNavColor" => "#04C561",
  43. "topNavBg" => true,
  44. "navBarSwitch" => true,
  45. "navStyle" => "4",
  46. "textNavColor" => "#FFFFFF",
  47. "topNavImg" => "",
  48. "moreLink" => [
  49. "name" => ""
  50. ],
  51. "openBottomNav" => true,
  52. "textImgPosLink" => "center",
  53. "mpCollect" => false,
  54. "popWindow" => [
  55. "imageUrl" => "",
  56. "count" => -1,
  57. "show" => 0,
  58. "link" => [
  59. "name" => ""
  60. ],
  61. "imgWidth" => "",
  62. "imgHeight" => ""
  63. ],
  64. "bgUrl" => "addon/diy_store/shop/view/public/img/bg.png",
  65. "imgWidth" => "375",
  66. "imgHeight" => "247",
  67. "template" => [
  68. "pageBgColor" => "",
  69. "textColor" => "#303133",
  70. "componentBgColor" => "",
  71. "componentAngle" => "round",
  72. "topAroundRadius" => 0,
  73. "bottomAroundRadius" => 0,
  74. "elementBgColor" => "",
  75. "elementAngle" => "round",
  76. "topElementAroundRadius" => 0,
  77. "bottomElementAroundRadius" => 0,
  78. "margin" => [
  79. "top" => 0,
  80. "bottom" => 0,
  81. "both" => 12
  82. ]
  83. ]
  84. ],
  85. "value" => [
  86. [
  87. "searchStyle" => 2,
  88. "title" => "请输入搜索关键词",
  89. "textAlign" => "left",
  90. "borderType" => 2,
  91. "iconType" => "img",
  92. "icon" => "",
  93. "style" => [
  94. "fontSize" => "60",
  95. "iconBgColor" => [],
  96. "iconBgColorDeg" => 0,
  97. "iconBgImg" => "",
  98. "bgRadius" => 0,
  99. "iconColor" => [
  100. "#000000"
  101. ],
  102. "iconColorDeg" => 0
  103. ],
  104. "imageUrl" => "addon/diy_store/shop/view/public/img/search.png",
  105. "id" => "4v0q7l4eyhs0",
  106. "addonName" => "",
  107. "componentName" => "Search",
  108. "componentTitle" => "搜索框",
  109. "searchLink" => [
  110. "name" => ""
  111. ],
  112. "isDelete" => 0,
  113. "pageBgColor" => "",
  114. "textColor" => "#303133",
  115. "componentBgColor" => "",
  116. "topAroundRadius" => 0,
  117. "bottomAroundRadius" => 0,
  118. "elementBgColor" => "#FFFFFF",
  119. "topElementAroundRadius" => 0,
  120. "bottomElementAroundRadius" => 0,
  121. "margin" => [
  122. "top" => 6,
  123. "bottom" => 6,
  124. "both" => 12
  125. ],
  126. "imgWidth" => "60",
  127. "imgHeight" => "60",
  128. "positionWay" => "fixed"
  129. ],
  130. [
  131. "mode" => "graphic",
  132. "type" => "img",
  133. "showStyle" => "fixed",
  134. "ornament" => [
  135. "type" => "default",
  136. "color" => "#EDEDED"
  137. ],
  138. "rowCount" => 5,
  139. "pageCount" => 2,
  140. "carousel" => [
  141. "type" => "circle",
  142. "color" => "#FFFFFF"
  143. ],
  144. "imageSize" => 50,
  145. "aroundRadius" => 25,
  146. "font" => [
  147. "size" => 14,
  148. "weight" => "normal",
  149. "color" => "#303133"
  150. ],
  151. "list" => [
  152. [
  153. "title" => "新鲜蔬菜",
  154. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_1.png",
  155. "iconType" => "img",
  156. "style" => [
  157. "fontSize" => "60",
  158. "iconBgColor" => [],
  159. "iconBgColorDeg" => 0,
  160. "iconBgImg" => "",
  161. "bgRadius" => 0,
  162. "iconColor" => [
  163. "#000000"
  164. ],
  165. "iconColorDeg" => 0
  166. ],
  167. "link" => [
  168. "name" => ""
  169. ],
  170. "label" => [
  171. "control" => true,
  172. "text" => "热卖",
  173. "textColor" => "#FFFFFF",
  174. "bgColorStart" => "#FE8681",
  175. "bgColorEnd" => "#FF5754"
  176. ],
  177. "icon" => "",
  178. "id" => "1v99h14wqhr40",
  179. "imgWidth" => "147",
  180. "imgHeight" => "147"
  181. ],
  182. [
  183. "title" => "鲜肉蛋禽",
  184. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_2.png",
  185. "iconType" => "img",
  186. "style" => [
  187. "fontSize" => "60",
  188. "iconBgColor" => [],
  189. "iconBgColorDeg" => 0,
  190. "iconBgImg" => "",
  191. "bgRadius" => 0,
  192. "iconColor" => [
  193. "#000000"
  194. ],
  195. "iconColorDeg" => 0
  196. ],
  197. "link" => [
  198. "name" => ""
  199. ],
  200. "label" => [
  201. "control" => false,
  202. "text" => "热门",
  203. "textColor" => "#FFFFFF",
  204. "bgColorStart" => "#F83287",
  205. "bgColorEnd" => "#FE3423"
  206. ],
  207. "icon" => "",
  208. "id" => "1s5oxgjxss5c0",
  209. "imgWidth" => "147",
  210. "imgHeight" => "147"
  211. ],
  212. [
  213. "title" => "优选水果",
  214. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_3.png",
  215. "iconType" => "img",
  216. "style" => [
  217. "fontSize" => "60",
  218. "iconBgColor" => [],
  219. "iconBgColorDeg" => 0,
  220. "iconBgImg" => "",
  221. "bgRadius" => 0,
  222. "iconColor" => [
  223. "#000000"
  224. ],
  225. "iconColorDeg" => 0
  226. ],
  227. "link" => [
  228. "name" => ""
  229. ],
  230. "label" => [
  231. "control" => true,
  232. "text" => "草莓",
  233. "textColor" => "#FFFFFF",
  234. "bgColorStart" => "#FE8681",
  235. "bgColorEnd" => "#FF5754"
  236. ],
  237. "icon" => "",
  238. "id" => "1z76ythx14sg0",
  239. "imgWidth" => "147",
  240. "imgHeight" => "147"
  241. ],
  242. [
  243. "title" => "海鲜水产",
  244. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_4.png",
  245. "iconType" => "img",
  246. "style" => "",
  247. "link" => [
  248. "name" => ""
  249. ],
  250. "label" => [
  251. "control" => false,
  252. "text" => "热门",
  253. "textColor" => "#FFFFFF",
  254. "bgColorStart" => "#F83287",
  255. "bgColorEnd" => "#FE3423"
  256. ],
  257. "iconfont" => [
  258. "value" => "",
  259. "color" => ""
  260. ],
  261. "id" => "77stelj6ykc0",
  262. "imgWidth" => "147",
  263. "imgHeight" => "147"
  264. ],
  265. [
  266. "title" => "蛋糕甜点",
  267. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_5.png",
  268. "iconType" => "img",
  269. "style" => "",
  270. "link" => [
  271. "name" => ""
  272. ],
  273. "label" => [
  274. "control" => true,
  275. "text" => "蛋糕",
  276. "textColor" => "#FFFFFF",
  277. "bgColorStart" => "#FE8681",
  278. "bgColorEnd" => "#FF5754"
  279. ],
  280. "iconfont" => [
  281. "value" => "",
  282. "color" => ""
  283. ],
  284. "id" => "1zmlt86jn8xs0",
  285. "imgWidth" => "147",
  286. "imgHeight" => "147"
  287. ],
  288. [
  289. "title" => "牛奶乳品",
  290. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_6.png",
  291. "iconType" => "img",
  292. "style" => "",
  293. "link" => [
  294. "name" => ""
  295. ],
  296. "label" => [
  297. "control" => false,
  298. "text" => "热门",
  299. "textColor" => "#FFFFFF",
  300. "bgColorStart" => "#F83287",
  301. "bgColorEnd" => "#FE3423"
  302. ],
  303. "iconfont" => [
  304. "value" => "",
  305. "color" => ""
  306. ],
  307. "id" => "ld0uf9zrh2o0",
  308. "imgWidth" => "147",
  309. "imgHeight" => "147"
  310. ],
  311. [
  312. "title" => "厨房调料",
  313. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_7.png",
  314. "iconType" => "img",
  315. "style" => "",
  316. "link" => [
  317. "name" => ""
  318. ],
  319. "label" => [
  320. "control" => false,
  321. "text" => "热门",
  322. "textColor" => "#FFFFFF",
  323. "bgColorStart" => "#F83287",
  324. "bgColorEnd" => "#FE3423"
  325. ],
  326. "iconfont" => [
  327. "value" => "",
  328. "color" => ""
  329. ],
  330. "id" => "fruwfv8bads",
  331. "imgWidth" => "147",
  332. "imgHeight" => "147"
  333. ],
  334. [
  335. "title" => "米面粮油",
  336. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_8.png",
  337. "iconType" => "img",
  338. "style" => "",
  339. "link" => [
  340. "name" => ""
  341. ],
  342. "label" => [
  343. "control" => false,
  344. "text" => "热门",
  345. "textColor" => "#FFFFFF",
  346. "bgColorStart" => "#F83287",
  347. "bgColorEnd" => "#FE3423"
  348. ],
  349. "iconfont" => [
  350. "value" => "",
  351. "color" => ""
  352. ],
  353. "id" => "70g58o07zrk0",
  354. "imgWidth" => "147",
  355. "imgHeight" => "147"
  356. ],
  357. [
  358. "title" => "卤味蔬食",
  359. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_9.png",
  360. "iconType" => "img",
  361. "style" => "",
  362. "link" => [
  363. "name" => ""
  364. ],
  365. "label" => [
  366. "control" => false,
  367. "text" => "热门",
  368. "textColor" => "#FFFFFF",
  369. "bgColorStart" => "#F83287",
  370. "bgColorEnd" => "#FE3423"
  371. ],
  372. "iconfont" => [
  373. "value" => "",
  374. "color" => ""
  375. ],
  376. "id" => "186cp6fj4vr40",
  377. "imgWidth" => "147",
  378. "imgHeight" => "147"
  379. ],
  380. [
  381. "title" => "饮料酒水",
  382. "imageUrl" => "addon/diy_store/shop/view/public/img/nav_10.png",
  383. "iconType" => "img",
  384. "style" => "",
  385. "link" => [
  386. "name" => ""
  387. ],
  388. "label" => [
  389. "control" => false,
  390. "text" => "热门",
  391. "textColor" => "#FFFFFF",
  392. "bgColorStart" => "#F83287",
  393. "bgColorEnd" => "#FE3423"
  394. ],
  395. "iconfont" => [
  396. "value" => "",
  397. "color" => ""
  398. ],
  399. "id" => "1ivu0ox8nmxs0",
  400. "imgWidth" => "147",
  401. "imgHeight" => "147"
  402. ]
  403. ],
  404. "id" => "49qvi2em5is0",
  405. "addonName" => "",
  406. "componentName" => "GraphicNav",
  407. "componentTitle" => "图文导航",
  408. "isDelete" => 0,
  409. "pageBgColor" => "",
  410. "componentBgColor" => "#FFFFFF",
  411. "componentAngle" => "round",
  412. "topAroundRadius" => 12,
  413. "bottomAroundRadius" => 12,
  414. "topElementAroundRadius" => 0,
  415. "bottomElementAroundRadius" => 0,
  416. "margin" => [
  417. "top" => 6,
  418. "bottom" => 6,
  419. "both" => 12
  420. ]
  421. ],
  422. [
  423. "indicatorColor" => "#ffffff",
  424. "carouselStyle" => "circle",
  425. "indicatorLocation" => "center",
  426. "list" => [
  427. [
  428. "imageUrl" => "addon/diy_store/shop/view/public/img/point.png",
  429. "link" => [
  430. "name" => "INTEGRAL_STORE",
  431. "title" => "积分商城",
  432. "wap_url" => "/pages_promotion/point/list",
  433. "parent" => "MARKETING_LINK"
  434. ],
  435. "imgWidth" => "702",
  436. "imgHeight" => "180",
  437. "id" => "1z69zcd5vkio0"
  438. ]
  439. ],
  440. "id" => "1vtq5yokj44g",
  441. "addonName" => "",
  442. "componentName" => "ImageAds",
  443. "componentTitle" => "图片广告",
  444. "isDelete" => 0,
  445. "pageBgColor" => "",
  446. "componentBgColor" => "",
  447. "componentAngle" => "round",
  448. "topAroundRadius" => 0,
  449. "bottomAroundRadius" => 0,
  450. "topElementAroundRadius" => 0,
  451. "bottomElementAroundRadius" => 0,
  452. "margin" => [
  453. "top" => 6,
  454. "bottom" => 6,
  455. "both" => 12
  456. ]
  457. ],
  458. [
  459. "mode" => "row1-lt-of2-rt",
  460. "imageGap" => 10,
  461. "list" => [
  462. [
  463. "imageUrl" => "addon/diy_store/shop/view/public/img/rubik_cube_5.png",
  464. "imgWidth" => "342",
  465. "imgHeight" => "350",
  466. "previewWidth" => 163.5,
  467. "previewHeight" => "177.32px",
  468. "link" => [
  469. "name" => ""
  470. ]
  471. ],
  472. [
  473. "imageUrl" => "addon/diy_store/shop/view/public/img/rubik_cube_6.png",
  474. "imgWidth" => "342",
  475. "imgHeight" => "166",
  476. "previewWidth" => 163.5,
  477. "previewHeight" => "83.66px",
  478. "link" => [
  479. "name" => ""
  480. ]
  481. ],
  482. [
  483. "imageUrl" => "addon/diy_store/shop/view/public/img/rubik_cube_7.png",
  484. "imgWidth" => "342",
  485. "imgHeight" => "166",
  486. "previewWidth" => 163.5,
  487. "previewHeight" => "83.66px",
  488. "link" => [
  489. "name" => ""
  490. ]
  491. ]
  492. ],
  493. "id" => "47v1783p3oo0",
  494. "addonName" => "",
  495. "componentName" => "RubikCube",
  496. "componentTitle" => "魔方",
  497. "isDelete" => 0,
  498. "pageBgColor" => "",
  499. "componentBgColor" => "",
  500. "componentAngle" => "round",
  501. "topAroundRadius" => 0,
  502. "bottomAroundRadius" => 0,
  503. "elementAngle" => "round",
  504. "topElementAroundRadius" => 0,
  505. "bottomElementAroundRadius" => 0,
  506. "margin" => [
  507. "top" => 6,
  508. "bottom" => 6,
  509. "both" => 12
  510. ]
  511. ],
  512. [
  513. "indicatorColor" => "#ffffff",
  514. "carouselStyle" => "circle",
  515. "indicatorLocation" => "center",
  516. "list" => [
  517. [
  518. "imageUrl" => "addon/diy_store/shop/view/public/img/baozhang.png",
  519. "link" => [
  520. "name" => ""
  521. ],
  522. "imgWidth" => "702",
  523. "imgHeight" => "66",
  524. "id" => "1glfoxntyc1s0"
  525. ]
  526. ],
  527. "id" => "68xzp1ipgkw0",
  528. "addonName" => "",
  529. "componentName" => "ImageAds",
  530. "componentTitle" => "图片广告",
  531. "isDelete" => 0,
  532. "pageBgColor" => "",
  533. "componentBgColor" => "",
  534. "componentAngle" => "round",
  535. "topAroundRadius" => 0,
  536. "bottomAroundRadius" => 0,
  537. "topElementAroundRadius" => 0,
  538. "bottomElementAroundRadius" => 0,
  539. "margin" => [
  540. "top" => 6,
  541. "bottom" => 6,
  542. "both" => 12
  543. ]
  544. ],
  545. [
  546. "ornament" => [
  547. "type" => "default",
  548. "color" => "#EDEDED"
  549. ],
  550. "style" => "style-3",
  551. "count" => 6,
  552. "nameLineMode" => "single",
  553. "sortWay" => "default",
  554. "imgAroundRadius" => 10,
  555. "goodsNameStyle" => [
  556. "color" => "#303133",
  557. "control" => false,
  558. "fontWeight" => false,
  559. "support" => false
  560. ],
  561. "saleStyle" => [
  562. "color" => "#999CA7",
  563. "control" => false,
  564. "support" => false
  565. ],
  566. "theme" => "default",
  567. "priceStyle" => [
  568. "mainColor" => "#FF1544",
  569. "mainControl" => true,
  570. "lineColor" => "#999CA7",
  571. "lineControl" => false,
  572. "lineSupport" => false
  573. ],
  574. "sources" => "initial",
  575. "goodsId" => [],
  576. "categoryId" => 0,
  577. "categoryName" => "请选择",
  578. "topStyle" => [
  579. "title" => "今日推荐",
  580. "subTitle" => "大家都在买",
  581. "icon" => [
  582. "value" => "icondiy icon-system-tuijian",
  583. "color" => "#FF3D3D",
  584. "bgColor" => ""
  585. ],
  586. "color" => "#303133",
  587. "subColor" => "#999CA7",
  588. "support" => false
  589. ],
  590. "bgUrl" => "app/component/view/goods_recommend/img/style3_bg.png",
  591. "styleName" => "风格3",
  592. "labelStyle" => [
  593. "support" => true,
  594. "bgColor" => "#FF504D",
  595. "title" => "新人专享",
  596. "color" => "#FFFFFF"
  597. ],
  598. "id" => "16uuk7vmsq5c",
  599. "addonName" => "",
  600. "componentName" => "GoodsRecommend",
  601. "componentTitle" => "商品推荐",
  602. "isDelete" => 0,
  603. "pageBgColor" => "",
  604. "componentBgColor" => "",
  605. "componentAngle" => "round",
  606. "topAroundRadius" => 8,
  607. "bottomAroundRadius" => 8,
  608. "elementBgColor" => "",
  609. "elementAngle" => "round",
  610. "topElementAroundRadius" => 0,
  611. "bottomElementAroundRadius" => 0,
  612. "margin" => [
  613. "top" => 6,
  614. "bottom" => 6,
  615. "both" => 12
  616. ]
  617. ],
  618. [
  619. "style" => "style-2",
  620. "sources" => "initial",
  621. "count" => 6,
  622. "goodsId" => [],
  623. "goodsMarginType" => "default",
  624. "goodsMarginNum" => 10,
  625. "ornament" => [
  626. "type" => "default",
  627. "color" => "#EDEDED"
  628. ],
  629. "nameLineMode" => "single",
  630. "template" => "horizontal-slide",
  631. "btnStyle" => [
  632. "text" => "去秒杀",
  633. "textColor" => "#FFFFFF",
  634. "theme" => "default",
  635. "aroundRadius" => 25,
  636. "control" => false,
  637. "support" => false,
  638. "bgColorStart" => "#FF7B1D",
  639. "bgColorEnd" => "#FF1544"
  640. ],
  641. "imgAroundRadius" => 5,
  642. "saleStyle" => [
  643. "color" => "#999CA7",
  644. "control" => false,
  645. "support" => false
  646. ],
  647. "progressStyle" => [
  648. "control" => false,
  649. "support" => false,
  650. "currColor" => "#FDBE6C",
  651. "bgColor" => "#FCECD7"
  652. ],
  653. "titleStyle" => [
  654. "backgroundImage" => "addon/seckill/component/view/seckill/img/style_title_4_bg.png",
  655. "isShow" => true,
  656. "leftStyle" => "img",
  657. "leftImg" => "addon/seckill/component/view/seckill/img/style_title_4_name.png",
  658. "style" => "style-4",
  659. "styleName" => "风格4",
  660. "leftText" => "",
  661. "fontSize" => 16,
  662. "fontWeight" => true,
  663. "textColor" => "#666666",
  664. "bgColorStart" => "#FFFFFF",
  665. "bgColorEnd" => "#FFFFFF",
  666. "more" => "",
  667. "moreColor" => "",
  668. "moreFontSize" => 12,
  669. "timeTextColor" => "#FFFFFF",
  670. "timeBgColor" => "",
  671. "timeImageUrl" => "",
  672. "moreSupport" => false,
  673. "colonColor" => "#FE3718",
  674. "numBgColorStart" => "#FF5F17",
  675. "numBgColorEnd" => "#FE2F18",
  676. "numTextColor" => "#FFFFFF"
  677. ],
  678. "slideMode" => "slide",
  679. "theme" => "default",
  680. "priceStyle" => [
  681. "mainColor" => "#FFFFFF",
  682. "mainControl" => true,
  683. "lineColor" => "#999CA7",
  684. "lineControl" => true,
  685. "lineSupport" => true
  686. ],
  687. "goodsNameStyle" => [
  688. "color" => "#303133",
  689. "control" => false,
  690. "fontWeight" => false
  691. ],
  692. "id" => "2qfjelhllvs0",
  693. "addonName" => "seckill",
  694. "componentName" => "Seckill",
  695. "componentTitle" => "秒杀",
  696. "isDelete" => 0,
  697. "pageBgColor" => "",
  698. "componentBgColor" => "#FFFFFF",
  699. "componentAngle" => "round",
  700. "topAroundRadius" => 8,
  701. "bottomAroundRadius" => 8,
  702. "elementBgColor" => "",
  703. "elementAngle" => "round",
  704. "topElementAroundRadius" => 0,
  705. "bottomElementAroundRadius" => 0,
  706. "margin" => [
  707. "top" => 6,
  708. "bottom" => 6,
  709. "both" => 12
  710. ]
  711. ],
  712. [
  713. "ornament" => [
  714. "type" => "default",
  715. "color" => "#EDEDED"
  716. ],
  717. "id" => "2i5zb56h2dy0",
  718. "addonName" => "pintuan",
  719. "componentName" => "Pintuan",
  720. "componentTitle" => "拼团",
  721. "isDelete" => 0,
  722. "pageBgColor" => "",
  723. "componentBgColor" => "#FFFFFF",
  724. "componentAngle" => "round",
  725. "topAroundRadius" => 8,
  726. "bottomAroundRadius" => 8,
  727. "topElementAroundRadius" => 0,
  728. "bottomElementAroundRadius" => 0,
  729. "margin" => [
  730. "top" => 6,
  731. "bottom" => 6,
  732. "both" => 12
  733. ],
  734. "style" => "style-3",
  735. "sources" => "initial",
  736. "count" => 6,
  737. "goodsId" => [],
  738. "nameLineMode" => "single",
  739. "template" => "horizontal-slide",
  740. "btnStyle" => [
  741. "text" => "去拼团",
  742. "textColor" => "#FFFFFF",
  743. "theme" => "default",
  744. "aroundRadius" => 25,
  745. "control" => false,
  746. "support" => false,
  747. "bgColorStart" => "#FF1544",
  748. "bgColorEnd" => "#FF1544"
  749. ],
  750. "imgAroundRadius" => 10,
  751. "saleStyle" => [
  752. "color" => "#FF1544",
  753. "control" => false,
  754. "support" => false
  755. ],
  756. "slideMode" => "scroll",
  757. "theme" => "default",
  758. "goodsNameStyle" => [
  759. "color" => "#303133",
  760. "control" => true,
  761. "fontWeight" => false
  762. ],
  763. "priceStyle" => [
  764. "mainColor" => "#FF1544",
  765. "mainControl" => true,
  766. "lineColor" => "#999CA7",
  767. "lineControl" => false,
  768. "lineSupport" => false
  769. ],
  770. "titleStyle" => [
  771. "virtualNum" => 999,
  772. "bgColorStart" => "#FFFFFF",
  773. "bgColorEnd" => "#FFFFFF",
  774. "isShow" => true,
  775. "leftStyle" => "img",
  776. "leftImg" => "addon/pintuan/component/view/pintuan/img/style_2_title.png",
  777. "style" => "style-2",
  778. "styleName" => "风格2",
  779. "leftText" => "超值拼团",
  780. "fontSize" => 16,
  781. "fontWeight" => true,
  782. "textColor" => "#888888",
  783. "more" => "更多",
  784. "moreColor" => "#FFFFFF",
  785. "moreFontSize" => 12,
  786. "backgroundImage" => ""
  787. ],
  788. "goodsMarginType" => "default",
  789. "goodsMarginNum" => 10,
  790. "groupStyle" => [
  791. "color" => "#FFFFFF",
  792. "control" => true,
  793. "support" => true,
  794. "bgColorStart" => "#FA2379",
  795. "bgColorEnd" => "#FF4F61"
  796. ],
  797. "elementBgColor" => "",
  798. "elementAngle" => "round"
  799. ],
  800. [
  801. "style" => "style-3",
  802. "sources" => "initial",
  803. "count" => 6,
  804. "goodsId" => [],
  805. "ornament" => [
  806. "type" => "default",
  807. "color" => "#EDEDED"
  808. ],
  809. "nameLineMode" => "single",
  810. "template" => "row1-of1",
  811. "btnStyle" => [
  812. "text" => "去砍价",
  813. "textColor" => "#FFFFFF",
  814. "theme" => "default",
  815. "aroundRadius" => "4",
  816. "control" => true,
  817. "support" => true,
  818. "bgColorStart" => "#3EDB73",
  819. "bgColorEnd" => "#1DB576"
  820. ],
  821. "imgAroundRadius" => 5,
  822. "saleStyle" => [
  823. "color" => "#FFFFFF",
  824. "control" => false,
  825. "support" => false
  826. ],
  827. "slideMode" => "scroll",
  828. "theme" => "default",
  829. "goodsNameStyle" => [
  830. "color" => "#303133",
  831. "control" => true,
  832. "fontWeight" => false
  833. ],
  834. "priceStyle" => [
  835. "mainColor" => "#FF1745",
  836. "mainControl" => true,
  837. "lineColor" => "#999CA7",
  838. "lineControl" => false,
  839. "lineSupport" => false
  840. ],
  841. "titleStyle" => [
  842. "bgColorStart" => "#FFFFFF",
  843. "bgColorEnd" => "#FFFFFF",
  844. "isShow" => true,
  845. "leftStyle" => "img",
  846. "leftImg" => "addon/bargain/component/view/bargain/img/row1_of1_style_3_name.png",
  847. "style" => "style-2",
  848. "styleName" => "风格2",
  849. "leftText" => "疯狂砍价",
  850. "fontSize" => 16,
  851. "fontWeight" => true,
  852. "textColor" => "#FFFFFF",
  853. "more" => "更多",
  854. "moreColor" => "#FFFFFF",
  855. "moreFontSize" => 12,
  856. "backgroundImage" => ""
  857. ],
  858. "goodsMarginType" => "default",
  859. "goodsMarginNum" => 10,
  860. "id" => "4x7liou5lm20",
  861. "addonName" => "bargain",
  862. "componentName" => "Bargain",
  863. "componentTitle" => "砍价",
  864. "isDelete" => 0,
  865. "pageBgColor" => "",
  866. "componentBgColor" => "#FFFFFF",
  867. "componentAngle" => "round",
  868. "topAroundRadius" => 8,
  869. "bottomAroundRadius" => 8,
  870. "elementBgColor" => "",
  871. "elementAngle" => "round",
  872. "topElementAroundRadius" => 0,
  873. "bottomElementAroundRadius" => 0,
  874. "margin" => [
  875. "top" => 6,
  876. "bottom" => 6,
  877. "both" => 12
  878. ]
  879. ],
  880. [
  881. "ornament" => [
  882. "type" => "default",
  883. "color" => "#EDEDED"
  884. ],
  885. "template" => "row1-of2",
  886. "goodsMarginType" => "default",
  887. "goodsMarginNum" => 10,
  888. "style" => "style-2",
  889. "sources" => "initial",
  890. "count" => 6,
  891. "goodsId" => [],
  892. "categoryId" => 0,
  893. "categoryName" => "请选择",
  894. "sortWay" => "default",
  895. "nameLineMode" => "single",
  896. "imgAroundRadius" => 0,
  897. "slideMode" => "scroll",
  898. "theme" => "default",
  899. "btnStyle" => [
  900. "fontWeight" => false,
  901. "padding" => 0,
  902. "cartEvent" => "cart",
  903. "text" => "购买",
  904. "textColor" => "#FFFFFF",
  905. "theme" => "default",
  906. "aroundRadius" => 25,
  907. "control" => true,
  908. "support" => true,
  909. "bgColor" => "#FF6A00",
  910. "style" => "button",
  911. "iconDiy" => [
  912. "iconType" => "icon",
  913. "icon" => "",
  914. "style" => [
  915. "fontSize" => "60",
  916. "iconBgColor" => [],
  917. "iconBgColorDeg" => 0,
  918. "iconBgImg" => "",
  919. "bgRadius" => 0,
  920. "iconColor" => [
  921. "#000000"
  922. ],
  923. "iconColorDeg" => 0
  924. ]
  925. ]
  926. ],
  927. "tag" => [
  928. "text" => "隐藏",
  929. "value" => "hidden"
  930. ],
  931. "goodsNameStyle" => [
  932. "color" => "#303133",
  933. "control" => true,
  934. "fontWeight" => false
  935. ],
  936. "saleStyle" => [
  937. "color" => "#999CA7",
  938. "control" => true,
  939. "support" => true
  940. ],
  941. "priceStyle" => [
  942. "mainColor" => "#FF6A00",
  943. "mainControl" => true,
  944. "lineColor" => "#999CA7",
  945. "lineControl" => true,
  946. "lineSupport" => true
  947. ],
  948. "id" => "4dd123y6pco",
  949. "addonName" => "",
  950. "componentName" => "GoodsList",
  951. "componentTitle" => "商品列表",
  952. "isDelete" => 0,
  953. "pageBgColor" => "",
  954. "componentBgColor" => "",
  955. "componentAngle" => "round",
  956. "topAroundRadius" => 8,
  957. "bottomAroundRadius" => 8,
  958. "elementBgColor" => "#FFFFFF",
  959. "elementAngle" => "round",
  960. "topElementAroundRadius" => 8,
  961. "bottomElementAroundRadius" => 8,
  962. "margin" => [
  963. "top" => 6,
  964. "bottom" => 0,
  965. "both" => 12
  966. ]
  967. ]
  968. ]
  969. ]
  970. ],
  971. [
  972. 'title' => '会员中心',
  973. 'name' => "DIY_VIEW_MEMBER_INDEX",
  974. 'value' => [
  975. "global" => [
  976. "title" => "会员中心",
  977. "pageBgColor" => "#F8F8F8",
  978. "topNavColor" => "#FFFFFF",
  979. "topNavBg" => true,
  980. "navBarSwitch" => false,
  981. "navStyle" => 1,
  982. "textNavColor" => "#333333",
  983. "topNavImg" => "",
  984. "moreLink" => [
  985. "name" => ""
  986. ],
  987. "openBottomNav" => true,
  988. "textImgPosLink" => "center",
  989. "mpCollect" => false,
  990. "popWindow" => [
  991. "imageUrl" => "",
  992. "count" => -1,
  993. "show" => 0,
  994. "link" => [
  995. "name" => ""
  996. ],
  997. "imgWidth" => "",
  998. "imgHeight" => ""
  999. ],
  1000. "bgUrl" => "",
  1001. "imgWidth" => "",
  1002. "imgHeight" => "",
  1003. "template" => [
  1004. "pageBgColor" => "",
  1005. "textColor" => "#303133",
  1006. "componentBgColor" => "",
  1007. "componentAngle" => "round",
  1008. "topAroundRadius" => 0,
  1009. "bottomAroundRadius" => 0,
  1010. "elementBgColor" => "",
  1011. "elementAngle" => "round",
  1012. "topElementAroundRadius" => 0,
  1013. "bottomElementAroundRadius" => 0,
  1014. "margin" => [
  1015. "top" => 0,
  1016. "bottom" => 0,
  1017. "both" => 0
  1018. ]
  1019. ]
  1020. ],
  1021. "value" => [
  1022. [
  1023. "style" => 4,
  1024. "theme" => "default",
  1025. "bgColorStart" => "#FF7230",
  1026. "bgColorEnd" => "#FF1544",
  1027. "gradientAngle" => "129",
  1028. "infoMargin" => 12,
  1029. "id" => "1tkaoxbhavj4",
  1030. "addonName" => "",
  1031. "componentName" => "MemberInfo",
  1032. "componentTitle" => "会员信息",
  1033. "isDelete" => 0,
  1034. "pageBgColor" => "",
  1035. "textColor" => "#303133",
  1036. "componentBgColor" => "",
  1037. "componentAngle" => "round",
  1038. "topAroundRadius" => 0,
  1039. "bottomAroundRadius" => 0,
  1040. "elementBgColor" => "",
  1041. "elementAngle" => "round",
  1042. "topElementAroundRadius" => 0,
  1043. "bottomElementAroundRadius" => 0,
  1044. "margin" => [
  1045. "top" => 0,
  1046. "bottom" => 0,
  1047. "both" => 0
  1048. ]
  1049. ],
  1050. [
  1051. "style" => "style-12",
  1052. "styleName" => "风格12",
  1053. "text" => "我的订单",
  1054. "link" => [
  1055. "name" => ""
  1056. ],
  1057. "fontSize" => 15,
  1058. "fontWeight" => "bold",
  1059. "subTitle" => [
  1060. "fontSize" => 14,
  1061. "text" => "",
  1062. "isElementShow" => true,
  1063. "color" => "#999999",
  1064. "bgColor" => "#303133"
  1065. ],
  1066. "more" => [
  1067. "text" => "查看全部",
  1068. "link" => [
  1069. "name" => "ALL_ORDER",
  1070. "title" => "全部订单",
  1071. "wap_url" => "/pages/order/list",
  1072. "parent" => "MALL_LINK"
  1073. ],
  1074. "isShow" => 1,
  1075. "isElementShow" => true,
  1076. "color" => "#999999"
  1077. ],
  1078. "id" => "2txcvx3d5u6",
  1079. "addonName" => "",
  1080. "componentName" => "Text",
  1081. "componentTitle" => "标题",
  1082. "isDelete" => 0,
  1083. "pageBgColor" => "",
  1084. "textColor" => "#121836",
  1085. "componentBgColor" => "#FFFFFF",
  1086. "componentAngle" => "round",
  1087. "topAroundRadius" => 9,
  1088. "bottomAroundRadius" => 0,
  1089. "topElementAroundRadius" => 0,
  1090. "bottomElementAroundRadius" => 0,
  1091. "margin" => [
  1092. "top" => 12,
  1093. "bottom" => 0,
  1094. "both" => 12
  1095. ]
  1096. ],
  1097. [
  1098. "icon" => [
  1099. "waitPay" => [
  1100. "title" => "待支付",
  1101. "icon" => "icondiy icon-system-daizhifu",
  1102. "style" => [
  1103. "bgRadius" => 0,
  1104. "fontSize" => 90,
  1105. "iconBgColor" => [],
  1106. "iconBgColorDeg" => 0,
  1107. "iconBgImg" => "",
  1108. "iconColor" => [ "#20DA86", "#03B352" ],
  1109. "iconColorDeg" => 0
  1110. ]
  1111. ],
  1112. "waitSend" => [
  1113. "title" => "备货中",
  1114. "icon" => "icondiy icon-system-beihuozhong",
  1115. "style" => [
  1116. "bgRadius" => 0,
  1117. "fontSize" => 90,
  1118. "iconBgColor" => [],
  1119. "iconBgColorDeg" => 0,
  1120. "iconBgImg" => "",
  1121. "iconColor" => [ "#20DA86", "#03B352" ],
  1122. "iconColorDeg" => 0
  1123. ]
  1124. ],
  1125. "waitConfirm" => [
  1126. "title" => "配送中",
  1127. "icon" => "icondiy icon-system-paisongzhong",
  1128. "style" => [
  1129. "bgRadius" => 0,
  1130. "fontSize" => 90,
  1131. "iconBgColor" => [],
  1132. "iconBgColorDeg" => 0,
  1133. "iconBgImg" => "",
  1134. "iconColor" => [ "#20DA86", "#03B352" ],
  1135. "iconColorDeg" => 0
  1136. ]
  1137. ],
  1138. "waitUse" => [
  1139. "title" => "待使用",
  1140. "icon" => "icondiy icon-system-daishiyong2",
  1141. "style" => [
  1142. "bgRadius" => 0,
  1143. "fontSize" => 75,
  1144. "iconBgColor" => [],
  1145. "iconBgColorDeg" => 0,
  1146. "iconBgImg" => "",
  1147. "iconColor" => [ "#20DA86", "#03B352" ],
  1148. "iconColorDeg" => 0
  1149. ]
  1150. ],
  1151. "refunding" => [
  1152. "title" => "退换货",
  1153. "icon" => "icondiy icon-system-tuihuoguanli",
  1154. "style" => [
  1155. "bgRadius" => 0,
  1156. "fontSize" => 90,
  1157. "iconBgColor" => [],
  1158. "iconBgColorDeg" => 0,
  1159. "iconBgImg" => "",
  1160. "iconColor" => [ "#20DA86", "#03B352" ],
  1161. "iconColorDeg" => 0
  1162. ]
  1163. ]
  1164. ],
  1165. "style" => 4,
  1166. "id" => "2bplt2x9n0bo",
  1167. "addonName" => "",
  1168. "componentName" => "MemberMyOrder",
  1169. "componentTitle" => "我的订单",
  1170. "isDelete" => 0,
  1171. "pageBgColor" => "",
  1172. "textColor" => "#303133",
  1173. "componentBgColor" => "#FFFFFF",
  1174. "componentAngle" => "round",
  1175. "topAroundRadius" => 0,
  1176. "bottomAroundRadius" => 9,
  1177. "elementBgColor" => "",
  1178. "elementAngle" => "round",
  1179. "topElementAroundRadius" => 0,
  1180. "bottomElementAroundRadius" => 0,
  1181. "margin" => [
  1182. "top" => 0,
  1183. "bottom" => 0,
  1184. "both" => 12
  1185. ]
  1186. ],
  1187. [
  1188. "style" => "style-12",
  1189. "styleName" => "风格12",
  1190. "text" => "我的服务",
  1191. "link" => [
  1192. "name" => ""
  1193. ],
  1194. "fontSize" => 15,
  1195. "fontWeight" => "bold",
  1196. "subTitle" => [
  1197. "fontSize" => 14,
  1198. "text" => "",
  1199. "isElementShow" => true,
  1200. "color" => "#999999",
  1201. "bgColor" => "#303133"
  1202. ],
  1203. "more" => [
  1204. "text" => "",
  1205. "link" => [
  1206. "name" => ""
  1207. ],
  1208. "isShow" => 0,
  1209. "isElementShow" => true,
  1210. "color" => "#999999"
  1211. ],
  1212. "id" => "405rb6vv3rq0",
  1213. "addonName" => "",
  1214. "componentName" => "Text",
  1215. "componentTitle" => "标题",
  1216. "isDelete" => 0,
  1217. "pageBgColor" => "",
  1218. "textColor" => "#121836",
  1219. "componentBgColor" => "#FFFFFF",
  1220. "componentAngle" => "round",
  1221. "topAroundRadius" => 9,
  1222. "bottomAroundRadius" => 0,
  1223. "topElementAroundRadius" => 0,
  1224. "bottomElementAroundRadius" => 0,
  1225. "margin" => [
  1226. "top" => 12,
  1227. "bottom" => 0,
  1228. "both" => 12
  1229. ]
  1230. ],
  1231. [
  1232. "mode" => "graphic",
  1233. "type" => "img",
  1234. "showStyle" => "fixed",
  1235. "ornament" => [
  1236. "type" => "default",
  1237. "color" => "#EDEDED"
  1238. ],
  1239. "rowCount" => 5,
  1240. "pageCount" => 2,
  1241. "carousel" => [
  1242. "type" => "circle",
  1243. "color" => "#FFFFFF"
  1244. ],
  1245. "imageSize" => 30,
  1246. "aroundRadius" => 0,
  1247. "font" => [
  1248. "size" => 12,
  1249. "weight" => "normal",
  1250. "color" => "#666666"
  1251. ],
  1252. "list" => [
  1253. [
  1254. "title" => "我的资料",
  1255. "imageUrl" => "public/uniapp/member/index/menu/new_persion.png",
  1256. "iconType" => "img",
  1257. "style" => [
  1258. "fontSize" => "60",
  1259. "iconBgColor" => [],
  1260. "iconBgColorDeg" => 0,
  1261. "iconBgImg" => "",
  1262. "bgRadius" => 0,
  1263. "iconColor" => [
  1264. "#000000"
  1265. ],
  1266. "iconColorDeg" => 0
  1267. ],
  1268. "link" => [
  1269. "name" => "MEMBER_INFO",
  1270. "title" => "个人资料",
  1271. "wap_url" => "/pages_tool/member/info",
  1272. "parent" => "MALL_LINK"
  1273. ],
  1274. "label" => [
  1275. "control" => false,
  1276. "text" => "热门",
  1277. "textColor" => "#FFFFFF",
  1278. "bgColorStart" => "#F83287",
  1279. "bgColorEnd" => "#FE3423"
  1280. ],
  1281. "icon" => "",
  1282. "id" => "10rhv0x6phhc0",
  1283. "imgWidth" => "60",
  1284. "imgHeight" => "60"
  1285. ],
  1286. [
  1287. "title" => "签到",
  1288. "imageUrl" => "public/uniapp/member/index/menu/new_sign.png",
  1289. "iconType" => "img",
  1290. "style" => "",
  1291. "link" => [
  1292. "name" => "SIGN_IN",
  1293. "title" => "签到",
  1294. "wap_url" => "/pages_tool/member/signin",
  1295. "parent" => "MARKETING_LINK"
  1296. ],
  1297. "label" => [
  1298. "control" => false,
  1299. "text" => "热门",
  1300. "textColor" => "#FFFFFF",
  1301. "bgColorStart" => "#F83287",
  1302. "bgColorEnd" => "#FE3423"
  1303. ],
  1304. "iconfont" => [
  1305. "value" => "",
  1306. "color" => ""
  1307. ],
  1308. "id" => "hodjcxowf8g0",
  1309. "imgWidth" => "60",
  1310. "imgHeight" => "60"
  1311. ],
  1312. [
  1313. "title" => "收货地址",
  1314. "imageUrl" => "public/uniapp/member/index/menu/new_address.png",
  1315. "iconType" => "img",
  1316. "style" => [
  1317. "fontSize" => "60",
  1318. "iconBgColor" => [],
  1319. "iconBgColorDeg" => 0,
  1320. "iconBgImg" => "",
  1321. "bgRadius" => 0,
  1322. "iconColor" => [
  1323. "#000000"
  1324. ],
  1325. "iconColorDeg" => 0
  1326. ],
  1327. "link" => [
  1328. "name" => "SHIPPING_ADDRESS",
  1329. "title" => "收货地址",
  1330. "wap_url" => "/pages_tool/member/address",
  1331. "parent" => "MALL_LINK"
  1332. ],
  1333. "label" => [
  1334. "control" => false,
  1335. "text" => "热门",
  1336. "textColor" => "#FFFFFF",
  1337. "bgColorStart" => "#F83287",
  1338. "bgColorEnd" => "#FE3423"
  1339. ],
  1340. "icon" => "",
  1341. "id" => "1n8gycn6xqe80",
  1342. "imgWidth" => "60",
  1343. "imgHeight" => "60"
  1344. ],
  1345. [
  1346. "title" => "优惠券",
  1347. "imageUrl" => "public/uniapp/member/index/menu/new_coupon.png",
  1348. "iconType" => "img",
  1349. "style" => "",
  1350. "link" => [
  1351. "name" => "COUPON",
  1352. "title" => "优惠券",
  1353. "wap_url" => "/pages_tool/member/coupon",
  1354. "parent" => "MALL_LINK"
  1355. ],
  1356. "label" => [
  1357. "control" => false,
  1358. "text" => "热门",
  1359. "textColor" => "#FFFFFF",
  1360. "bgColorStart" => "#F83287",
  1361. "bgColorEnd" => "#FE3423"
  1362. ],
  1363. "iconfont" => [
  1364. "value" => "",
  1365. "color" => ""
  1366. ],
  1367. "id" => "1tnu0vihrnq80",
  1368. "imgWidth" => "60",
  1369. "imgHeight" => "60"
  1370. ],
  1371. [
  1372. "title" => "我的拼单",
  1373. "imageUrl" => "public/uniapp/member/index/menu/new_pindan.png",
  1374. "iconType" => "img",
  1375. "style" => "",
  1376. "link" => [
  1377. "name" => "MY_PINTUAN",
  1378. "title" => "我的拼团",
  1379. "wap_url" => "/pages_promotion/pintuan/my_spell",
  1380. "parent" => "MARKETING_LINK"
  1381. ],
  1382. "label" => [
  1383. "control" => false,
  1384. "text" => "热门",
  1385. "textColor" => "#FFFFFF",
  1386. "bgColorStart" => "#F83287",
  1387. "bgColorEnd" => "#FE3423"
  1388. ],
  1389. "iconfont" => [
  1390. "value" => "",
  1391. "color" => ""
  1392. ],
  1393. "id" => "uoarcfsleio0",
  1394. "imgWidth" => "60",
  1395. "imgHeight" => "60"
  1396. ],
  1397. [
  1398. "title" => "我的礼品",
  1399. "imageUrl" => "public/uniapp/member/index/menu/new_gift.png",
  1400. "iconType" => "img",
  1401. "style" => "",
  1402. "link" => [
  1403. "name" => "MEMBER_RECOMMEND",
  1404. "title" => "邀请有礼",
  1405. "wap_url" => "/pages_tool/member/invite_friends",
  1406. "parent" => "MARKETING_LINK"
  1407. ],
  1408. "label" => [
  1409. "control" => false,
  1410. "text" => "热门",
  1411. "textColor" => "#FFFFFF",
  1412. "bgColorStart" => "#F83287",
  1413. "bgColorEnd" => "#FE3423"
  1414. ],
  1415. "iconfont" => [
  1416. "value" => "",
  1417. "color" => ""
  1418. ],
  1419. "id" => "1h34nmfisge80",
  1420. "imgWidth" => "60",
  1421. "imgHeight" => "60"
  1422. ],
  1423. [
  1424. "title" => "我的关注",
  1425. "imageUrl" => "public/uniapp/member/index/menu/new_like.png",
  1426. "iconType" => "img",
  1427. "style" => [
  1428. "fontSize" => "60",
  1429. "iconBgColor" => [],
  1430. "iconBgColorDeg" => 0,
  1431. "iconBgImg" => "",
  1432. "bgRadius" => 0,
  1433. "iconColor" => [
  1434. "#000000"
  1435. ],
  1436. "iconColorDeg" => 0
  1437. ],
  1438. "link" => [
  1439. "name" => "ATTENTION",
  1440. "title" => "我的关注",
  1441. "wap_url" => "/pages_tool/member/collection",
  1442. "parent" => "MALL_LINK"
  1443. ],
  1444. "label" => [
  1445. "control" => false,
  1446. "text" => "热门",
  1447. "textColor" => "#FFFFFF",
  1448. "bgColorStart" => "#F83287",
  1449. "bgColorEnd" => "#FE3423"
  1450. ],
  1451. "icon" => "",
  1452. "id" => "cnamoch6cvk0",
  1453. "imgWidth" => "60",
  1454. "imgHeight" => "60"
  1455. ],
  1456. [
  1457. "title" => "我的足迹",
  1458. "imageUrl" => "public/uniapp/member/index/menu/new_foot.png",
  1459. "iconType" => "img",
  1460. "style" => [
  1461. "fontSize" => "60",
  1462. "iconBgColor" => [],
  1463. "iconBgColorDeg" => 0,
  1464. "iconBgImg" => "",
  1465. "bgRadius" => 0,
  1466. "iconColor" => [
  1467. "#000000"
  1468. ],
  1469. "iconColorDeg" => 0
  1470. ],
  1471. "link" => [
  1472. "name" => "FOOTPRINT",
  1473. "title" => "我的足迹",
  1474. "wap_url" => "/pages_tool/member/footprint",
  1475. "parent" => "MALL_LINK"
  1476. ],
  1477. "label" => [
  1478. "control" => false,
  1479. "text" => "热门",
  1480. "textColor" => "#FFFFFF",
  1481. "bgColorStart" => "#F83287",
  1482. "bgColorEnd" => "#FE3423"
  1483. ],
  1484. "icon" => "",
  1485. "id" => "drf3hi3slo00",
  1486. "imgWidth" => "60",
  1487. "imgHeight" => "60"
  1488. ],
  1489. [
  1490. "title" => "我的砍价",
  1491. "imageUrl" => "public/uniapp/member/index/menu/new_bargain.png",
  1492. "iconType" => "img",
  1493. "style" => "",
  1494. "link" => [
  1495. "name" => "MY_BARGAIN",
  1496. "title" => "我的砍价",
  1497. "wap_url" => "/pages_promotion/bargain/my_bargain",
  1498. "parent" => "MARKETING_LINK"
  1499. ],
  1500. "label" => [
  1501. "control" => false,
  1502. "text" => "热门",
  1503. "textColor" => "#FFFFFF",
  1504. "bgColorStart" => "#F83287",
  1505. "bgColorEnd" => "#FE3423"
  1506. ],
  1507. "iconfont" => [
  1508. "value" => "",
  1509. "color" => ""
  1510. ],
  1511. "id" => "13uz22sbag000",
  1512. "imgWidth" => "60",
  1513. "imgHeight" => "60"
  1514. ],
  1515. [
  1516. "title" => "积分兑换",
  1517. "imageUrl" => "public/uniapp/member/index/menu/new_point_change.png",
  1518. "iconType" => "img",
  1519. "style" => "",
  1520. "link" => [
  1521. "name" => "INTEGRAL_CONVERSION",
  1522. "title" => "积分兑换",
  1523. "wap_url" => "/pages_promotion/point/order_list",
  1524. "parent" => "MARKETING_LINK"
  1525. ],
  1526. "label" => [
  1527. "control" => false,
  1528. "text" => "热门",
  1529. "textColor" => "#FFFFFF",
  1530. "bgColorStart" => "#F83287",
  1531. "bgColorEnd" => "#FE3423"
  1532. ],
  1533. "iconfont" => [
  1534. "value" => "",
  1535. "color" => ""
  1536. ],
  1537. "id" => "rnyw8xo5rdc0",
  1538. "imgWidth" => "60",
  1539. "imgHeight" => "60"
  1540. ]
  1541. ],
  1542. "id" => "5ywbzsnigpw0",
  1543. "addonName" => "",
  1544. "componentName" => "GraphicNav",
  1545. "componentTitle" => "图文导航",
  1546. "isDelete" => 0,
  1547. "pageBgColor" => "",
  1548. "componentBgColor" => "#FFFFFF",
  1549. "componentAngle" => "round",
  1550. "topAroundRadius" => 0,
  1551. "bottomAroundRadius" => 9,
  1552. "topElementAroundRadius" => 0,
  1553. "bottomElementAroundRadius" => 0,
  1554. "margin" => [
  1555. "top" => 0,
  1556. "bottom" => 12,
  1557. "both" => 12
  1558. ]
  1559. ],
  1560. [
  1561. "style" => "style-12",
  1562. "styleName" => "风格12",
  1563. "text" => "我的工具",
  1564. "link" => [
  1565. "name" => ""
  1566. ],
  1567. "fontSize" => 15,
  1568. "fontWeight" => "bold",
  1569. "subTitle" => [
  1570. "fontSize" => 14,
  1571. "text" => "",
  1572. "isElementShow" => true,
  1573. "color" => "#999999",
  1574. "bgColor" => "#303133"
  1575. ],
  1576. "more" => [
  1577. "text" => "",
  1578. "link" => [
  1579. "name" => ""
  1580. ],
  1581. "isShow" => 0,
  1582. "isElementShow" => true,
  1583. "color" => "#999999"
  1584. ],
  1585. "id" => "1dbblwhsuwg0",
  1586. "addonName" => "",
  1587. "componentName" => "Text",
  1588. "componentTitle" => "标题",
  1589. "isDelete" => 0,
  1590. "pageBgColor" => "",
  1591. "textColor" => "#121836",
  1592. "componentBgColor" => "#FFFFFF",
  1593. "componentAngle" => "round",
  1594. "topAroundRadius" => 9,
  1595. "bottomAroundRadius" => 0,
  1596. "topElementAroundRadius" => 0,
  1597. "bottomElementAroundRadius" => 0,
  1598. "margin" => [
  1599. "top" => 0,
  1600. "bottom" => 0,
  1601. "both" => 12
  1602. ]
  1603. ],
  1604. [
  1605. "ornament" => [
  1606. "type" => "default",
  1607. "color" => "#EDEDED"
  1608. ],
  1609. "list" => [
  1610. [
  1611. "title" => "分销中心",
  1612. "style" => [
  1613. "fontSize" => "60",
  1614. "iconBgColor" => [],
  1615. "iconBgColorDeg" => 0,
  1616. "iconBgImg" => "",
  1617. "bgRadius" => 0,
  1618. "iconColor" => [
  1619. "#000000"
  1620. ],
  1621. "iconColorDeg" => 0
  1622. ],
  1623. "link" => [
  1624. "name" => "DISTRIBUTION_CENTRE",
  1625. "title" => "分销中心",
  1626. "wap_url" => "/pages_promotion/fenxiao/index",
  1627. "parent" => "MARKETING_LINK"
  1628. ],
  1629. "icon" => "",
  1630. "iconType" => "img",
  1631. "imageUrl" => "public/uniapp/member/index/menu/new_fenxiao.png",
  1632. "label" => [
  1633. "control" => false,
  1634. "text" => "热门",
  1635. "textColor" => "#FFFFFF",
  1636. "bgColorStart" => "#F83287",
  1637. "bgColorEnd" => "#FE3423"
  1638. ],
  1639. "id" => "cox48f75shs0",
  1640. "imgWidth" => "60",
  1641. "imgHeight" => "60"
  1642. ],
  1643. [
  1644. "title" => "账户列表",
  1645. "style" => [
  1646. "fontSize" => "60",
  1647. "iconBgColor" => [],
  1648. "iconBgColorDeg" => 0,
  1649. "iconBgImg" => "",
  1650. "bgRadius" => 0,
  1651. "iconColor" => [
  1652. "#000000"
  1653. ],
  1654. "iconColorDeg" => 0
  1655. ],
  1656. "link" => [
  1657. "name" => "ACCOUNT",
  1658. "title" => "账户列表",
  1659. "wap_url" => "/pages_tool/member/account",
  1660. "parent" => "MALL_LINK"
  1661. ],
  1662. "icon" => "",
  1663. "iconType" => "img",
  1664. "imageUrl" => "public/uniapp/member/index/menu/new_account.png",
  1665. "label" => [
  1666. "control" => false,
  1667. "text" => "热门",
  1668. "textColor" => "#FFFFFF",
  1669. "bgColorStart" => "#F83287",
  1670. "bgColorEnd" => "#FE3423"
  1671. ],
  1672. "id" => "5q0mccyypjo0",
  1673. "imgWidth" => "60",
  1674. "imgHeight" => "60"
  1675. ],
  1676. [
  1677. "title" => "红包列表",
  1678. "style" => [
  1679. "fontSize" => "60",
  1680. "iconBgColor" => [],
  1681. "iconBgColorDeg" => 0,
  1682. "iconBgImg" => "",
  1683. "bgRadius" => 0,
  1684. "iconColor" => [
  1685. "#000000"
  1686. ],
  1687. "iconColorDeg" => 0
  1688. ],
  1689. "link" => [
  1690. "name" => ""
  1691. ],
  1692. "icon" => "",
  1693. "iconType" => "img",
  1694. "imageUrl" => "public/uniapp/member/index/menu/new_red_package.png",
  1695. "label" => [
  1696. "control" => false,
  1697. "text" => "热门",
  1698. "textColor" => "#FFFFFF",
  1699. "bgColorStart" => "#F83287",
  1700. "bgColorEnd" => "#FE3423"
  1701. ],
  1702. "id" => "1jyhbd1gn5j40",
  1703. "imgWidth" => "60",
  1704. "imgHeight" => "60"
  1705. ],
  1706. [
  1707. "title" => "我的预售",
  1708. "style" => [
  1709. "fontSize" => "60",
  1710. "iconBgColor" => [],
  1711. "iconBgColorDeg" => 0,
  1712. "iconBgImg" => "",
  1713. "bgRadius" => 0,
  1714. "iconColor" => [
  1715. "#000000"
  1716. ],
  1717. "iconColorDeg" => 0
  1718. ],
  1719. "link" => [
  1720. "name" => "MAPRESALE_PREFECTURE",
  1721. "title" => "我的预售",
  1722. "wap_url" => "/pages_promotion/presale/order_list",
  1723. "parent" => "MARKETING_LINK"
  1724. ],
  1725. "icon" => "",
  1726. "iconType" => "img",
  1727. "imageUrl" => "public/uniapp/member/index/menu/new_presale.png",
  1728. "label" => [
  1729. "control" => false,
  1730. "text" => "热门",
  1731. "textColor" => "#FFFFFF",
  1732. "bgColorStart" => "#F83287",
  1733. "bgColorEnd" => "#FE3423"
  1734. ],
  1735. "id" => "r18ye6w6l000",
  1736. "imgWidth" => "60",
  1737. "imgHeight" => "60"
  1738. ],
  1739. [
  1740. "title" => "单位采购",
  1741. "icon" => "",
  1742. "imageUrl" => "public/uniapp/member/index/menu/new_unit_purchase.png",
  1743. "iconType" => "img",
  1744. "style" => [
  1745. "fontSize" => "60",
  1746. "iconBgColor" => [],
  1747. "iconBgColorDeg" => 0,
  1748. "iconBgImg" => "",
  1749. "bgRadius" => 0,
  1750. "iconColor" => [
  1751. "#000000"
  1752. ],
  1753. "iconColorDeg" => 0
  1754. ],
  1755. "link" => [
  1756. "name" => ""
  1757. ],
  1758. "label" => [
  1759. "control" => false,
  1760. "text" => "热门",
  1761. "textColor" => "#FFFFFF",
  1762. "bgColorStart" => "#F83287",
  1763. "bgColorEnd" => "#FE3423"
  1764. ],
  1765. "id" => "et2y2d7do6w0",
  1766. "imgWidth" => "60",
  1767. "imgHeight" => "60"
  1768. ],
  1769. [
  1770. "title" => "生活订水",
  1771. "icon" => "",
  1772. "imageUrl" => "public/uniapp/member/index/menu/new_life_water.png",
  1773. "iconType" => "img",
  1774. "style" => [
  1775. "fontSize" => "60",
  1776. "iconBgColor" => [],
  1777. "iconBgColorDeg" => 0,
  1778. "iconBgImg" => "",
  1779. "bgRadius" => 0,
  1780. "iconColor" => [
  1781. "#000000"
  1782. ],
  1783. "iconColorDeg" => 0
  1784. ],
  1785. "link" => [
  1786. "name" => ""
  1787. ],
  1788. "label" => [
  1789. "control" => false,
  1790. "text" => "热门",
  1791. "textColor" => "#FFFFFF",
  1792. "bgColorStart" => "#F83287",
  1793. "bgColorEnd" => "#FE3423"
  1794. ],
  1795. "id" => "11a3m3u72ukw0",
  1796. "imgWidth" => "60",
  1797. "imgHeight" => "60"
  1798. ],
  1799. [
  1800. "title" => "投诉建议",
  1801. "icon" => "",
  1802. "imageUrl" => "public/uniapp/member/index/menu/new_advice.png",
  1803. "iconType" => "img",
  1804. "style" => [
  1805. "fontSize" => "60",
  1806. "iconBgColor" => [],
  1807. "iconBgColorDeg" => 0,
  1808. "iconBgImg" => "",
  1809. "bgRadius" => 0,
  1810. "iconColor" => [
  1811. "#000000"
  1812. ],
  1813. "iconColorDeg" => 0
  1814. ],
  1815. "link" => [
  1816. "name" => ""
  1817. ],
  1818. "label" => [
  1819. "control" => false,
  1820. "text" => "热门",
  1821. "textColor" => "#FFFFFF",
  1822. "bgColorStart" => "#F83287",
  1823. "bgColorEnd" => "#FE3423"
  1824. ],
  1825. "id" => "1ydxsnwlrxmo0",
  1826. "imgWidth" => "60",
  1827. "imgHeight" => "60"
  1828. ],
  1829. [
  1830. "title" => "客服入口",
  1831. "icon" => "",
  1832. "imageUrl" => "public/uniapp/member/index/menu/new_service.png",
  1833. "iconType" => "img",
  1834. "style" => [
  1835. "fontSize" => "60",
  1836. "iconBgColor" => [],
  1837. "iconBgColorDeg" => 0,
  1838. "iconBgImg" => "",
  1839. "bgRadius" => 0,
  1840. "iconColor" => [
  1841. "#000000"
  1842. ],
  1843. "iconColorDeg" => 0
  1844. ],
  1845. "link" => [
  1846. "name" => ""
  1847. ],
  1848. "label" => [
  1849. "control" => false,
  1850. "text" => "热门",
  1851. "textColor" => "#FFFFFF",
  1852. "bgColorStart" => "#F83287",
  1853. "bgColorEnd" => "#FE3423"
  1854. ],
  1855. "id" => "1jb54egmii1s0",
  1856. "imgWidth" => "60",
  1857. "imgHeight" => "60"
  1858. ]
  1859. ],
  1860. "mode" => "graphic",
  1861. "type" => "img",
  1862. "showStyle" => "fixed",
  1863. "rowCount" => 5,
  1864. "pageCount" => 2,
  1865. "carousel" => [
  1866. "type" => "circle",
  1867. "color" => "#FFFFFF"
  1868. ],
  1869. "imageSize" => 30,
  1870. "aroundRadius" => 25,
  1871. "font" => [
  1872. "size" => 12,
  1873. "weight" => "normal",
  1874. "color" => "#666666"
  1875. ],
  1876. "id" => "cdv0gsi1cw0",
  1877. "addonName" => "",
  1878. "componentName" => "GraphicNav",
  1879. "componentTitle" => "图文导航",
  1880. "isDelete" => 0,
  1881. "pageBgColor" => "",
  1882. "componentBgColor" => "#FFFFFF",
  1883. "componentAngle" => "round",
  1884. "topAroundRadius" => 0,
  1885. "bottomAroundRadius" => 9,
  1886. "topElementAroundRadius" => 0,
  1887. "bottomElementAroundRadius" => 0,
  1888. "margin" => [
  1889. "top" => 0,
  1890. "bottom" => 12,
  1891. "both" => 12
  1892. ]
  1893. ]
  1894. ]
  1895. ]
  1896. ]
  1897. ]
  1898. ];