shopping.data.js 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863
  1. export default [{
  2. seriesName: "酒水饮料", //分类
  3. seriesIcon: "/static/image/shopping/icon1.png",
  4. tyList: [{
  5. "name": "饮料冲调",
  6. "foods": [{
  7. "name": "味全每日C橙汁 300ml*12",
  8. "key": "味全每日C橙汁 300ml*12",
  9. "icon": "/static/image/shopping/shop1.png",
  10. 'basePrice': "73.9",
  11. 'salePrice': "106.8",
  12. },
  13. {
  14. "name": "杞里香 红润茶(五红茶)120g(12袋)",
  15. "key": "杞里香 红润茶(五红茶)120g(12袋)",
  16. "icon": "/static/image/shopping/shop2.png",
  17. 'basePrice': "23.9",
  18. 'salePrice': "30.8",
  19. },
  20. {
  21. "name": "杞里香 新品瓶装3号黑构杞100g",
  22. "key": "杞里香 新品瓶装3号黑构杞100g",
  23. "icon": "/static/image/shopping/shop3.png",
  24. 'basePrice': "22.9",
  25. 'salePrice': "27",
  26. },
  27. {
  28. "name": "杞里香 紫盒1号黑枸杞80g",
  29. "key": "杞里香 紫盒1号黑枸杞80g",
  30. "icon": "/static/image/shopping/shop4.png",
  31. 'basePrice': "23.9",
  32. 'salePrice': "29.9",
  33. },
  34. {
  35. "name": "杞里香 瓶装2号黑枸杞40g",
  36. "key": "杞里香 瓶装2号黑枸杞40g",
  37. "icon": "/static/image/shopping/shop5.png",
  38. 'basePrice': "15.9",
  39. 'salePrice': "18.9",
  40. }
  41. ]
  42. },
  43. {
  44. "name": "奶制品",
  45. "foods": [{
  46. "name": "味全每日C橙汁 300ml*12",
  47. "key": "味全每日C橙汁 300ml*12",
  48. "icon": "/static/image/shopping/shop1.png",
  49. 'basePrice': "73.9",
  50. 'salePrice': "106.8",
  51. },
  52. {
  53. "name": "杞里香 红润茶(五红茶)120g(12袋)",
  54. "key": "杞里香 红润茶(五红茶)120g(12袋)",
  55. "icon": "/static/image/shopping/shop2.png",
  56. 'basePrice': "23.9",
  57. 'salePrice': "30.8",
  58. },
  59. {
  60. "name": "杞里香 新品瓶装3号黑构杞100g",
  61. "key": "杞里香 新品瓶装3号黑构杞100g",
  62. "icon": "/static/image/shopping/shop3.png",
  63. 'basePrice': "22.9",
  64. 'salePrice': "27",
  65. },
  66. {
  67. "name": "杞里香 紫盒1号黑枸杞80g",
  68. "key": "杞里香 紫盒1号黑枸杞80g",
  69. "icon": "/static/image/shopping/shop4.png",
  70. 'basePrice': "23.9",
  71. 'salePrice': "29.9",
  72. },
  73. {
  74. "name": "杞里香 瓶装2号黑枸杞40g",
  75. "key": "杞里香 瓶装2号黑枸杞40g",
  76. "icon": "/static/image/shopping/shop5.png",
  77. 'basePrice': "15.9",
  78. 'salePrice': "18.9",
  79. }
  80. ]
  81. },
  82. {
  83. "name": "调味品",
  84. "foods": [{
  85. "name": "味全每日C橙汁 300ml*12",
  86. "key": "味全每日C橙汁 300ml*12",
  87. "icon": "/static/image/shopping/shop1.png",
  88. 'basePrice': "73.9",
  89. 'salePrice': "106.8",
  90. },
  91. {
  92. "name": "杞里香 红润茶(五红茶)120g(12袋)",
  93. "key": "杞里香 红润茶(五红茶)120g(12袋)",
  94. "icon": "/static/image/shopping/shop2.png",
  95. 'basePrice': "23.9",
  96. 'salePrice': "30.8",
  97. },
  98. {
  99. "name": "杞里香 新品瓶装3号黑构杞100g",
  100. "key": "杞里香 新品瓶装3号黑构杞100g",
  101. "icon": "/static/image/shopping/shop3.png",
  102. 'basePrice': "22.9",
  103. 'salePrice': "27",
  104. },
  105. {
  106. "name": "杞里香 紫盒1号黑枸杞80g",
  107. "key": "杞里香 紫盒1号黑枸杞80g",
  108. "icon": "/static/image/shopping/shop4.png",
  109. 'basePrice': "23.9",
  110. 'salePrice': "29.9",
  111. },
  112. {
  113. "name": "杞里香 瓶装2号黑枸杞40g",
  114. "key": "杞里香 瓶装2号黑枸杞40g",
  115. "icon": "/static/image/shopping/shop5.png",
  116. 'basePrice': "15.9",
  117. 'salePrice': "18.9",
  118. }
  119. ]
  120. },
  121. {
  122. "name": "粮油调味",
  123. "foods": [{
  124. "name": "味全每日C橙汁 300ml*12",
  125. "key": "味全每日C橙汁 300ml*12",
  126. "icon": "/static/image/shopping/shop1.png",
  127. 'basePrice': "73.9",
  128. 'salePrice': "106.8",
  129. },
  130. {
  131. "name": "杞里香 红润茶(五红茶)120g(12袋)",
  132. "key": "杞里香 红润茶(五红茶)120g(12袋)",
  133. "icon": "/static/image/shopping/shop2.png",
  134. 'basePrice': "23.9",
  135. 'salePrice': "30.8",
  136. },
  137. {
  138. "name": "杞里香 新品瓶装3号黑构杞100g",
  139. "key": "杞里香 新品瓶装3号黑构杞100g",
  140. "icon": "/static/image/shopping/shop3.png",
  141. 'basePrice': "22.9",
  142. 'salePrice': "27",
  143. },
  144. {
  145. "name": "杞里香 紫盒1号黑枸杞80g",
  146. "key": "杞里香 紫盒1号黑枸杞80g",
  147. "icon": "/static/image/shopping/shop4.png",
  148. 'basePrice': "23.9",
  149. 'salePrice': "29.9",
  150. },
  151. {
  152. "name": "杞里香 瓶装2号黑枸杞40g",
  153. "key": "杞里香 瓶装2号黑枸杞40g",
  154. "icon": "/static/image/shopping/shop5.png",
  155. 'basePrice': "15.9",
  156. 'salePrice': "18.9",
  157. }
  158. ]
  159. },
  160. {
  161. "name": "酒水饮料",
  162. "foods": [{
  163. "name": "味全每日C橙汁 300ml*12",
  164. "key": "味全每日C橙汁 300ml*12",
  165. "icon": "/static/image/shopping/shop1.png",
  166. 'basePrice': "73.9",
  167. 'salePrice': "106.8",
  168. },
  169. {
  170. "name": "杞里香 红润茶(五红茶)120g(12袋)",
  171. "key": "杞里香 红润茶(五红茶)120g(12袋)",
  172. "icon": "/static/image/shopping/shop2.png",
  173. 'basePrice': "23.9",
  174. 'salePrice': "30.8",
  175. },
  176. {
  177. "name": "杞里香 新品瓶装3号黑构杞100g",
  178. "key": "杞里香 新品瓶装3号黑构杞100g",
  179. "icon": "/static/image/shopping/shop3.png",
  180. 'basePrice': "22.9",
  181. 'salePrice': "27",
  182. },
  183. {
  184. "name": "杞里香 紫盒1号黑枸杞80g",
  185. "key": "杞里香 紫盒1号黑枸杞80g",
  186. "icon": "/static/image/shopping/shop4.png",
  187. 'basePrice': "23.9",
  188. 'salePrice': "29.9",
  189. },
  190. {
  191. "name": "杞里香 瓶装2号黑枸杞40g",
  192. "key": "杞里香 瓶装2号黑枸杞40g",
  193. "icon": "/static/image/shopping/shop5.png",
  194. 'basePrice': "15.9",
  195. 'salePrice': "18.9",
  196. }
  197. ]
  198. }
  199. ]
  200. },
  201. {
  202. seriesName: "肉蛋蔬菜", //分类
  203. seriesIcon: "/static/image/shopping/icon2.png",
  204. tyList: [{
  205. "name": "生鲜",
  206. "foods": [{
  207. "name": "齐鲁畜牧 富硒鲜蛋 40枚",
  208. "key": "齐鲁畜牧 富硒鲜蛋 40枚",
  209. "icon": "/static/image/shopping/shop6.png",
  210. 'basePrice': "71.9",
  211. 'salePrice': "89",
  212. },
  213. {
  214. "name": "竹林蛋土鸡蛋40枚/盒 五谷喂养农家散养",
  215. "key": "竹林蛋土鸡蛋40枚/盒 五谷喂养农家散养",
  216. "icon": "/static/image/shopping/shop7.png",
  217. 'basePrice': "56.5",
  218. 'salePrice': "79.9",
  219. },
  220. {
  221. "name": "齐鲁可生食鲜蛋 DHA营养蛋 30枚",
  222. "key": "齐鲁可生食鲜蛋 DHA营养蛋 30枚",
  223. "icon": "/static/image/shopping/shop8.png",
  224. 'basePrice': "63.9",
  225. 'salePrice': "148",
  226. },
  227. {
  228. "name": "舌尖攻略醇无双减醇叶黄素鲜鸡蛋20枚",
  229. "key": "舌尖攻略醇无双减醇叶黄素鲜鸡蛋20枚",
  230. "icon": "/static/image/shopping/shop9.png",
  231. 'basePrice': "44.9",
  232. 'salePrice': "59.9",
  233. },
  234. {
  235. "name": "齐鲁可生食鲜蛋 叶黄素营养蛋 30枚",
  236. "key": "齐鲁可生食鲜蛋 叶黄素营养蛋 30枚",
  237. "icon": "/static/image/shopping/shop10.png",
  238. 'basePrice': "60.5",
  239. 'salePrice': "138",
  240. }
  241. ]
  242. },
  243. {
  244. "name": "新鲜蔬菜",
  245. "foods": [{
  246. "name": "齐鲁畜牧 富硒鲜蛋 40枚",
  247. "key": "齐鲁畜牧 富硒鲜蛋 40枚",
  248. "icon": "/static/image/shopping/shop6.png",
  249. 'basePrice': "71.9",
  250. 'salePrice': "89",
  251. },
  252. {
  253. "name": "竹林蛋土鸡蛋40枚/盒 五谷喂养农家散养",
  254. "key": "竹林蛋土鸡蛋40枚/盒 五谷喂养农家散养",
  255. "icon": "/static/image/shopping/shop7.png",
  256. 'basePrice': "56.5",
  257. 'salePrice': "79.9",
  258. },
  259. {
  260. "name": "齐鲁可生食鲜蛋 DHA营养蛋 30枚",
  261. "key": "齐鲁可生食鲜蛋 DHA营养蛋 30枚",
  262. "icon": "/static/image/shopping/shop8.png",
  263. 'basePrice': "63.9",
  264. 'salePrice': "148",
  265. },
  266. {
  267. "name": "舌尖攻略醇无双减醇叶黄素鲜鸡蛋20枚",
  268. "key": "舌尖攻略醇无双减醇叶黄素鲜鸡蛋20枚",
  269. "icon": "/static/image/shopping/shop9.png",
  270. 'basePrice': "44.9",
  271. 'salePrice': "59.9",
  272. },
  273. {
  274. "name": "齐鲁可生食鲜蛋 叶黄素营养蛋 30枚",
  275. "key": "齐鲁可生食鲜蛋 叶黄素营养蛋 30枚",
  276. "icon": "/static/image/shopping/shop10.png",
  277. 'basePrice': "60.5",
  278. 'salePrice': "138",
  279. }
  280. ]
  281. },
  282. {
  283. "name": "肉类",
  284. "foods": [{
  285. "name": "齐鲁畜牧 富硒鲜蛋 40枚",
  286. "key": "齐鲁畜牧 富硒鲜蛋 40枚",
  287. "icon": "/static/image/shopping/shop6.png",
  288. 'basePrice': "71.9",
  289. 'salePrice': "89",
  290. },
  291. {
  292. "name": "竹林蛋土鸡蛋40枚/盒 五谷喂养农家散养",
  293. "key": "竹林蛋土鸡蛋40枚/盒 五谷喂养农家散养",
  294. "icon": "/static/image/shopping/shop7.png",
  295. 'basePrice': "56.5",
  296. 'salePrice': "79.9",
  297. },
  298. {
  299. "name": "齐鲁可生食鲜蛋 DHA营养蛋 30枚",
  300. "key": "齐鲁可生食鲜蛋 DHA营养蛋 30枚",
  301. "icon": "/static/image/shopping/shop8.png",
  302. 'basePrice': "63.9",
  303. 'salePrice': "148",
  304. },
  305. {
  306. "name": "舌尖攻略醇无双减醇叶黄素鲜鸡蛋20枚",
  307. "key": "舌尖攻略醇无双减醇叶黄素鲜鸡蛋20枚",
  308. "icon": "/static/image/shopping/shop9.png",
  309. 'basePrice': "44.9",
  310. 'salePrice': "59.9",
  311. },
  312. {
  313. "name": "齐鲁可生食鲜蛋 叶黄素营养蛋 30枚",
  314. "key": "齐鲁可生食鲜蛋 叶黄素营养蛋 30枚",
  315. "icon": "/static/image/shopping/shop10.png",
  316. 'basePrice': "60.5",
  317. 'salePrice': "138",
  318. }
  319. ]
  320. },
  321. ]
  322. },
  323. {
  324. seriesName: "儿童玩具", //分类
  325. seriesIcon: "/static/image/shopping/icon3.png",
  326. tyList: [{
  327. "name": "户外玩具",
  328. "foods": [{
  329. "name": "户外儿童玩具DIY风筝(含材料包)",
  330. "key": "户外儿童玩具DIY风筝(含材料包)",
  331. "icon": "/static/image/shopping/shop11.png",
  332. 'basePrice': "13.9",
  333. 'salePrice': "29",
  334. },
  335. {
  336. "name": "户外儿童成人玩具草原风筝(含放飞轮)",
  337. "key": "户外儿童成人玩具草原风筝(含放飞轮)",
  338. "icon": "/static/image/shopping/shop12.png",
  339. 'basePrice': "29.9",
  340. 'salePrice': "59",
  341. },
  342. {
  343. "name": "晨光九行二合一智力学具ASD99804",
  344. "key": "晨光九行二合一智力学具ASD99804",
  345. "icon": "/static/image/shopping/shop13.png",
  346. 'basePrice': "15.9",
  347. 'salePrice': "19",
  348. },
  349. {
  350. "name": "凤凰PHOENIX儿童滑板车 1009",
  351. "key": "凤凰PHOENIX儿童滑板车 1009",
  352. "icon": "/static/image/shopping/shop14.png",
  353. 'basePrice': "129",
  354. 'salePrice': "398",
  355. },
  356. {
  357. "name": "车管家儿童卡通帐篷GJ-2205",
  358. "key": "车管家儿童卡通帐篷GJ-2205",
  359. "icon": "/static/image/shopping/shop15.png",
  360. 'basePrice': "116.9",
  361. 'salePrice': "299",
  362. }
  363. ]
  364. }, {
  365. "name": "婴幼玩具",
  366. "foods": [{
  367. "name": "户外儿童玩具DIY风筝(含材料包)",
  368. "key": "户外儿童玩具DIY风筝(含材料包)",
  369. "icon": "/static/image/shopping/shop11.png",
  370. 'basePrice': "13.9",
  371. 'salePrice': "29",
  372. },
  373. {
  374. "name": "户外儿童成人玩具草原风筝(含放飞轮)",
  375. "key": "户外儿童成人玩具草原风筝(含放飞轮)",
  376. "icon": "/static/image/shopping/shop12.png",
  377. 'basePrice': "29.9",
  378. 'salePrice': "59",
  379. },
  380. {
  381. "name": "晨光九行二合一智力学具ASD99804",
  382. "key": "晨光九行二合一智力学具ASD99804",
  383. "icon": "/static/image/shopping/shop13.png",
  384. 'basePrice': "15.9",
  385. 'salePrice': "19",
  386. },
  387. {
  388. "name": "凤凰PHOENIX儿童滑板车 1009",
  389. "key": "凤凰PHOENIX儿童滑板车 1009",
  390. "icon": "/static/image/shopping/shop14.png",
  391. 'basePrice': "129",
  392. 'salePrice': "398",
  393. },
  394. {
  395. "name": "车管家儿童卡通帐篷GJ-2205",
  396. "key": "车管家儿童卡通帐篷GJ-2205",
  397. "icon": "/static/image/shopping/shop15.png",
  398. 'basePrice': "116.9",
  399. 'salePrice': "299",
  400. }
  401. ]
  402. },
  403. {
  404. "name": "益智玩具",
  405. "foods": [{
  406. "name": "户外儿童玩具DIY风筝(含材料包)",
  407. "key": "户外儿童玩具DIY风筝(含材料包)",
  408. "icon": "/static/image/shopping/shop11.png",
  409. 'basePrice': "13.9",
  410. 'salePrice': "29",
  411. },
  412. {
  413. "name": "户外儿童成人玩具草原风筝(含放飞轮)",
  414. "key": "户外儿童成人玩具草原风筝(含放飞轮)",
  415. "icon": "/static/image/shopping/shop12.png",
  416. 'basePrice': "29.9",
  417. 'salePrice': "59",
  418. },
  419. {
  420. "name": "晨光九行二合一智力学具ASD99804",
  421. "key": "晨光九行二合一智力学具ASD99804",
  422. "icon": "/static/image/shopping/shop13.png",
  423. 'basePrice': "15.9",
  424. 'salePrice': "19",
  425. },
  426. {
  427. "name": "凤凰PHOENIX儿童滑板车 1009",
  428. "key": "凤凰PHOENIX儿童滑板车 1009",
  429. "icon": "/static/image/shopping/shop14.png",
  430. 'basePrice': "129",
  431. 'salePrice': "398",
  432. },
  433. {
  434. "name": "车管家儿童卡通帐篷GJ-2205",
  435. "key": "车管家儿童卡通帐篷GJ-2205",
  436. "icon": "/static/image/shopping/shop15.png",
  437. 'basePrice': "116.9",
  438. 'salePrice': "299",
  439. }
  440. ]
  441. },
  442. ]
  443. },
  444. {
  445. seriesName: "纸品清洁", //分类
  446. seriesIcon: "/static/image/shopping/icon4.png",
  447. tyList: [{
  448. "name": "洗护用品",
  449. "foods": [{
  450. "name": "欧贝斯去屑洗发露(营养修护型)750ml",
  451. "key": "欧贝斯去屑洗发露(营养修护型)750ml",
  452. "icon": "/static/image/shopping/shop16.png",
  453. 'basePrice': "28.5",
  454. 'salePrice': "51.8",
  455. },
  456. {
  457. "name": "浅香扁柏氨基酸洗发水500g",
  458. "key": "浅香扁柏氨基酸洗发水500g",
  459. "icon": "/static/image/shopping/shop17.png",
  460. 'basePrice': "33.9",
  461. 'salePrice': "84",
  462. },
  463. {
  464. "name": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  465. "key": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  466. "icon": "/static/image/shopping/shop18.png",
  467. 'basePrice': "20.9",
  468. 'salePrice': "29.9",
  469. },
  470. {
  471. "name": "浅香米酿氨基酸洗发乳(净爽型)500g",
  472. "key": "浅香米酿氨基酸洗发乳(净爽型)500g",
  473. "icon": "/static/image/shopping/shop19.png",
  474. 'basePrice': "35.9",
  475. 'salePrice': "119",
  476. },
  477. {
  478. "name": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  479. "key": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  480. "icon": "/static/image/shopping/shop20.png",
  481. 'basePrice': "28.5",
  482. 'salePrice': "39.9",
  483. }
  484. ]
  485. }, {
  486. "name": "厨房用品",
  487. "foods": [{
  488. "name": "欧贝斯去屑洗发露(营养修护型)750ml",
  489. "key": "欧贝斯去屑洗发露(营养修护型)750ml",
  490. "icon": "/static/image/shopping/shop16.png",
  491. 'basePrice': "28.5",
  492. 'salePrice': "51.8",
  493. },
  494. {
  495. "name": "浅香扁柏氨基酸洗发水500g",
  496. "key": "浅香扁柏氨基酸洗发水500g",
  497. "icon": "/static/image/shopping/shop17.png",
  498. 'basePrice': "33.9",
  499. 'salePrice': "84",
  500. },
  501. {
  502. "name": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  503. "key": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  504. "icon": "/static/image/shopping/shop18.png",
  505. 'basePrice': "20.9",
  506. 'salePrice': "29.9",
  507. },
  508. {
  509. "name": "浅香米酿氨基酸洗发乳(净爽型)500g",
  510. "key": "浅香米酿氨基酸洗发乳(净爽型)500g",
  511. "icon": "/static/image/shopping/shop19.png",
  512. 'basePrice': "35.9",
  513. 'salePrice': "119",
  514. },
  515. {
  516. "name": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  517. "key": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  518. "icon": "/static/image/shopping/shop20.png",
  519. 'basePrice': "28.5",
  520. 'salePrice': "39.9",
  521. }
  522. ]
  523. },
  524. {
  525. "name": "家庭清洁",
  526. "foods": [{
  527. "name": "欧贝斯去屑洗发露(营养修护型)750ml",
  528. "key": "欧贝斯去屑洗发露(营养修护型)750ml",
  529. "icon": "/static/image/shopping/shop16.png",
  530. 'basePrice': "28.5",
  531. 'salePrice': "51.8",
  532. },
  533. {
  534. "name": "浅香扁柏氨基酸洗发水500g",
  535. "key": "浅香扁柏氨基酸洗发水500g",
  536. "icon": "/static/image/shopping/shop17.png",
  537. 'basePrice': "33.9",
  538. 'salePrice': "84",
  539. },
  540. {
  541. "name": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  542. "key": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  543. "icon": "/static/image/shopping/shop18.png",
  544. 'basePrice': "20.9",
  545. 'salePrice': "29.9",
  546. },
  547. {
  548. "name": "浅香米酿氨基酸洗发乳(净爽型)500g",
  549. "key": "浅香米酿氨基酸洗发乳(净爽型)500g",
  550. "icon": "/static/image/shopping/shop19.png",
  551. 'basePrice': "35.9",
  552. 'salePrice': "119",
  553. },
  554. {
  555. "name": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  556. "key": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  557. "icon": "/static/image/shopping/shop20.png",
  558. 'basePrice': "28.5",
  559. 'salePrice': "39.9",
  560. }
  561. ]
  562. },
  563. {
  564. "name": "床上用品",
  565. "foods": [{
  566. "name": "欧贝斯去屑洗发露(营养修护型)750ml",
  567. "key": "欧贝斯去屑洗发露(营养修护型)750ml",
  568. "icon": "/static/image/shopping/shop16.png",
  569. 'basePrice': "28.5",
  570. 'salePrice': "51.8",
  571. },
  572. {
  573. "name": "浅香扁柏氨基酸洗发水500g",
  574. "key": "浅香扁柏氨基酸洗发水500g",
  575. "icon": "/static/image/shopping/shop17.png",
  576. 'basePrice': "33.9",
  577. 'salePrice': "84",
  578. },
  579. {
  580. "name": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  581. "key": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  582. "icon": "/static/image/shopping/shop18.png",
  583. 'basePrice': "20.9",
  584. 'salePrice': "29.9",
  585. },
  586. {
  587. "name": "浅香米酿氨基酸洗发乳(净爽型)500g",
  588. "key": "浅香米酿氨基酸洗发乳(净爽型)500g",
  589. "icon": "/static/image/shopping/shop19.png",
  590. 'basePrice': "35.9",
  591. 'salePrice': "119",
  592. },
  593. {
  594. "name": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  595. "key": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  596. "icon": "/static/image/shopping/shop20.png",
  597. 'basePrice': "28.5",
  598. 'salePrice': "39.9",
  599. }
  600. ]
  601. },
  602. {
  603. "name": "卫浴用品",
  604. "foods": [{
  605. "name": "欧贝斯去屑洗发露(营养修护型)750ml",
  606. "key": "欧贝斯去屑洗发露(营养修护型)750ml",
  607. "icon": "/static/image/shopping/shop16.png",
  608. 'basePrice': "28.5",
  609. 'salePrice': "51.8",
  610. },
  611. {
  612. "name": "浅香扁柏氨基酸洗发水500g",
  613. "key": "浅香扁柏氨基酸洗发水500g",
  614. "icon": "/static/image/shopping/shop17.png",
  615. 'basePrice': "33.9",
  616. 'salePrice': "84",
  617. },
  618. {
  619. "name": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  620. "key": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  621. "icon": "/static/image/shopping/shop18.png",
  622. 'basePrice': "20.9",
  623. 'salePrice': "29.9",
  624. },
  625. {
  626. "name": "浅香米酿氨基酸洗发乳(净爽型)500g",
  627. "key": "浅香米酿氨基酸洗发乳(净爽型)500g",
  628. "icon": "/static/image/shopping/shop19.png",
  629. 'basePrice': "35.9",
  630. 'salePrice': "119",
  631. },
  632. {
  633. "name": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  634. "key": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  635. "icon": "/static/image/shopping/shop20.png",
  636. 'basePrice': "28.5",
  637. 'salePrice': "39.9",
  638. }
  639. ]
  640. },
  641. {
  642. "name": "家庭护理",
  643. "foods": [{
  644. "name": "欧贝斯去屑洗发露(营养修护型)750ml",
  645. "key": "欧贝斯去屑洗发露(营养修护型)750ml",
  646. "icon": "/static/image/shopping/shop16.png",
  647. 'basePrice': "28.5",
  648. 'salePrice': "51.8",
  649. },
  650. {
  651. "name": "浅香扁柏氨基酸洗发水500g",
  652. "key": "浅香扁柏氨基酸洗发水500g",
  653. "icon": "/static/image/shopping/shop17.png",
  654. 'basePrice': "33.9",
  655. 'salePrice': "84",
  656. },
  657. {
  658. "name": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  659. "key": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  660. "icon": "/static/image/shopping/shop18.png",
  661. 'basePrice': "20.9",
  662. 'salePrice': "29.9",
  663. },
  664. {
  665. "name": "浅香米酿氨基酸洗发乳(净爽型)500g",
  666. "key": "浅香米酿氨基酸洗发乳(净爽型)500g",
  667. "icon": "/static/image/shopping/shop19.png",
  668. 'basePrice': "35.9",
  669. 'salePrice': "119",
  670. },
  671. {
  672. "name": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  673. "key": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  674. "icon": "/static/image/shopping/shop20.png",
  675. 'basePrice': "28.5",
  676. 'salePrice': "39.9",
  677. }
  678. ]
  679. },
  680. {
  681. "name": "生活用品",
  682. "foods": [{
  683. "name": "欧贝斯去屑洗发露(营养修护型)750ml",
  684. "key": "欧贝斯去屑洗发露(营养修护型)750ml",
  685. "icon": "/static/image/shopping/shop16.png",
  686. 'basePrice': "28.5",
  687. 'salePrice': "51.8",
  688. },
  689. {
  690. "name": "浅香扁柏氨基酸洗发水500g",
  691. "key": "浅香扁柏氨基酸洗发水500g",
  692. "icon": "/static/image/shopping/shop17.png",
  693. 'basePrice': "33.9",
  694. 'salePrice': "84",
  695. },
  696. {
  697. "name": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  698. "key": "欧贝斯去屑洗发露(营养丰盈蓬松)500ml",
  699. "icon": "/static/image/shopping/shop18.png",
  700. 'basePrice': "20.9",
  701. 'salePrice': "29.9",
  702. },
  703. {
  704. "name": "浅香米酿氨基酸洗发乳(净爽型)500g",
  705. "key": "浅香米酿氨基酸洗发乳(净爽型)500g",
  706. "icon": "/static/image/shopping/shop19.png",
  707. 'basePrice': "35.9",
  708. 'salePrice': "119",
  709. },
  710. {
  711. "name": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  712. "key": "欧贝斯焗油柔亮洗发露(焗油柔亮莹彩)750ml",
  713. "icon": "/static/image/shopping/shop20.png",
  714. 'basePrice': "28.5",
  715. 'salePrice': "39.9",
  716. }
  717. ]
  718. },
  719. ]
  720. },
  721. {
  722. seriesName: "医药保健", //分类
  723. seriesIcon: "/static/image/shopping/icon5.png",
  724. tyList: [{
  725. "name": "滋补养生",
  726. "foods": [{
  727. "name": "五谷磨房核桃芝麻桑镇粥600g",
  728. "key": "五谷磨房核桃芝麻桑镇粥600g",
  729. "icon": "/static/image/shopping/shop21.png",
  730. 'basePrice': "57.9",
  731. 'salePrice': "69.9",
  732. },
  733. {
  734. "name": "五谷磨房黑芝麻丸108g(无糖)",
  735. "key": "五谷磨房黑芝麻丸108g(无糖)",
  736. "icon": "/static/image/shopping/shop22.png",
  737. 'basePrice': "21.9",
  738. 'salePrice': "29.9",
  739. },
  740. {
  741. "name": "西麦花胶燕麦礼盒 1530g",
  742. "key": "西麦花胶燕麦礼盒 1530g",
  743. "icon": "/static/image/shopping/shop23.png",
  744. 'basePrice': "158",
  745. 'salePrice': "178",
  746. },
  747. {
  748. "name": "固本堂阿胶糕红枣枸杞口味 200g",
  749. "key": "固本堂阿胶糕红枣枸杞口味 200g",
  750. "icon": "/static/image/shopping/shop24.png",
  751. 'basePrice': "109",
  752. 'salePrice': "149",
  753. },
  754. ]
  755. }, {
  756. "name": "保健食品",
  757. "foods": [{
  758. "name": "五谷磨房核桃芝麻桑镇粥600g",
  759. "key": "五谷磨房核桃芝麻桑镇粥600g",
  760. "icon": "/static/image/shopping/shop21.png",
  761. 'basePrice': "57.9",
  762. 'salePrice': "69.9",
  763. },
  764. {
  765. "name": "五谷磨房黑芝麻丸108g(无糖)",
  766. "key": "五谷磨房黑芝麻丸108g(无糖)",
  767. "icon": "/static/image/shopping/shop22.png",
  768. 'basePrice': "21.9",
  769. 'salePrice': "29.9",
  770. },
  771. {
  772. "name": "西麦花胶燕麦礼盒 1530g",
  773. "key": "西麦花胶燕麦礼盒 1530g",
  774. "icon": "/static/image/shopping/shop23.png",
  775. 'basePrice': "158",
  776. 'salePrice': "178",
  777. },
  778. {
  779. "name": "固本堂阿胶糕红枣枸杞口味 200g",
  780. "key": "固本堂阿胶糕红枣枸杞口味 200g",
  781. "icon": "/static/image/shopping/shop24.png",
  782. 'basePrice': "109",
  783. 'salePrice': "149",
  784. },
  785. ]
  786. },
  787. {
  788. "name": "医药用品",
  789. "foods": [{
  790. "name": "五谷磨房核桃芝麻桑镇粥600g",
  791. "key": "五谷磨房核桃芝麻桑镇粥600g",
  792. "icon": "/static/image/shopping/shop21.png",
  793. 'basePrice': "57.9",
  794. 'salePrice': "69.9",
  795. },
  796. {
  797. "name": "五谷磨房黑芝麻丸108g(无糖)",
  798. "key": "五谷磨房黑芝麻丸108g(无糖)",
  799. "icon": "/static/image/shopping/shop22.png",
  800. 'basePrice': "21.9",
  801. 'salePrice': "29.9",
  802. },
  803. {
  804. "name": "西麦花胶燕麦礼盒 1530g",
  805. "key": "西麦花胶燕麦礼盒 1530g",
  806. "icon": "/static/image/shopping/shop23.png",
  807. 'basePrice': "158",
  808. 'salePrice': "178",
  809. },
  810. {
  811. "name": "固本堂阿胶糕红枣枸杞口味 200g",
  812. "key": "固本堂阿胶糕红枣枸杞口味 200g",
  813. "icon": "/static/image/shopping/shop24.png",
  814. 'basePrice': "109",
  815. 'salePrice': "149",
  816. },
  817. ]
  818. },
  819. ]
  820. },
  821. {
  822. seriesName: "乳品烘焙", //分类
  823. seriesIcon: "/static/image/shopping/icon6.png",
  824. tyList: [{
  825. "name": "奶制品",
  826. "foods": [{
  827. "name": "左江桑甚水牛奶210ml*10盒/箱",
  828. "key": "左江桑甚水牛奶210ml*10盒/箱",
  829. "icon": "/static/image/shopping/shop25.png",
  830. 'basePrice': "34.9",
  831. 'salePrice': "49.8",
  832. },
  833. {
  834. "name": "左江水牛酸奶饮品130ml*10盒/箱",
  835. "key": "左江水牛酸奶饮品130ml*10盒/箱",
  836. "icon": "/static/image/shopping/shop26.png",
  837. 'basePrice': "22.9",
  838. 'salePrice': "29.9",
  839. },
  840. {
  841. "name": "乐荷(vecozuivel)荷兰进口 有机a2β-酪蛋白...",
  842. "key": "乐荷(vecozuivel)荷兰进口 有机a2β-酪蛋白...",
  843. "icon": "/static/image/shopping/shop27.png",
  844. 'basePrice': "123.5",
  845. 'salePrice': "179",
  846. },
  847. {
  848. "name": "味全 金装鲜酪(奶香草莓口味)100g*3/组*6",
  849. "key": "味全 金装鲜酪(奶香草莓口味)100g*3/组*6",
  850. "icon": "/static/image/shopping/shop28.png",
  851. 'basePrice': "81.9",
  852. 'salePrice': "100.8",
  853. },
  854. {
  855. "name": "乐荷(vecozuivel)荷兰进口全脂有机纯牛奶欧...",
  856. "key": "乐荷(vecozuivel)荷兰进口全脂有机纯牛奶欧...",
  857. "icon": "/static/image/shopping/shop29.png",
  858. 'basePrice': "102.9",
  859. 'salePrice': "149",
  860. }
  861. ]
  862. }, {
  863. "name": "休闲食品",
  864. "foods": [{
  865. "name": "左江桑甚水牛奶210ml*10盒/箱",
  866. "key": "左江桑甚水牛奶210ml*10盒/箱",
  867. "icon": "/static/image/shopping/shop25.png",
  868. 'basePrice': "34.9",
  869. 'salePrice': "49.8",
  870. },
  871. {
  872. "name": "左江水牛酸奶饮品130ml*10盒/箱",
  873. "key": "左江水牛酸奶饮品130ml*10盒/箱",
  874. "icon": "/static/image/shopping/shop26.png",
  875. 'basePrice': "22.9",
  876. 'salePrice': "29.9",
  877. },
  878. {
  879. "name": "乐荷(vecozuivel)荷兰进口 有机a2β-酪蛋白...",
  880. "key": "乐荷(vecozuivel)荷兰进口 有机a2β-酪蛋白...",
  881. "icon": "/static/image/shopping/shop27.png",
  882. 'basePrice': "123.5",
  883. 'salePrice': "179",
  884. },
  885. {
  886. "name": "味全 金装鲜酪(奶香草莓口味)100g*3/组*6",
  887. "key": "味全 金装鲜酪(奶香草莓口味)100g*3/组*6",
  888. "icon": "/static/image/shopping/shop28.png",
  889. 'basePrice': "81.9",
  890. 'salePrice': "100.8",
  891. },
  892. {
  893. "name": "乐荷(vecozuivel)荷兰进口全脂有机纯牛奶欧...",
  894. "key": "乐荷(vecozuivel)荷兰进口全脂有机纯牛奶欧...",
  895. "icon": "/static/image/shopping/shop29.png",
  896. 'basePrice': "102.9",
  897. 'salePrice': "149",
  898. }
  899. ]
  900. },
  901. {
  902. "name": "礼盒",
  903. "foods": [{
  904. "name": "左江桑甚水牛奶210ml*10盒/箱",
  905. "key": "左江桑甚水牛奶210ml*10盒/箱",
  906. "icon": "/static/image/shopping/shop25.png",
  907. 'basePrice': "34.9",
  908. 'salePrice': "49.8",
  909. },
  910. {
  911. "name": "左江水牛酸奶饮品130ml*10盒/箱",
  912. "key": "左江水牛酸奶饮品130ml*10盒/箱",
  913. "icon": "/static/image/shopping/shop26.png",
  914. 'basePrice': "22.9",
  915. 'salePrice': "29.9",
  916. },
  917. {
  918. "name": "乐荷(vecozuivel)荷兰进口 有机a2β-酪蛋白...",
  919. "key": "乐荷(vecozuivel)荷兰进口 有机a2β-酪蛋白...",
  920. "icon": "/static/image/shopping/shop27.png",
  921. 'basePrice': "123.5",
  922. 'salePrice': "179",
  923. },
  924. {
  925. "name": "味全 金装鲜酪(奶香草莓口味)100g*3/组*6",
  926. "key": "味全 金装鲜酪(奶香草莓口味)100g*3/组*6",
  927. "icon": "/static/image/shopping/shop28.png",
  928. 'basePrice': "81.9",
  929. 'salePrice': "100.8",
  930. },
  931. {
  932. "name": "乐荷(vecozuivel)荷兰进口全脂有机纯牛奶欧...",
  933. "key": "乐荷(vecozuivel)荷兰进口全脂有机纯牛奶欧...",
  934. "icon": "/static/image/shopping/shop29.png",
  935. 'basePrice': "102.9",
  936. 'salePrice': "149",
  937. }
  938. ]
  939. },
  940. {
  941. "name": "面包糕点",
  942. "foods": [{
  943. "name": "左江桑甚水牛奶210ml*10盒/箱",
  944. "key": "左江桑甚水牛奶210ml*10盒/箱",
  945. "icon": "/static/image/shopping/shop25.png",
  946. 'basePrice': "34.9",
  947. 'salePrice': "49.8",
  948. },
  949. {
  950. "name": "左江水牛酸奶饮品130ml*10盒/箱",
  951. "key": "左江水牛酸奶饮品130ml*10盒/箱",
  952. "icon": "/static/image/shopping/shop26.png",
  953. 'basePrice': "22.9",
  954. 'salePrice': "29.9",
  955. },
  956. {
  957. "name": "乐荷(vecozuivel)荷兰进口 有机a2β-酪蛋白...",
  958. "key": "乐荷(vecozuivel)荷兰进口 有机a2β-酪蛋白...",
  959. "icon": "/static/image/shopping/shop27.png",
  960. 'basePrice': "123.5",
  961. 'salePrice': "179",
  962. },
  963. {
  964. "name": "味全 金装鲜酪(奶香草莓口味)100g*3/组*6",
  965. "key": "味全 金装鲜酪(奶香草莓口味)100g*3/组*6",
  966. "icon": "/static/image/shopping/shop28.png",
  967. 'basePrice': "81.9",
  968. 'salePrice': "100.8",
  969. },
  970. {
  971. "name": "乐荷(vecozuivel)荷兰进口全脂有机纯牛奶欧...",
  972. "key": "乐荷(vecozuivel)荷兰进口全脂有机纯牛奶欧...",
  973. "icon": "/static/image/shopping/shop29.png",
  974. 'basePrice': "102.9",
  975. 'salePrice': "149",
  976. }
  977. ]
  978. },
  979. ]
  980. },
  981. {
  982. seriesName: "美妆个护", //分类
  983. seriesIcon: "/static/image/shopping/icon7.png",
  984. tyList: [{
  985. "name": "口腔护理",
  986. "foods": [{
  987. "name": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  988. "key": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  989. "icon": "/static/image/shopping/shop30.png",
  990. 'basePrice': "26.9",
  991. 'salePrice': "41",
  992. },
  993. {
  994. "name": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  995. "key": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  996. "icon": "/static/image/shopping/shop31.png",
  997. 'basePrice': "9.9",
  998. 'salePrice': "12.5",
  999. },
  1000. {
  1001. "name": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1002. "key": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1003. "icon": "/static/image/shopping/shop32.png",
  1004. 'basePrice': "16.9",
  1005. 'salePrice': "19.9",
  1006. },
  1007. {
  1008. "name": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1009. "key": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1010. "icon": "/static/image/shopping/shop33.png",
  1011. 'basePrice': "18",
  1012. 'salePrice': "29.9",
  1013. },
  1014. {
  1015. "name": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1016. "key": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1017. "icon": "/static/image/shopping/shop34.png",
  1018. 'basePrice': "9.9",
  1019. 'salePrice': "12.5",
  1020. }
  1021. ]
  1022. },
  1023. {
  1024. "name": "香水彩妆",
  1025. "foods": [{
  1026. "name": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  1027. "key": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  1028. "icon": "/static/image/shopping/shop30.png",
  1029. 'basePrice': "26.9",
  1030. 'salePrice': "41",
  1031. },
  1032. {
  1033. "name": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  1034. "key": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  1035. "icon": "/static/image/shopping/shop31.png",
  1036. 'basePrice': "9.9",
  1037. 'salePrice': "12.5",
  1038. },
  1039. {
  1040. "name": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1041. "key": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1042. "icon": "/static/image/shopping/shop32.png",
  1043. 'basePrice': "16.9",
  1044. 'salePrice': "19.9",
  1045. },
  1046. {
  1047. "name": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1048. "key": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1049. "icon": "/static/image/shopping/shop33.png",
  1050. 'basePrice': "18",
  1051. 'salePrice': "29.9",
  1052. },
  1053. {
  1054. "name": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1055. "key": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1056. "icon": "/static/image/shopping/shop34.png",
  1057. 'basePrice': "9.9",
  1058. 'salePrice': "12.5",
  1059. }
  1060. ]
  1061. },
  1062. {
  1063. "name": "洗发护发",
  1064. "foods": [{
  1065. "name": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  1066. "key": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  1067. "icon": "/static/image/shopping/shop30.png",
  1068. 'basePrice': "26.9",
  1069. 'salePrice': "41",
  1070. },
  1071. {
  1072. "name": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  1073. "key": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  1074. "icon": "/static/image/shopping/shop31.png",
  1075. 'basePrice': "9.9",
  1076. 'salePrice': "12.5",
  1077. },
  1078. {
  1079. "name": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1080. "key": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1081. "icon": "/static/image/shopping/shop32.png",
  1082. 'basePrice': "16.9",
  1083. 'salePrice': "19.9",
  1084. },
  1085. {
  1086. "name": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1087. "key": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1088. "icon": "/static/image/shopping/shop33.png",
  1089. 'basePrice': "18",
  1090. 'salePrice': "29.9",
  1091. },
  1092. {
  1093. "name": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1094. "key": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1095. "icon": "/static/image/shopping/shop34.png",
  1096. 'basePrice': "9.9",
  1097. 'salePrice': "12.5",
  1098. }
  1099. ]
  1100. },
  1101. {
  1102. "name": "身体护理",
  1103. "foods": [{
  1104. "name": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  1105. "key": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  1106. "icon": "/static/image/shopping/shop30.png",
  1107. 'basePrice': "26.9",
  1108. 'salePrice': "41",
  1109. },
  1110. {
  1111. "name": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  1112. "key": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  1113. "icon": "/static/image/shopping/shop31.png",
  1114. 'basePrice': "9.9",
  1115. 'salePrice': "12.5",
  1116. },
  1117. {
  1118. "name": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1119. "key": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1120. "icon": "/static/image/shopping/shop32.png",
  1121. 'basePrice': "16.9",
  1122. 'salePrice': "19.9",
  1123. },
  1124. {
  1125. "name": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1126. "key": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1127. "icon": "/static/image/shopping/shop33.png",
  1128. 'basePrice': "18",
  1129. 'salePrice': "29.9",
  1130. },
  1131. {
  1132. "name": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1133. "key": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1134. "icon": "/static/image/shopping/shop34.png",
  1135. 'basePrice': "9.9",
  1136. 'salePrice': "12.5",
  1137. }
  1138. ]
  1139. },
  1140. {
  1141. "name": "面部护理",
  1142. "foods": [{
  1143. "name": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  1144. "key": "舒客小苏打牙膏(洁白护龈)120克*4赠送牙刷2支",
  1145. "icon": "/static/image/shopping/shop30.png",
  1146. 'basePrice': "26.9",
  1147. 'salePrice': "41",
  1148. },
  1149. {
  1150. "name": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  1151. "key": "(买一赠二)舒客小苏打牙膏105g装 随机赠健齿..",
  1152. "icon": "/static/image/shopping/shop31.png",
  1153. 'basePrice': "9.9",
  1154. 'salePrice': "12.5",
  1155. },
  1156. {
  1157. "name": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1158. "key": "舒客专效劲爽薄荷口气清新剂18ml 喷雾持久型",
  1159. "icon": "/static/image/shopping/shop32.png",
  1160. 'basePrice': "16.9",
  1161. 'salePrice': "19.9",
  1162. },
  1163. {
  1164. "name": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1165. "key": "美加净星月白牙膏100g 清洁牙渍清新口气呵护牙龈",
  1166. "icon": "/static/image/shopping/shop33.png",
  1167. 'basePrice': "18",
  1168. 'salePrice': "29.9",
  1169. },
  1170. {
  1171. "name": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1172. "key": "舒客 美白酵素青柠牙膏120g*1支去口臭去黄去牙渍",
  1173. "icon": "/static/image/shopping/shop34.png",
  1174. 'basePrice': "9.9",
  1175. 'salePrice': "12.5",
  1176. }
  1177. ]
  1178. },
  1179. ]
  1180. },
  1181. {
  1182. seriesName: "水果鲜花", //分类
  1183. seriesIcon: "/static/image/shopping/icon8.png",
  1184. tyList: [{
  1185. "name": "柑橘橙柚",
  1186. "foods": [{
  1187. "name": "【精选】爱媛橙38号果冻橙 600g/份",
  1188. "key": "【精选】爱媛橙38号果冻橙 600g/份",
  1189. "icon": "/static/image/shopping/shop35.png",
  1190. 'basePrice': "5.19",
  1191. 'salePrice': "9.9",
  1192. },
  1193. {
  1194. "name": "【精选】葡萄柚800g/个 (称重退差)",
  1195. "key": "【精选】葡萄柚800g/个 (称重退差)",
  1196. "icon": "/static/image/shopping/shop36.png",
  1197. 'basePrice': "13.18",
  1198. 'salePrice': "18.9",
  1199. },
  1200. {
  1201. "name": "【精选】丑橘(大)950g",
  1202. "key": "【精选】丑橘(大)950g",
  1203. "icon": "/static/image/shopping/shop37.png",
  1204. 'basePrice': "9.98",
  1205. 'salePrice': "15.9",
  1206. },
  1207. {
  1208. "name": "【精选】青柠檬1个",
  1209. "key": "【精选】青柠檬1个",
  1210. "icon": "/static/image/shopping/shop38.png",
  1211. 'basePrice': "1.9",
  1212. 'salePrice': "3.9",
  1213. },
  1214. {
  1215. "name": "葡萄柚彩箱装2.25kg 单果300g",
  1216. "key": "葡萄柚彩箱装2.25kg 单果300g",
  1217. "icon": "/static/image/shopping/shop39.png",
  1218. 'basePrice': "19.9",
  1219. 'salePrice': "23.5",
  1220. }
  1221. ]
  1222. },
  1223. {
  1224. "name": "热带水果",
  1225. "foods": [{
  1226. "name": "【精选】爱媛橙38号果冻橙 600g/份",
  1227. "key": "【精选】爱媛橙38号果冻橙 600g/份",
  1228. "icon": "/static/image/shopping/shop35.png",
  1229. 'basePrice': "5.19",
  1230. 'salePrice': "9.9",
  1231. },
  1232. {
  1233. "name": "【精选】葡萄柚800g/个 (称重退差)",
  1234. "key": "【精选】葡萄柚800g/个 (称重退差)",
  1235. "icon": "/static/image/shopping/shop36.png",
  1236. 'basePrice': "13.18",
  1237. 'salePrice': "18.9",
  1238. },
  1239. {
  1240. "name": "【精选】丑橘(大)950g",
  1241. "key": "【精选】丑橘(大)950g",
  1242. "icon": "/static/image/shopping/shop37.png",
  1243. 'basePrice': "9.98",
  1244. 'salePrice': "15.9",
  1245. },
  1246. {
  1247. "name": "【精选】青柠檬1个",
  1248. "key": "【精选】青柠檬1个",
  1249. "icon": "/static/image/shopping/shop38.png",
  1250. 'basePrice': "1.9",
  1251. 'salePrice': "3.9",
  1252. },
  1253. {
  1254. "name": "葡萄柚彩箱装2.25kg 单果300g",
  1255. "key": "葡萄柚彩箱装2.25kg 单果300g",
  1256. "icon": "/static/image/shopping/shop39.png",
  1257. 'basePrice': "19.9",
  1258. 'salePrice': "23.5",
  1259. }
  1260. ]
  1261. },
  1262. {
  1263. "name": "莓果番茄",
  1264. "foods": [{
  1265. "name": "【精选】爱媛橙38号果冻橙 600g/份",
  1266. "key": "【精选】爱媛橙38号果冻橙 600g/份",
  1267. "icon": "/static/image/shopping/shop35.png",
  1268. 'basePrice': "5.19",
  1269. 'salePrice': "9.9",
  1270. },
  1271. {
  1272. "name": "【精选】葡萄柚800g/个 (称重退差)",
  1273. "key": "【精选】葡萄柚800g/个 (称重退差)",
  1274. "icon": "/static/image/shopping/shop36.png",
  1275. 'basePrice': "13.18",
  1276. 'salePrice': "18.9",
  1277. },
  1278. {
  1279. "name": "【精选】丑橘(大)950g",
  1280. "key": "【精选】丑橘(大)950g",
  1281. "icon": "/static/image/shopping/shop37.png",
  1282. 'basePrice': "9.98",
  1283. 'salePrice': "15.9",
  1284. },
  1285. {
  1286. "name": "【精选】青柠檬1个",
  1287. "key": "【精选】青柠檬1个",
  1288. "icon": "/static/image/shopping/shop38.png",
  1289. 'basePrice': "1.9",
  1290. 'salePrice': "3.9",
  1291. },
  1292. {
  1293. "name": "葡萄柚彩箱装2.25kg 单果300g",
  1294. "key": "葡萄柚彩箱装2.25kg 单果300g",
  1295. "icon": "/static/image/shopping/shop39.png",
  1296. 'basePrice': "19.9",
  1297. 'salePrice': "23.5",
  1298. }
  1299. ]
  1300. },
  1301. {
  1302. "name": "西瓜蜜瓜",
  1303. "foods": [{
  1304. "name": "【精选】爱媛橙38号果冻橙 600g/份",
  1305. "key": "【精选】爱媛橙38号果冻橙 600g/份",
  1306. "icon": "/static/image/shopping/shop35.png",
  1307. 'basePrice': "5.19",
  1308. 'salePrice': "9.9",
  1309. },
  1310. {
  1311. "name": "【精选】葡萄柚800g/个 (称重退差)",
  1312. "key": "【精选】葡萄柚800g/个 (称重退差)",
  1313. "icon": "/static/image/shopping/shop36.png",
  1314. 'basePrice': "13.18",
  1315. 'salePrice': "18.9",
  1316. },
  1317. {
  1318. "name": "【精选】丑橘(大)950g",
  1319. "key": "【精选】丑橘(大)950g",
  1320. "icon": "/static/image/shopping/shop37.png",
  1321. 'basePrice': "9.98",
  1322. 'salePrice': "15.9",
  1323. },
  1324. {
  1325. "name": "【精选】青柠檬1个",
  1326. "key": "【精选】青柠檬1个",
  1327. "icon": "/static/image/shopping/shop38.png",
  1328. 'basePrice': "1.9",
  1329. 'salePrice': "3.9",
  1330. },
  1331. {
  1332. "name": "葡萄柚彩箱装2.25kg 单果300g",
  1333. "key": "葡萄柚彩箱装2.25kg 单果300g",
  1334. "icon": "/static/image/shopping/shop39.png",
  1335. 'basePrice': "19.9",
  1336. 'salePrice': "23.5",
  1337. }
  1338. ]
  1339. },
  1340. {
  1341. "name": "桃李杏枣",
  1342. "foods": [{
  1343. "name": "【精选】爱媛橙38号果冻橙 600g/份",
  1344. "key": "【精选】爱媛橙38号果冻橙 600g/份",
  1345. "icon": "/static/image/shopping/shop35.png",
  1346. 'basePrice': "5.19",
  1347. 'salePrice': "9.9",
  1348. },
  1349. {
  1350. "name": "【精选】葡萄柚800g/个 (称重退差)",
  1351. "key": "【精选】葡萄柚800g/个 (称重退差)",
  1352. "icon": "/static/image/shopping/shop36.png",
  1353. 'basePrice': "13.18",
  1354. 'salePrice': "18.9",
  1355. },
  1356. {
  1357. "name": "【精选】丑橘(大)950g",
  1358. "key": "【精选】丑橘(大)950g",
  1359. "icon": "/static/image/shopping/shop37.png",
  1360. 'basePrice': "9.98",
  1361. 'salePrice': "15.9",
  1362. },
  1363. {
  1364. "name": "【精选】青柠檬1个",
  1365. "key": "【精选】青柠檬1个",
  1366. "icon": "/static/image/shopping/shop38.png",
  1367. 'basePrice': "1.9",
  1368. 'salePrice': "3.9",
  1369. },
  1370. {
  1371. "name": "葡萄柚彩箱装2.25kg 单果300g",
  1372. "key": "葡萄柚彩箱装2.25kg 单果300g",
  1373. "icon": "/static/image/shopping/shop39.png",
  1374. 'basePrice': "19.9",
  1375. 'salePrice': "23.5",
  1376. }
  1377. ]
  1378. },
  1379. {
  1380. "name": "葡提浆果",
  1381. "foods": [{
  1382. "name": "【精选】爱媛橙38号果冻橙 600g/份",
  1383. "key": "【精选】爱媛橙38号果冻橙 600g/份",
  1384. "icon": "/static/image/shopping/shop35.png",
  1385. 'basePrice': "5.19",
  1386. 'salePrice': "9.9",
  1387. },
  1388. {
  1389. "name": "【精选】葡萄柚800g/个 (称重退差)",
  1390. "key": "【精选】葡萄柚800g/个 (称重退差)",
  1391. "icon": "/static/image/shopping/shop36.png",
  1392. 'basePrice': "13.18",
  1393. 'salePrice': "18.9",
  1394. },
  1395. {
  1396. "name": "【精选】丑橘(大)950g",
  1397. "key": "【精选】丑橘(大)950g",
  1398. "icon": "/static/image/shopping/shop37.png",
  1399. 'basePrice': "9.98",
  1400. 'salePrice': "15.9",
  1401. },
  1402. {
  1403. "name": "【精选】青柠檬1个",
  1404. "key": "【精选】青柠檬1个",
  1405. "icon": "/static/image/shopping/shop38.png",
  1406. 'basePrice': "1.9",
  1407. 'salePrice': "3.9",
  1408. },
  1409. {
  1410. "name": "葡萄柚彩箱装2.25kg 单果300g",
  1411. "key": "葡萄柚彩箱装2.25kg 单果300g",
  1412. "icon": "/static/image/shopping/shop39.png",
  1413. 'basePrice': "19.9",
  1414. 'salePrice': "23.5",
  1415. }
  1416. ]
  1417. },
  1418. {
  1419. "name": "鲜花",
  1420. "foods": [{
  1421. "name": "【精选】爱媛橙38号果冻橙 600g/份",
  1422. "key": "【精选】爱媛橙38号果冻橙 600g/份",
  1423. "icon": "/static/image/shopping/shop35.png",
  1424. 'basePrice': "5.19",
  1425. 'salePrice': "9.9",
  1426. },
  1427. {
  1428. "name": "【精选】葡萄柚800g/个 (称重退差)",
  1429. "key": "【精选】葡萄柚800g/个 (称重退差)",
  1430. "icon": "/static/image/shopping/shop36.png",
  1431. 'basePrice': "13.18",
  1432. 'salePrice': "18.9",
  1433. },
  1434. {
  1435. "name": "【精选】丑橘(大)950g",
  1436. "key": "【精选】丑橘(大)950g",
  1437. "icon": "/static/image/shopping/shop37.png",
  1438. 'basePrice': "9.98",
  1439. 'salePrice': "15.9",
  1440. },
  1441. {
  1442. "name": "【精选】青柠檬1个",
  1443. "key": "【精选】青柠檬1个",
  1444. "icon": "/static/image/shopping/shop38.png",
  1445. 'basePrice': "1.9",
  1446. 'salePrice': "3.9",
  1447. },
  1448. {
  1449. "name": "葡萄柚彩箱装2.25kg 单果300g",
  1450. "key": "葡萄柚彩箱装2.25kg 单果300g",
  1451. "icon": "/static/image/shopping/shop39.png",
  1452. 'basePrice': "19.9",
  1453. 'salePrice': "23.5",
  1454. }
  1455. ]
  1456. },
  1457. ]
  1458. },
  1459. {
  1460. seriesName: "粮油调味", //分类
  1461. seriesIcon: "/static/image/shopping/icon9.png",
  1462. tyList: [{
  1463. "name": "粮油干货",
  1464. "foods": [{
  1465. "name": "田漫石板响稻慢生米2.5kg",
  1466. "key": "田漫石板响稻慢生米2.5kg",
  1467. "icon": "/static/image/shopping/shop40.png",
  1468. 'basePrice': "56.9",
  1469. 'salePrice': "79.9",
  1470. },
  1471. {
  1472. "name": "米妹妹五常香米(真空袋装)2.5kg",
  1473. "key": "米妹妹五常香米(真空袋装)2.5kg",
  1474. "icon": "/static/image/shopping/shop41.png",
  1475. 'basePrice': "41.5",
  1476. 'salePrice': "78",
  1477. },
  1478. {
  1479. "name": "海天·0添加礼盒(优选装)",
  1480. "key": "海天·0添加礼盒(优选装)",
  1481. "icon": "/static/image/shopping/shop42.png",
  1482. 'basePrice': "99",
  1483. 'salePrice': "128",
  1484. },
  1485. {
  1486. "name": "金龙鱼甄露鲜萃葵花籽油囤货装",
  1487. "key": "金龙鱼甄露鲜萃葵花籽油囤货装",
  1488. "icon": "/static/image/shopping/shop43.png",
  1489. 'basePrice': "79",
  1490. 'salePrice': "139",
  1491. },
  1492. {
  1493. "name": "米妹妹 五常黑米 1kg",
  1494. "key": "米妹妹 五常黑米 1kg",
  1495. "icon": "/static/image/shopping/shop44.png",
  1496. 'basePrice': "20.9",
  1497. 'salePrice': "35.9",
  1498. }
  1499. ]
  1500. },
  1501. {
  1502. "name": "厨房调料",
  1503. "foods": [{
  1504. "name": "田漫石板响稻慢生米2.5kg",
  1505. "key": "田漫石板响稻慢生米2.5kg",
  1506. "icon": "/static/image/shopping/shop40.png",
  1507. 'basePrice': "56.9",
  1508. 'salePrice': "79.9",
  1509. },
  1510. {
  1511. "name": "米妹妹五常香米(真空袋装)2.5kg",
  1512. "key": "米妹妹五常香米(真空袋装)2.5kg",
  1513. "icon": "/static/image/shopping/shop41.png",
  1514. 'basePrice': "41.5",
  1515. 'salePrice': "78",
  1516. },
  1517. {
  1518. "name": "海天·0添加礼盒(优选装)",
  1519. "key": "海天·0添加礼盒(优选装)",
  1520. "icon": "/static/image/shopping/shop42.png",
  1521. 'basePrice': "99",
  1522. 'salePrice': "128",
  1523. },
  1524. {
  1525. "name": "金龙鱼甄露鲜萃葵花籽油囤货装",
  1526. "key": "金龙鱼甄露鲜萃葵花籽油囤货装",
  1527. "icon": "/static/image/shopping/shop43.png",
  1528. 'basePrice': "79",
  1529. 'salePrice': "139",
  1530. },
  1531. {
  1532. "name": "米妹妹 五常黑米 1kg",
  1533. "key": "米妹妹 五常黑米 1kg",
  1534. "icon": "/static/image/shopping/shop44.png",
  1535. 'basePrice': "20.9",
  1536. 'salePrice': "35.9",
  1537. }
  1538. ]
  1539. },
  1540. ]
  1541. },
  1542. {
  1543. seriesName: "家居装修", //分类
  1544. seriesIcon: "/static/image/shopping/icon10.png",
  1545. tyList: [{
  1546. "name": "厨房家电",
  1547. "foods": [{
  1548. "name": "九阳开水瓶K40-PO9",
  1549. "key": "九阳开水瓶K40-PO9",
  1550. "icon": "/static/image/shopping/shop45.png",
  1551. 'basePrice': "302.9",
  1552. 'salePrice': "599",
  1553. },
  1554. {
  1555. "name": "东菱(Donlim)面包机多士炉TA-8600",
  1556. "key": "东菱(Donlim)面包机多士炉TA-8600",
  1557. "icon": "/static/image/shopping/shop46.png",
  1558. 'basePrice': "69.9",
  1559. 'salePrice': "199",
  1560. },
  1561. {
  1562. "name": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1563. "key": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1564. "icon": "/static/image/shopping/shop47.png",
  1565. 'basePrice': "203.9",
  1566. 'salePrice': "269",
  1567. },
  1568. {
  1569. "name": "九阳 多功能锅 DG20G-G D711",
  1570. "key": "九阳 多功能锅 DG20G-G D711",
  1571. "icon": "/static/image/shopping/shop48.png",
  1572. 'basePrice': "185.9",
  1573. 'salePrice': "399",
  1574. },
  1575. {
  1576. "name": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1577. "key": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1578. "icon": "/static/image/shopping/shop49.png",
  1579. 'basePrice': "80.9",
  1580. 'salePrice': "199",
  1581. }
  1582. ]
  1583. },
  1584. {
  1585. "name": "大家电",
  1586. "foods": [{
  1587. "name": "九阳开水瓶K40-PO9",
  1588. "key": "九阳开水瓶K40-PO9",
  1589. "icon": "/static/image/shopping/shop45.png",
  1590. 'basePrice': "302.9",
  1591. 'salePrice': "599",
  1592. },
  1593. {
  1594. "name": "东菱(Donlim)面包机多士炉TA-8600",
  1595. "key": "东菱(Donlim)面包机多士炉TA-8600",
  1596. "icon": "/static/image/shopping/shop46.png",
  1597. 'basePrice': "69.9",
  1598. 'salePrice': "199",
  1599. },
  1600. {
  1601. "name": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1602. "key": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1603. "icon": "/static/image/shopping/shop47.png",
  1604. 'basePrice': "203.9",
  1605. 'salePrice': "269",
  1606. },
  1607. {
  1608. "name": "九阳 多功能锅 DG20G-G D711",
  1609. "key": "九阳 多功能锅 DG20G-G D711",
  1610. "icon": "/static/image/shopping/shop48.png",
  1611. 'basePrice': "185.9",
  1612. 'salePrice': "399",
  1613. },
  1614. {
  1615. "name": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1616. "key": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1617. "icon": "/static/image/shopping/shop49.png",
  1618. 'basePrice': "80.9",
  1619. 'salePrice': "199",
  1620. }
  1621. ]
  1622. },
  1623. {
  1624. "name": "个护健康",
  1625. "foods": [{
  1626. "name": "九阳开水瓶K40-PO9",
  1627. "key": "九阳开水瓶K40-PO9",
  1628. "icon": "/static/image/shopping/shop45.png",
  1629. 'basePrice': "302.9",
  1630. 'salePrice': "599",
  1631. },
  1632. {
  1633. "name": "东菱(Donlim)面包机多士炉TA-8600",
  1634. "key": "东菱(Donlim)面包机多士炉TA-8600",
  1635. "icon": "/static/image/shopping/shop46.png",
  1636. 'basePrice': "69.9",
  1637. 'salePrice': "199",
  1638. },
  1639. {
  1640. "name": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1641. "key": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1642. "icon": "/static/image/shopping/shop47.png",
  1643. 'basePrice': "203.9",
  1644. 'salePrice': "269",
  1645. },
  1646. {
  1647. "name": "九阳 多功能锅 DG20G-G D711",
  1648. "key": "九阳 多功能锅 DG20G-G D711",
  1649. "icon": "/static/image/shopping/shop48.png",
  1650. 'basePrice': "185.9",
  1651. 'salePrice': "399",
  1652. },
  1653. {
  1654. "name": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1655. "key": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1656. "icon": "/static/image/shopping/shop49.png",
  1657. 'basePrice': "80.9",
  1658. 'salePrice': "199",
  1659. }
  1660. ]
  1661. },
  1662. {
  1663. "name": "居家电器",
  1664. "foods": [{
  1665. "name": "九阳开水瓶K40-PO9",
  1666. "key": "九阳开水瓶K40-PO9",
  1667. "icon": "/static/image/shopping/shop45.png",
  1668. 'basePrice': "302.9",
  1669. 'salePrice': "599",
  1670. },
  1671. {
  1672. "name": "东菱(Donlim)面包机多士炉TA-8600",
  1673. "key": "东菱(Donlim)面包机多士炉TA-8600",
  1674. "icon": "/static/image/shopping/shop46.png",
  1675. 'basePrice': "69.9",
  1676. 'salePrice': "199",
  1677. },
  1678. {
  1679. "name": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1680. "key": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1681. "icon": "/static/image/shopping/shop47.png",
  1682. 'basePrice': "203.9",
  1683. 'salePrice': "269",
  1684. },
  1685. {
  1686. "name": "九阳 多功能锅 DG20G-G D711",
  1687. "key": "九阳 多功能锅 DG20G-G D711",
  1688. "icon": "/static/image/shopping/shop48.png",
  1689. 'basePrice': "185.9",
  1690. 'salePrice': "399",
  1691. },
  1692. {
  1693. "name": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1694. "key": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1695. "icon": "/static/image/shopping/shop49.png",
  1696. 'basePrice': "80.9",
  1697. 'salePrice': "199",
  1698. }
  1699. ]
  1700. },
  1701. {
  1702. "name": "厨房小电",
  1703. "foods": [{
  1704. "name": "九阳开水瓶K40-PO9",
  1705. "key": "九阳开水瓶K40-PO9",
  1706. "icon": "/static/image/shopping/shop45.png",
  1707. 'basePrice': "302.9",
  1708. 'salePrice': "599",
  1709. },
  1710. {
  1711. "name": "东菱(Donlim)面包机多士炉TA-8600",
  1712. "key": "东菱(Donlim)面包机多士炉TA-8600",
  1713. "icon": "/static/image/shopping/shop46.png",
  1714. 'basePrice': "69.9",
  1715. 'salePrice': "199",
  1716. },
  1717. {
  1718. "name": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1719. "key": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1720. "icon": "/static/image/shopping/shop47.png",
  1721. 'basePrice': "203.9",
  1722. 'salePrice': "269",
  1723. },
  1724. {
  1725. "name": "九阳 多功能锅 DG20G-G D711",
  1726. "key": "九阳 多功能锅 DG20G-G D711",
  1727. "icon": "/static/image/shopping/shop48.png",
  1728. 'basePrice': "185.9",
  1729. 'salePrice': "399",
  1730. },
  1731. {
  1732. "name": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1733. "key": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1734. "icon": "/static/image/shopping/shop49.png",
  1735. 'basePrice': "80.9",
  1736. 'salePrice': "199",
  1737. }
  1738. ]
  1739. },
  1740. {
  1741. "name": "生活电器",
  1742. "foods": [{
  1743. "name": "九阳开水瓶K40-PO9",
  1744. "key": "九阳开水瓶K40-PO9",
  1745. "icon": "/static/image/shopping/shop45.png",
  1746. 'basePrice': "302.9",
  1747. 'salePrice': "599",
  1748. },
  1749. {
  1750. "name": "东菱(Donlim)面包机多士炉TA-8600",
  1751. "key": "东菱(Donlim)面包机多士炉TA-8600",
  1752. "icon": "/static/image/shopping/shop46.png",
  1753. 'basePrice': "69.9",
  1754. 'salePrice': "199",
  1755. },
  1756. {
  1757. "name": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1758. "key": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1759. "icon": "/static/image/shopping/shop47.png",
  1760. 'basePrice': "203.9",
  1761. 'salePrice': "269",
  1762. },
  1763. {
  1764. "name": "九阳 多功能锅 DG20G-G D711",
  1765. "key": "九阳 多功能锅 DG20G-G D711",
  1766. "icon": "/static/image/shopping/shop48.png",
  1767. 'basePrice': "185.9",
  1768. 'salePrice': "399",
  1769. },
  1770. {
  1771. "name": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1772. "key": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1773. "icon": "/static/image/shopping/shop49.png",
  1774. 'basePrice': "80.9",
  1775. 'salePrice': "199",
  1776. }
  1777. ]
  1778. },
  1779. {
  1780. "name": "家电配件",
  1781. "foods": [{
  1782. "name": "九阳开水瓶K40-PO9",
  1783. "key": "九阳开水瓶K40-PO9",
  1784. "icon": "/static/image/shopping/shop45.png",
  1785. 'basePrice': "302.9",
  1786. 'salePrice': "599",
  1787. },
  1788. {
  1789. "name": "东菱(Donlim)面包机多士炉TA-8600",
  1790. "key": "东菱(Donlim)面包机多士炉TA-8600",
  1791. "icon": "/static/image/shopping/shop46.png",
  1792. 'basePrice': "69.9",
  1793. 'salePrice': "199",
  1794. },
  1795. {
  1796. "name": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1797. "key": "东菱 轻量烧水杯 DL-4153晨曦黄",
  1798. "icon": "/static/image/shopping/shop47.png",
  1799. 'basePrice': "203.9",
  1800. 'salePrice': "269",
  1801. },
  1802. {
  1803. "name": "九阳 多功能锅 DG20G-G D711",
  1804. "key": "九阳 多功能锅 DG20G-G D711",
  1805. "icon": "/static/image/shopping/shop48.png",
  1806. 'basePrice': "185.9",
  1807. 'salePrice': "399",
  1808. },
  1809. {
  1810. "name": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1811. "key": "九阳 迷你电蒸锅 DZ20HG-GZ620",
  1812. "icon": "/static/image/shopping/shop49.png",
  1813. 'basePrice': "80.9",
  1814. 'salePrice': "199",
  1815. }
  1816. ]
  1817. },
  1818. ]
  1819. },
  1820. ]