快捷搜索:  汽车  科技

recyclerview横向滑动条长度(RecyclerView实现横向滚动)

recyclerview横向滑动条长度(RecyclerView实现横向滚动)android:layout_height="wrap_content" android:layout_width="match_parent"[html] view plain copy print?<android.support.v7.widget.RecyclerView android:id="@ id/recycler_view"

我相信很久以前,大家在谈横向图片轮播是时候,优先会选择具有HorizontalScrollView效果和ViewPager来做,不过自从Google大会之后,系统为我们提供了另一个控件RecyclerView。RecyclerView是listview之后的又一利器,它可以实现高度的定制。今天就利用RecyclerView实现我们需要的相册效果。

先上一个图:

recyclerview横向滑动条长度(RecyclerView实现横向滚动)(1)

主要实现就是一个RecyclerView RecyclerView.Adapter实现。

Activity的布局文件:

[html] view plain copy print?

recyclerview横向滑动条长度(RecyclerView实现横向滚动)(2)

  1. <android.support.v7.widget.RecyclerView

  2. android:id="@ id/recycler_view"

  3. android:layout_width="match_parent"

  4. android:layout_height="wrap_content"

  5. android:layout_centerVertical="true"

  6. android:scrollbars="none"/>

我这里是自定义的控件,主要代码:

  1. public class SimpleLinearLayout extends LinearLayout {

  2. protected Context mContext;

  3. protected View contentView;

  4. protected AtomicBoolean isPreparingData;

  5. public SimpleLinearLayout(Context context) {

  6. super(context);

  7. this.mContext = context;

  8. isPreparingData = new AtomicBoolean(false);

  9. initViews();

  10. }

  11. public SimpleLinearLayout(Context context AttributeSet attrs) {

  12. super(context attrs);

  13. this.mContext = context;

  14. isPreparingData = new AtomicBoolean(false);

  15. initViews();

  16. }

  17. protected void initViews() {

  18. }

  19. }

主页面代码:

[html] view plain copy print?

recyclerview横向滑动条长度(RecyclerView实现横向滚动)(3)

  1. public class SpeedHourView extends SimpleLinearLayout {

  2. @BindView(R.id.recycler_view)

  3. RecyclerView recyclerView;

  4. private SpeedHourAdapter speedHourAdapter=null;

  5. private SpeedHourEntity entity=null;

  6. public SpeedHourView(Context context) {

  7. this(context null);

  8. }

  9. public SpeedHourView(Context context AttributeSet attrs) {

  10. super(context attrs);

  11. }

  12. @Override

  13. protected void initViews() {

  14. contentView = inflate(mContext R.layout.layout_speed_per_hour this);

  15. ButterKnife.bind(this);

  16. init();

  17. }

  18. private void init() {

  19. initData();

  20. initView();

  21. initAdapter();

  22. }

  23. private void initData() {

  24. String data = FileUtils.readAssert(mContext "speenhour.txt");

  25. entity = JsonUtils.parseJson(data SpeedHourEntity.class);

  26. }

  27. private void initView() {

  28. LinearLayoutManager linearLayoutManager = new LinearLayoutManager(mContext);

  29. linearLayoutManager.setOrientation(LinearLayoutManager.HORIZONTAL);

  30. recyclerView.setLayoutManager(linearLayoutManager);

  31. }

  32. private void initAdapter() {

  33. speedHourAdapter=new SpeedHourAdapter(mContext);

  34. recyclerView.setAdapter(speedHourAdapter);

  35. if (entity!=null&&entity.topic!=null&&entity.topic.items!=null&&entity.topic.items.size()>0){

  36. List<SpeedHourEntity.TopicBean.ItemsBean.ListBean>listBeen=entity.topic.items.get(0).list;

  37. if (listBeen!=null&&listBeen.size()>0)

  38. speedHourAdapter.setList(listBeen);

  39. }

  40. speedHourAdapter.setOnItemClickListener(new SpeedHourAdapter.OnItemClickListener() {

  41. @Override

  42. public void onItemClick(View view int position) {

  43. ProductDetailsActivity.open(mContext);

  44. }

  45. });

  46. }

  47. @OnClick(R.id.more_view)

  48. public void moreClick() {

  49. ToastUtils.showToast("更多时速达");

  50. }

  51. }

adapter布局:

[html] view plain copy print?

recyclerview横向滑动条长度(RecyclerView实现横向滚动)(4)

  1. <?xmlversion="1.0"encoding="utf-8"?>

  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"

  3. xmlns:ptr="http://schemas.android.com/apk/res-auto"

  4. android:id="@ id/speed_view"

  5. android:layout_width="wrap_content"

  6. android:layout_height="wrap_content"

  7. android:orientation="vertical"

  8. android:padding="10dp"

  9. android:gravity="center">

  10. <ImageView

  11. android:id="@ id/speed_image"

  12. android:layout_width="85dp"

  13. android:layout_height="85dp"

  14. android:scaleType="fitXY"

  15. />

  16. <TextView

  17. android:id="@ id/speed_name"

  18. style="@style/style_c6_s14"

  19. android:layout_marginTop="5dp"

  20. android:text="蜂蜜柚子茶"

  21. android:maxLines="1"/>

  22. <TextView

  23. android:id="@ id/speed_price"

  24. style="@style/style_c8_s14"

  25. android:layout_marginTop="5dp"

  26. android:text="¥30.0"

  27. android:maxLength="6"

  28. android:maxLines="1"/>

  29. </LinearLayout>

adapter代码:

[html] view plain copy print?

recyclerview横向滑动条长度(RecyclerView实现横向滚动)(5)

  1. public class SpeedHourAdapter extends RecyclerView.Adapter<SpeedHourHolder> {

  2. private List<ListBean> specailList;

  3. private LayoutInflater mInflater;

  4. private Context mContext=null;

  5. public SpeedHourAdapter(Context context) {

  6. this.mContext=context;

  7. mInflater = LayoutInflater.from(context);

  8. }

  9. public void setList(List<ListBean> list) {

  10. this.specailList = list;

  11. notifyDataSetChanged();

  12. }

  13. public OnItemClickListener mOnItemClickListener;

  14. public interface OnItemClickListener {

  15. void onItemClick(View view int position);

  16. }

  17. public void setOnItemClickListener(OnItemClickListener mOnItemClickLitener) {

  18. this.mOnItemClickListener = mOnItemClickLitener;

  19. }

  20. @Override

  21. public SpeedHourHolder onCreateViewHolder(ViewGroup parent int viewType) {

  22. View view = mInflater.inflate(R.layout.item_speedhour_layout parent false);

  23. SpeedHourHolder holder = new SpeedHourHolder(view);

  24. return holder;

  25. }

  26. @Override

  27. public void onBindViewHolder(final SpeedHourHolder holder final int position) {

  28. ListBean bean = specailList.get(position);

  29. if (bean != null) {

  30. holder.speedImage.setScaleType(ImageView.ScaleType.FIT_XY);

  31. Glide.with(mContext).load(bean.pic).error(R.drawable.welfare_default_icon).into(holder.speedImage);

  32. holder.speedName.setText("同仁堂枸杞茶");

  33. holder.speedPrice.setText("¥" Math.random()*100);

  34. }

  35. holder.speedView.setOnClickListener(new View.OnClickListener() {

  36. @Override

  37. public void onClick(View view) {

  38. if (mOnItemClickListener!=null){

  39. mOnItemClickListener.onItemClick(holder.speedView position);

  40. }

  41. }

  42. });

  43. }

  44. @Override

  45. public int getItemCount() {

  46. return specailList.size();

  47. }

  48. }

  49. class SpeedHourHolder extends RecyclerView.ViewHolder {

  50. @BindView(R.id.speed_view)

  51. LinearLayout speedView;

  52. @BindView(R.id.speed_image)

  53. ImageView speedImage;

  54. @BindView(R.id.speed_name)

  55. TextView speedName;

  56. @BindView(R.id.speed_price)

  57. TextView speedPrice;

  58. public SpeedHourHolder(View itemView) {

  59. super(itemView);

  60. ButterKnife.bind(this itemView);

  61. itemView.setTag(this);

  62. }

  63. }

代码中用到的实体类:

[html] view plain copy print?

recyclerview横向滑动条长度(RecyclerView实现横向滚动)(6)

  1. public class SpeedHourEntity {

  2. public TopicBean topic;

  3. public static class TopicBean {

  4. public long nextupdatetime;

  5. public List<ItemsBean> items;

  6. public static class ItemsBean {

  7. public int id;

  8. public String theme;

  9. public int products;

  10. public int users;

  11. public String href;

  12. public boolean follow;

  13. public int topictype;

  14. public List<ListBean> list;

  15. public static class ListBean {

  16. public String id;

  17. public int price;

  18. public String pic;

  19. }

  20. }

  21. }

  22. }

用到的 Json工具类也给大家

[html] view plain copy print?

recyclerview横向滑动条长度(RecyclerView实现横向滚动)(7)

  1. public class JsonUtils {

  2. private static Gson gson = new Gson();

  3. public static <T> T parseJson(String response Class<T> clazz) {

  4. try {

  5. return gson.fromJson(response clazz);

  6. } catch (Exception e) {

  7. e.printStackTrace();

  8. return null;

  9. }

  10. }

  11. public static <T> T parseJson(String response Type type) {

  12. try {

  13. return gson.fromJson(response type);

  14. } catch (Exception e) {

  15. e.printStackTrace();

  16. return null;

  17. }

  18. }

  19. public static String toJson(Object object) {

  20. try {

  21. return gson.toJson(object);

  22. } catch (Exception e) {

  23. e.printStackTrace();

  24. return null;

  25. }

  26. }

  27. public static <T> List<T> jsonToList(final String jsonString final Type type) {

  28. try {

  29. return gson.fromJson(jsonString type);

  30. } catch (Exception e) {

  31. return null;

  32. }

  33. }

  34. public static <T> List<T> jsonToList(final JsonArray jsonArray final Class<T> classOfT) {

  35. List<T>list = new ArrayList<T>();

  36. for (int i = 0 size = jsonArray.size(); i <size; i ) {

  37. list.add(gson.fromJson(jsonArray.get(i) classOfT));

  38. }

  39. return list;

  40. }

  41. public static <T> T parseJson(final JsonObject jsonObject final Class<T> classOfT) {

  42. try {

  43. return gson.fromJson(jsonObject classOfT);

  44. } catch (Exception e) {

  45. return null;

  46. }

  47. }

  48. public static Map toMap(Object jsonString) {

  49. if (TextUtils.isEmpty(jsonString.toString())) {

  50. return new HashMap();

  51. }

  52. String js = jsonString.toString();

  53. Gson gson = new Gson();

  54. Type type = new TypeToken<Map>(){

  55. }.getType();

  56. Map map = gson.fromJson(js type);

  57. return map;

  58. }

  59. }

为了方便测试,给大家提供一段数据,大家放在assert就好了,然后读到实体类就好了:

[html] view plain copy print?

recyclerview横向滑动条长度(RecyclerView实现横向滚动)(8)

  1. {

  2. topic: {

  3. nextupdatetime: 1472699607850

  4. items: [

  5. {

  6. id: 1000010

  7. theme: "追韩剧不能少“美眸”心机"

  8. products: 793

  9. users: 325

  10. href: ""

  11. list: [

  12. {

  13. id: "50119e86-8d67-4919-a41f-be8202b62b7e"

  14. price: 288

  15. pic: "http://pc1.img.ymatou.com/G02/shangou/M08/D4/59/CgvUBVeW2oOAJZOgAAChvNt-3Yc332_n_w_l.jpg"

  16. }

  17. {

  18. id: "936f2615-10bb-4831-8674-9bea0b43b486"

  19. price: 79

  20. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/79/BE/CgvUA1eMo0iAL9yhAAOEN7artTM830_n_w_l.jpg"

  21. }

  22. {

  23. id: "24f2be35-ba6e-4bb7-b60d-47d9c2a5bb7d"

  24. price: 35

  25. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/BA/86/CgvUBFdXdlKAJs8WAAhZYEeKhCI758_w_ls.jpg"

  26. }

  27. {

  28. id: "6e43adf2-18b0-40aa-a95d-84ad3cf352f7"

  29. price: 29

  30. pic: "http://pc2.img.ymatou.com/G02/upload/product/original/M07/13/22/CgvUA1eADhCAHWyQAAHAnGAUtm4799_n_w_l.jpg"

  31. }

  32. {

  33. id: "c082d977-e06f-4f24-bf3e-7768b839170c"

  34. price: 758

  35. pic: "http://pc2.img.ymatou.com/G02/shangou/M07/B5/D4/CgvUA1dW4XWALArJAACZadCCJ5Q293_w_ls.jpg"

  36. }

  37. {

  38. id: "7737d9eb-ae85-4911-8f80-939c4d805b0a"

  39. price: 29

  40. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/56/B2/CgvUBFeoq9iAXyveAAPoUP0-kYA656_n_w_l.jpg"

  41. }

  42. {

  43. id: "bcc4517e-20d5-48da-ae46-708d2e8d03af"

  44. price: 288

  45. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/CC/8F/CgvUA1d6N7yASvgPAAMymJaT5yQ96_n_w_l.jpeg"

  46. }

  47. {

  48. id: "c717e1bd-7a3b-4f92-9317-84b4147ede71"

  49. price: 78

  50. pic: "http://pc1.img.ymatou.com/G02/upload/product/original/M07/8B/12/CgvUBFeOSB2AD_7dAAGNl3gl_gU541_n_w_l.jpg"

  51. }

  52. {

  53. id: "139594cb-833c-4ade-b547-3a9a056b193e"

  54. price: 69

  55. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/9D/5D/CgvUA1dWSM6AYn7hAAWcHrWn_90648_w_ls.png"

  56. }

  57. {

  58. id: "4414e81f-fc3b-427c-b1ee-37b03883e0dc"

  59. price: 88

  60. pic: "http://pc1.img.ymatou.com/G02/shangou/M09/02/76/CgvUBFeHQLSALvfLAAHccf91md4006_n_w_l.jpg"

  61. }

  62. ]

  63. follow: false

  64. topictype: 106

  65. }

  66. {

  67. id: 1001185

  68. theme: "Tommy Hilfiger男女服饰精选"

  69. products: 553

  70. users: 111

  71. href: ""

  72. list: [

  73. {

  74. id: "bd128bbf-243b-4c2e-a1d4-ea698b06142e"

  75. price: 99

  76. pic: "http://pc1.img.ymatou.com/G02/shangou/M08/16/8A/CgvUBFfGh_SADrC8AALybC7Xmv8091_n_w_l.jpg"

  77. }

  78. {

  79. id: "ea044aaf-32da-4c6e-b867-755fa780036d"

  80. price: 229

  81. pic: "http://pc1.img.ymatou.com/G02/shangou/M08/13/4F/CgvUBFfGA0-AFbQsAALknGVeqU8444_n_w_l.jpg"

  82. }

  83. {

  84. id: "5b5730a9-3343-4ef6-b78b-8b585c0b78f2"

  85. price: 168

  86. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/38/1D/CgvUBFekEIOAc8EdAAEHlzPTZWw039_n_w_l.jpg"

  87. }

  88. {

  89. id: "e956417a-e476-486b-be19-8fd64c6fe551"

  90. price: 199

  91. pic: "http://pc1.img.ymatou.com/G02/shangou/M09/D9/DC/CgvUA1d7vRqAGFxnAADXh3zHBn4743_n_w_l.jpg"

  92. }

  93. {

  94. id: "1d3e6f9b-d5f5-436c-a0d4-2e04a9e08c0d"

  95. price: 299

  96. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/D9/C2/CgvUBVe8dPCAMcc8AAJ6-rOnfWA070_n_w_l.jpg"

  97. }

  98. {

  99. id: "d44ca918-3e73-4b24-a81b-f88813be057e"

  100. price: 258

  101. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/C1/EF/CgvUBVe4txiAIkmjAAMYwUZonWk554_n_w_l.jpg"

  102. }

  103. {

  104. id: "9f9b285a-bd18-409e-a66a-d05c717898d0"

  105. price: 179

  106. pic: "http://pc1.img.ymatou.com/G02/shangou/M03/45/84/CgvUBFeIhXGANzZpAADWX4O6_Xc860_n_w_l.jpg"

  107. }

  108. {

  109. id: "c13e8714-e1a8-48a7-b47b-7c165aa63c34"

  110. price: 178

  111. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/9E/4B/CgvUA1ezz_yALQtFAAHeUOJ-DcY945_n_w_l.jpg"

  112. }

  113. {

  114. id: "29aa1c5a-5f6e-4a80-9305-84e83cf652fc"

  115. price: 299

  116. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/EB/44/CgvUBFeZslCADHsjAAPW3Sy2qj8675_n_w_l.jpg"

  117. }

  118. {

  119. id: "d8120a37-aa93-4e4f-934a-4245c4f42c71"

  120. price: 388

  121. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/50/3A/CgvUBVen9AKAOZLHAAFhQsWjV14609_n_w_l.jpg"

  122. }

  123. ]

  124. follow: false

  125. topictype: 106

  126. }

  127. {

  128. id: 1002054

  129. theme: "每个都市白领都有一只时尚腕表"

  130. products: 310

  131. users: 68

  132. href: ""

  133. list: [

  134. {

  135. id: "386ebe00-cdd0-4324-92f7-6a25179fe557"

  136. price: 1999

  137. pic: "http://pc1.img.ymatou.com/G02/shangou/M05/7E/4D/CgvUBVeNHI6APdp3AAFZgOkl-XU821_n_w_l.jpg"

  138. }

  139. {

  140. id: "4d93b2e6-7bf6-4878-830f-6ed22c380731"

  141. price: 1550

  142. pic: "http://pc1.img.ymatou.com/G02/shangou/M04/6B/D1/CgvUBVer7BSAE7tTAAGD0sdyEp4918_n_w_l.jpg"

  143. }

  144. {

  145. id: "e6b2eaef-e8ea-4ca1-b9cb-fba630e79572"

  146. price: 398

  147. pic: "http://pc1.img.ymatou.com/G02/upload/product/original/M00/EC/53/CgvUBFd-GgWAZ0hWAAHuCzGVzlE002_n_w_l.jpg"

  148. }

  149. {

  150. id: "0bf2584d-52eb-403e-b668-fc59eddf7b35"

  151. price: 899

  152. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/50/9C/CgvUBFeoBtaAVRJaAAPRD_cW1jI986_n_w_l.jpg"

  153. }

  154. {

  155. id: "756ca0ed-b128-4b72-a308-f5cde1a31fbb"

  156. price: 1788

  157. pic: "http://pc2.img.ymatou.com/G02/upload/product/original/M04/13/FE/CgvUBFeAGCiAeyEgAAOoCajEei0337_n_w_l.jpg"

  158. }

  159. {

  160. id: "c5c95dd3-0585-4ccd-b34b-b2a1b0c98915"

  161. price: 1460

  162. pic: "http://pc1.img.ymatou.com/G02/shangou/M04/ED/CF/CgvUA1eZ0Y2AQV2gAAJMchT1mjY462_n_w_l.jpg"

  163. }

  164. {

  165. id: "c5a664db-aa70-47d1-b0e6-15ad1faafcbe"

  166. price: 1299

  167. pic: "http://pc1.img.ymatou.com/G02/shangou/M08/15/40/CgvUA1egLnyAZo-IAAIVAvK1Hxw422_n_w_l.jpg"

  168. }

  169. {

  170. id: "a3449aef-fdec-4344-9bca-f98b27a8a3de"

  171. price: 2380

  172. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/FB/EB/CgvUBVfBjXOAZiOhAAJILon5PNE706_n_w_l.jpg"

  173. }

  174. {

  175. id: "cb473f7e-3a40-4eb5-8778-043308c80ad4"

  176. price: 299

  177. pic: "http://pc1.img.ymatou.com/G02/shangou/M03/99/BF/CgvUBVePNzOAR5inAAFt690zWtA662_n_w_l.jpg"

  178. }

  179. {

  180. id: "2ad9f10e-ee94-49a7-95e8-b37104b86dc4"

  181. price: 699

  182. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/06/F6/CgvUA1eHRaGAL-WUAACUnFlglbU914_n_w_l.jpg"

  183. }

  184. ]

  185. follow: false

  186. topictype: 106

  187. }

  188. {

  189. id: 1000691

  190. theme: "工薪族必备 一只FURLA手袋"

  191. products: 369

  192. users: 81

  193. href: ""

  194. list: [

  195. {

  196. id: "326d57e0-e202-45c9-a418-1f7c5c6cee37"

  197. price: 1599

  198. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/99/9B/CgvUBFezGJmAf-gQAAH98NQDroc227_n_w_l.jpg"

  199. }

  200. {

  201. id: "8c0aa3ec-0fba-4ee8-8952-74ebca2dd260"

  202. price: 799

  203. pic: "http://pc1.img.ymatou.com/G02/shangou/M04/7C/AD/CgvUBVeM506AGvgHAAEYWxTXLXc839_n_w_l.jpg"

  204. }

  205. {

  206. id: "3e04f95c-4b0f-4b9f-ae44-0391ab2f1616"

  207. price: 1880

  208. pic: "http://pc1.img.ymatou.com/G02/shangou/M05/A5/E7/CgvUA1eQVrKAXqQVAALdAABuInM554_n_w_l.jpg"

  209. }

  210. {

  211. id: "05059f48-a6bb-48c1-88df-7ecabe65bd4a"

  212. price: 799

  213. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/7C/8A/CgvUBVeM5E2ABWGgAAJ_9inEqjQ669_n_w_l.jpg"

  214. }

  215. {

  216. id: "0962bf25-c417-409d-b39b-daf84c9a4e9d"

  217. price: 988

  218. pic: "http://pc1.img.ymatou.com/G02/shangou/M04/C3/0F/CgvUA1e4-vmAZpGRAAH_XdWHcGE171_n_w_l.jpg"

  219. }

  220. {

  221. id: "5c960ae1-27e3-4c94-8233-7456dc9e82b6"

  222. price: 850

  223. pic: "http://pc1.img.ymatou.com/G02/shangou/M08/AF/1A/CgvUA1e1xIGASjQqAAIsrHq1TpY720_n_w_l.jpg"

  224. }

  225. {

  226. id: "52184a55-e7e5-4e43-9a11-7b9fcc737136"

  227. price: 1590

  228. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/79/E6/CgvUBFety5GASYSLAAJeGTYNSgQ032_n_w_l.jpg"

  229. }

  230. {

  231. id: "f11bbaf9-64eb-44ce-9bd3-07e8c8c6d1b3"

  232. price: 2099

  233. pic: "http://pc1.img.ymatou.com/G02/shangou/M03/36/F6/CgvUBVej7UuABhdEAAGb2YixMaY568_n_w_l.jpg"

  234. }

  235. {

  236. id: "6dbd4793-2b34-43b5-8b81-7432d301bc34"

  237. price: 2088

  238. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/6C/81/CgvUA1er7guALEOhAAFI7ymRkME838_n_w_l.jpg"

  239. }

  240. {

  241. id: "1d6f1747-a292-4821-98a0-becc67381f98"

  242. price: 1450

  243. pic: "http://pc1.img.ymatou.com/G02/shangou/M09/0D/1C/CgvUBVfE91SASW_GAAHV3WPdWSU789_n_w_l.jpg"

  244. }

  245. ]

  246. follow: false

  247. topictype: 106

  248. }

  249. {

  250. id: 1000335

  251. theme: "你不穿,怎么知道尖头鞋有多美"

  252. products: 262

  253. users: 61

  254. href: ""

  255. list: [

  256. {

  257. id: "5dc85724-e39b-4d29-bb33-bea45910d64e"

  258. price: 795

  259. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/0C/2B/CgvUA1fEoT2AX5jGAAOIddgXk2s232_n_w_l.jpg"

  260. }

  261. {

  262. id: "b47bcbea-e115-41be-94d7-a81d012997d9"

  263. price: 699

  264. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/A7/91/CgvUA1dWePGAbtnBAACpSJlaJJI503_w_ls.jpg"

  265. }

  266. {

  267. id: "1b27c7c2-e996-4039-b403-505425c7c661"

  268. price: 799

  269. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/F4/B2/CgvUBVfASQmAfqPkAAJ5Y5NW4DU258_n_w_l.jpg"

  270. }

  271. {

  272. id: "86c2f638-f8cb-4e41-9165-b186b90de522"

  273. price: 799

  274. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/41/2D/CgvUBFeIW0SAGrUQAAdZ8pOEVPU386_n_w_l.JPG"

  275. }

  276. {

  277. id: "93251a4a-9265-47e8-a108-b790250ca5eb"

  278. price: 599

  279. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/4D/53/CgvUBVeGEjSAHP8rAADp5SupP3A653_n_w_l.jpg"

  280. }

  281. {

  282. id: "522bcfb0-540e-4765-b391-6928e0a63afd"

  283. price: 259

  284. pic: "http://pc1.img.ymatou.com/G02/shangou/M09/B9/2B/CgvUBFeS2B-AXOelAAKE2I31Jxk211_n_w_l.jpg"

  285. }

  286. {

  287. id: "565a3590-f8e2-467a-b5ec-a7e648e3da05"

  288. price: 399

  289. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/C9/C9/CgvUBFe6W8eAaV7fAADdh7847PY900_n_w_l.jpg"

  290. }

  291. {

  292. id: "f0f11042-9d05-4b69-82c2-a8c614025b7c"

  293. price: 699

  294. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/CA/32/CgvUBVe6Wi-AFdLaAAIhgT3Z4Zw873_n_w_l.jpg"

  295. }

  296. {

  297. id: "2099167d-39bf-4949-b5ae-fd156d49a38f"

  298. price: 299

  299. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/E5/4F/CgvUBVe-TXmABZ7JAAFIlZ70s98657_n_w_l.jpg"

  300. }

  301. {

  302. id: "5314a6cc-1ade-4fac-80ba-c32e2d43d839"

  303. price: 599

  304. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/F2/D6/CgvUA1eaj5aAH0JHAADbLN5GWzI823_n_w_l.jpg"

  305. }

  306. ]

  307. follow: false

  308. topictype: 106

  309. }

  310. {

  311. id: 1000981

  312. theme: "职场男的钱包就应该这么选"

  313. products: 708

  314. users: 210

  315. href: ""

  316. list: [

  317. {

  318. id: "0b5d3386-bb9f-46d3-bd4a-826f926c9073"

  319. price: 499

  320. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/0D/00/CgvUA1ee6ZyAPdqtAAKbDUt68dw320_n_w_l.jpg"

  321. }

  322. {

  323. id: "d558cf02-35a6-45a9-a84d-90930f85b204"

  324. price: 480

  325. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/5D/1F/CgvUBFepp3qAEzN8AANrv-wGJEE984_n_w_l.jpg"

  326. }

  327. {

  328. id: "b9074e54-190e-491d-8e73-21a94884d252"

  329. price: 499

  330. pic: "http://pc1.img.ymatou.com/G02/shangou/M03/61/5D/CgvUBVeqe6yASqhuAAP6jd0k0E4643_n_w_l.jpg"

  331. }

  332. {

  333. id: "96c9711e-5655-4de2-994e-4a6baa61df8b"

  334. price: 1380

  335. pic: "http://pc1.img.ymatou.com/G02/shangou/M05/9A/03/CgvUBVezF6CAIHYxAAKT5rHhHSw992_n_w_l.jpg"

  336. }

  337. {

  338. id: "62de6949-d5e0-4d60-a6f0-34901ba6a7ce"

  339. price: 1300

  340. pic: "http://pc1.img.ymatou.com/G02/shangou/M03/6A/90/CgvUBVerwt6AS6jJAAUc50dRQYw030_n_w_l.jpg"

  341. }

  342. {

  343. id: "1cbc7f2e-af91-4c29-9ba8-5609ce3263a5"

  344. price: 189

  345. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/A9/ED/CgvUBVe1WyaARpI7AAIrPYzQMWk137_n_w_l.jpg"

  346. }

  347. {

  348. id: "b7531635-edd8-4c83-93e6-196e73fcd7b5"

  349. price: 299

  350. pic: "http://pc1.img.ymatou.com/G02/shangou/M06/C2/C4/CgvUBVe4_uSAFbPRAALWCg7g2k4590_n_w_l.jpg"

  351. }

  352. {

  353. id: "731575af-0031-4211-8d3a-75ef19a04d51"

  354. price: 800

  355. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/B9/F4/CgvUA1e3ZHmAF3_xAAJinKN4FpE421_n_w_l.jpg"

  356. }

  357. {

  358. id: "506225eb-5135-4a8d-8f9a-dedc4d69af57"

  359. price: 488

  360. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/D3/33/CgvUA1eWl-iANn4pAARnRxR7FKE211_n_w_l.jpg"

  361. }

  362. {

  363. id: "ae673d4e-59c6-4ae3-a7bd-6f4ff7ec0484"

  364. price: 399

  365. pic: "http://pc1.img.ymatou.com/G02/shangou/M06/42/4D/CgvUBFeIZ9aAcfTXAASRR__3Ns4881_n_w_l.jpg"

  366. }

  367. ]

  368. follow: false

  369. topictype: 106

  370. }

  371. {

  372. id: 1001855

  373. theme: "少女派最该入手的唇膏盘点"

  374. products: 221

  375. users: 121

  376. href: ""

  377. list: [

  378. {

  379. id: "dd59aefa-0619-40a9-8f44-33b7b980e7e7"

  380. price: 36

  381. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/44/92/CgvUBVelr-mARWRMAAL0-pzS8GQ614_n_w_l.jpg"

  382. }

  383. {

  384. id: "85b8ce98-b7e6-4323-83b7-ba891f0a0da3"

  385. price: 249

  386. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/F6/9E/CgvUBVfAv0CAYFwEAAHpgOwVRgw908_n_w_l.jpg"

  387. }

  388. {

  389. id: "9dfe69a1-fc6d-4652-941b-3e1140ef50ec"

  390. price: 199

  391. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/98/FC/CgvUBVePKD2AXj_uAAGhr-ddlCs021_n_w_l.jpg"

  392. }

  393. {

  394. id: "db7ea83c-90a2-4569-a063-2580e4bbe586"

  395. price: 149

  396. pic: "http://pc1.img.ymatou.com/G02/shangou/M05/08/4B/CgvUBFeeBECASewiAAFv5dozLqQ743_n_w_l.jpg"

  397. }

  398. {

  399. id: "7e702512-bc7c-49a7-894c-7f79e08635b6"

  400. price: 209

  401. pic: "http://pc1.img.ymatou.com/G02/upload/product/original/M0A/22/F6/CgvUBFeAcu-ADZbNAAbBZzsCMZo894_n_w_l.jpg"

  402. }

  403. {

  404. id: "8aa440ee-b99c-4047-ad6b-669b0c864266"

  405. price: 85

  406. pic: "http://pc1.img.ymatou.com/G02/upload/product/original/M0B/8E/DC/CgvUA1eOS5KABSC4AAE47YcX0yo815_n_w_l.jpg"

  407. }

  408. {

  409. id: "4b845bc6-dde2-4d83-b3cb-5c2aba1629ee"

  410. price: 68

  411. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/72/E9/CgvUBFeMM6qABb7rAAe2r7x1tQQ859_n_w_l.jpg"

  412. }

  413. {

  414. id: "43c635e7-01e8-4dfc-be38-5d11d9bd67bd"

  415. price: 195

  416. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/9D/DE/CgvUA1ePZEOAQ1kZAAY-lRjPbzQ155_n_w_l.JPG"

  417. }

  418. {

  419. id: "3689fe6f-fc0d-4a4a-a5b1-0553038e154f"

  420. price: 218

  421. pic: "http://pc1.img.ymatou.com/G02/shangou/M09/50/76/CgvUBVeI4T-AOjh-AALGBDOtN9w821_n_w_l.jpg"

  422. }

  423. {

  424. id: "9a1aa6ec-fcab-4206-bce3-75b0eed4a331"

  425. price: 199

  426. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/DC/0C/CgvUBFe9ExSAAxj-AALHgxQqlcY432_n_w_l.jpg"

  427. }

  428. ]

  429. follow: false

  430. topictype: 106

  431. }

  432. {

  433. id: 1002012

  434. theme: "Kate spade的甜心少女风"

  435. products: 1125

  436. users: 157

  437. href: ""

  438. list: [

  439. {

  440. id: "a92b1158-d8cc-4bfc-bba1-8e269a597fc2"

  441. price: 1380

  442. pic: "http://pc1.img.ymatou.com/G02/shangou/M08/5F/46/CgvUBVep3VWAeqi5AAIJ0LKNigk289_n_w_l.jpg"

  443. }

  444. {

  445. id: "5a388eb3-e696-4c78-9b5a-4a6cefb54e2f"

  446. price: 1088

  447. pic: "http://pc1.img.ymatou.com/G02/shangou/M07/4F/4A/CgvUBFen5TSAPn2PAAI_RpcB9qM096_n_w_l.jpg"

  448. }

  449. {

  450. id: "c788ead9-44b1-47da-86db-f520e871a959"

  451. price: 875

  452. pic: "http://pc1.img.ymatou.com/G02/shangou/M09/B9/A7/CgvUA1eSypCAHLxPAALzOv-BEHo743_n_w_l.jpg"

  453. }

  454. {

  455. id: "2a8d3aac-0991-41db-bfcc-c89026f92756"

  456. price: 760

  457. pic: "http://pc1.img.ymatou.com/G02/shangou/M06/9B/E3/CgvUBFezohaAJuKgAAOQlbLJBiU608_n_w_l.jpg"

  458. }

  459. {

  460. id: "f13dd52f-b3ae-46cb-b4fc-c3eaeaac6a7e"

  461. price: 498

  462. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/CF/DF/CgvUBVd6qWiAJg6HAADCi9bKFak394_n_w_l.jpg"

  463. }

  464. {

  465. id: "bfa91c51-57a2-46c4-a6de-a420852be9ca"

  466. price: 429

  467. pic: "http://pc1.img.ymatou.com/G02/shangou/M06/8E/3A/CgvUA1dyasWAT8sCAADksewcyQ0275_n_w_l.jpg"

  468. }

  469. {

  470. id: "16462c30-454d-4566-a40c-1c9af6d066eb"

  471. price: 560

  472. pic: "http://pc1.img.ymatou.com/G02/shangou/M05/F1/CF/CgvUBVe__PSARr-9AANZ07utoWA217_n_w_l.JPG"

  473. }

  474. {

  475. id: "6a9d0e09-6d7f-42c1-bfd7-50adb12473a2"

  476. price: 1249

  477. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/97/B9/CgvUBVePEcaADHj-AAHcUtVj1OA401_n_w_l.jpg"

  478. }

  479. {

  480. id: "484a8967-c843-4d34-8876-4afca275cd58"

  481. price: 1250

  482. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/B3/0B/CgvUBVe2lp2AVGDtAAGFyOb9OhI144_n_w_l.jpg"

  483. }

  484. {

  485. id: "5e32fbce-be90-4c55-b3ba-2bd05de10f3a"

  486. price: 998

  487. pic: "http://pc1.img.ymatou.com/G02/shangou/M08/C3/0F/CgvUBVe5CL6ABP0CAAGc6XBDq5c140_n_w_l.jpg"

  488. }

  489. ]

  490. follow: false

  491. topictype: 106

  492. }

  493. {

  494. id: 1000657

  495. theme: "施华洛世奇 奢华之最"

  496. products: 1284

  497. users: 147

  498. href: ""

  499. list: [

  500. {

  501. id: "68775149-2996-40d3-8164-fe51ebaeb247"

  502. price: 390

  503. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/B5/40/CgvUA1e2usGAGMiOAAIeoEq4_8k942_n_w_l.jpg"

  504. }

  505. {

  506. id: "f4ea3d67-957b-44b1-824a-aca71b191975"

  507. price: 290

  508. pic: "http://pc1.img.ymatou.com/G02/shangou/M06/48/C1/CgvUBFemkpKAQimhAAIVTLA1TnM821_n_w_l.jpg"

  509. }

  510. {

  511. id: "608f9cea-865a-403f-a064-b7020d8b9151"

  512. price: 500

  513. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/C1/9B/CgvUBFe407aAVwHsAAEVmeaH0Wo087_n_w_l.jpg"

  514. }

  515. {

  516. id: "5f74f137-6b06-412f-92b0-6ccfabc5e4ff"

  517. price: 990

  518. pic: "http://pc1.img.ymatou.com/G02/shangou/M03/05/31/CgvUBFedjnOAeJW5AALIA4EvnDY776_n_w_l.jpg"

  519. }

  520. {

  521. id: "207db2b4-d7b7-40af-b769-a51384030781"

  522. price: 358

  523. pic: "http://pc3.img.ymatou.com/G02/shangou/M08/9B/A9/CgvUA1dWP5KAKz_nAASY1zfAp2Q998_w_ls.jpg"

  524. }

  525. {

  526. id: "61e75f97-934f-480a-a253-c4401a692c2f"

  527. price: 799

  528. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/61/16/CgvUA1eJ5eSAeljEAAMXM9aiJWo944_n_w_l.jpg"

  529. }

  530. {

  531. id: "f60f6587-e557-4261-b58f-31f5719df5ba"

  532. price: 580

  533. pic: "http://pc1.img.ymatou.com/G02/shangou/M06/50/97/CgvUBFeI4xKAQHy7AAEVKIt--A0224_n_w_l.jpg"

  534. }

  535. {

  536. id: "630d7893-6a9e-4fc8-8a93-098fce056920"

  537. price: 659

  538. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/A3/34/CgvUBVeQI_CAZkjQAAEm1d4A2xE253_n_w_l.jpg"

  539. }

  540. {

  541. id: "1e52e01f-335e-440b-99d6-7cd79ba6d1ae"

  542. price: 959

  543. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/B4/CC/CgvUBFd3Ik2AazqrAACZbtZm554683_n_w_l.jpg"

  544. }

  545. {

  546. id: "3b5663c3-c694-4a68-a02f-c6bda164427a"

  547. price: 515

  548. pic: "http://pc1.img.ymatou.com/G02/shangou/M03/A1/42/CgvUBVe0J1KAczpWAAG7JrvcS2w388_n_w_l.jpg"

  549. }

  550. ]

  551. follow: false

  552. topictype: 106

  553. }

  554. {

  555. id: 1002418

  556. theme: "爆款再见,饰品我只要独一无二"

  557. products: 113

  558. users: 33

  559. href: ""

  560. list: [

  561. {

  562. id: "dfff8751-775c-437f-8fa7-5aec934a5ef0"

  563. price: 89

  564. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/49/84/CgvUA1emjwCAYqSnAAGVFiRPoW4269_n_w_l.jpg"

  565. }

  566. {

  567. id: "ad098f8a-5fcd-42ab-afdd-3ff580a1ac0b"

  568. price: 350

  569. pic: "http://pc1.img.ymatou.com/G02/shangou/M03/41/AB/CgvUBFelUceAJv-yAAFqX0aWyWE901_n_w_l.jpg"

  570. }

  571. {

  572. id: "bda09ca7-56cb-4458-b6d1-9f988c9f326d"

  573. price: 450

  574. pic: "http://pc1.img.ymatou.com/G02/shangou/M08/98/7F/CgvUA1ey5bOAYkHaAAJFbg6Ji3M944_n_w_l.jpg"

  575. }

  576. {

  577. id: "23fc3728-a706-42ce-9e5f-7ce742474a73"

  578. price: 680

  579. pic: "http://pc1.img.ymatou.com/G02/shangou/M05/07/03/CgvUA1edweiAfoO3AAFmKdmzk3c556_n_w_l.jpg"

  580. }

  581. {

  582. id: "f8ea5393-7972-40b0-90b2-32b22378cb35"

  583. price: 290

  584. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/BE/92/CgvUA1e4G0uAEDW7AAIHW5H3aC8568_n_w_l.jpg"

  585. }

  586. {

  587. id: "f249ae53-750e-4237-a53d-7deb1c5102e5"

  588. price: 468

  589. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/C3/9F/CgvUBFeUZn6ATpvdAAWmCLN-aEk844_n_w_l.jpg"

  590. }

  591. {

  592. id: "460b5d5c-6b6e-4c03-aefa-a56c7a2df8d4"

  593. price: 3100

  594. pic: "http://pc1.img.ymatou.com/G02/shangou/M05/CF/AC/CgvUBVe6-jOAZ7w4AALCedzhGMQ665_n_w_l.jpg"

  595. }

  596. {

  597. id: "60040ecd-23f4-44e7-a3e9-81e36327a2ca"

  598. price: 129

  599. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/42/37/CgvUBVelXh2AHgrnAAHXOIwMgKw041_n_w_l.jpg"

  600. }

  601. {

  602. id: "83f60817-e22c-42e9-94cf-331e8ffc1ce3"

  603. price: 3350

  604. pic: "http://pc1.img.ymatou.com/G02/shangou/M06/60/38/CgvUBFeJ5Q6AD0MwAAKY-Ou9erk199_n_w_l.jpg"

  605. }

  606. {

  607. id: "0e816cf1-4c0d-4ced-a356-45620fbda1b8"

  608. price: 199

  609. pic: "http://pc1.img.ymatou.com/G02/upload/product/original/M07/FC/C3/CgvUBVd_rEqAHMPBAAOCO_DMoCM554_n_w_l.jpg"

  610. }

  611. ]

  612. follow: false

  613. topictype: 106

  614. }

  615. {

  616. id: 1003396

  617. theme: "清新淑女的露肩裙美到没朋友"

  618. products: 50

  619. users: 34

  620. href: ""

  621. list: [

  622. {

  623. id: "548c381a-2be7-4a6c-9344-b898f18e331e"

  624. price: 650

  625. pic: "http://pc1.img.ymatou.com/G02/shangou/M05/56/70/CgvUBVeomK2AOJWXAAKfQ3-H1DQ245_n_w_l.jpg"

  626. }

  627. {

  628. id: "8ca2ca1a-3f7b-4826-9b17-a339f4c4cbf3"

  629. price: 560

  630. pic: "http://pc1.img.ymatou.com/G02/shangou/M06/AE/6B/CgvUBVe1v6uAOOlwAAIW5S9SjFo614_n_w_l.jpg"

  631. }

  632. {

  633. id: "aed17646-dfe8-4969-bbd4-cfaab80000db"

  634. price: 1899

  635. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/DF/4F/CgvUBFe9ZWWAGrIwAAIQZS0wRbY838_n_w_l.jpg"

  636. }

  637. {

  638. id: "d77c9628-84aa-4e51-861f-f3674d195bd3"

  639. price: 200

  640. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/3A/DA/CgvUBFeIBgyAJubQAASBrt5UyVc044_n_w_l.jpg"

  641. }

  642. {

  643. id: "dee59eeb-d82c-4ff4-838c-c492b3d001ab"

  644. price: 218

  645. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/F1/F7/CgvUA1eaQR6AEQ61AAIW-fqc7Vo838_n_w_l.jpg"

  646. }

  647. {

  648. id: "994f9376-8e3b-4e27-b393-d4ca05fa046a"

  649. price: 229

  650. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/73/6A/CgvUBFes-HSANU0pAAPrzMLamgQ538_n_w_l.jpg"

  651. }

  652. {

  653. id: "af6efa07-6853-4d6c-acfc-a3043eb24988"

  654. price: 399

  655. pic: "http://pc1.img.ymatou.com/G02/shangou/M09/58/0D/CgvUBFepI7-AGrqWAAG-mCgD8Nc129_n_w_l.jpg"

  656. }

  657. {

  658. id: "5a721e93-2ea9-4155-8678-f5c09e518514"

  659. price: 369

  660. pic: "http://pc1.img.ymatou.com/G02/shangou/M08/B2/43/CgvUBVe2fWSAOSUaAADtD35Mn34794_n_w_l.jpg"

  661. }

  662. {

  663. id: "a878b978-31c0-4284-a6de-f63aafd61312"

  664. price: 1999

  665. pic: "http://pc1.img.ymatou.com/G02/shangou/M0B/D6/AF/CgvUBFe8L7SAMnTMAAG-UvVKf8U384_n_w_l.jpg"

  666. }

  667. {

  668. id: "2215cbde-97a6-46d5-aea2-9440e115f251"

  669. price: 468

  670. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/2F/6C/CgvUA1eiylCAfjIDAAGBiNPRRUM031_n_w_l.jpg"

  671. }

  672. ]

  673. follow: false

  674. topictype: 106

  675. }

  676. {

  677. id: 1000302

  678. theme: "Tod's:无法抗拒的经典舒适"

  679. products: 179

  680. users: 30

  681. href: ""

  682. list: [

  683. {

  684. id: "f6c50028-9211-4080-ae58-3beed3728e50"

  685. price: 1850

  686. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/94/32/CgvUBVeygneAchtNAAEXO9Cv9Ro827_n_w_l.jpg"

  687. }

  688. {

  689. id: "49c37f83-2bdd-473c-b712-610fa642f849"

  690. price: 1800

  691. pic: "http://pc1.img.ymatou.com/G02/shangou/M01/B8/15/CgvUBVe3FXeAd5MoAAGsnxuqdHA352_n_w_l.jpg"

  692. }

  693. {

  694. id: "a92f93d6-2ce6-40b2-87cf-19d34cbb03d0"

  695. price: 1250

  696. pic: "http://pc1.img.ymatou.com/G02/shangou/M04/09/68/CgvUBVfEHHOAB1h_AAIwSBEZVVg530_n_w_l.jpg"

  697. }

  698. {

  699. id: "908cc4d0-1e9a-475b-92a5-2da58a184a52"

  700. price: 1980

  701. pic: "http://pc1.img.ymatou.com/G02/shangou/M09/D4/EC/CgvUA1e75-GAVy0TAAa5CXGm6mo536_n_w_l.JPG"

  702. }

  703. {

  704. id: "cd3accbc-9c8e-44e8-bee2-0fd2062e54a2"

  705. price: 2580

  706. pic: "http://pc1.img.ymatou.com/G02/shangou/M04/4B/61/CgvUBVem80yAFLBhAAEUV4Hs7vs476_n_w_l.jpg"

  707. }

  708. {

  709. id: "7ace0a0f-2725-4a46-af60-036cb5ccbe83"

  710. price: 1640

  711. pic: "http://pc1.img.ymatou.com/G02/shangou/M09/0E/3C/CgvUBFfFK_aALbCvAAD4yZZoPCM584_n_w_l.jpg"

  712. }

  713. {

  714. id: "d8c8fae1-a169-4530-864c-6ba28222d3e7"

  715. price: 1880

  716. pic: "http://pc1.img.ymatou.com/G02/shangou/M05/93/F0/CgvUBVeye--AdCSgAAIxaPtS2GM400_n_w_l.jpg"

  717. }

  718. {

  719. id: "c475412f-ae29-4690-b46b-c4407db8916b"

  720. price: 1700

  721. pic: "http://pc1.img.ymatou.com/G02/shangou/M0A/F4/E4/CgvUBFfAWu-AZgWZAAHlwvXa_Y0542_n_w_l.jpg"

  722. }

  723. {

  724. id: "f5d34f68-d566-4cf2-aa8e-142ef058fd71"

  725. price: 1499

  726. pic: "http://pc1.img.ymatou.com/G02/shangou/M06/BB/29/CgvUBFe3zPqAANCxAAHr5HcZC4E398_n_w_l.jpg"

  727. }

  728. {

  729. id: "cf1a8142-91f2-4b2c-bb86-61ae0ede2b73"

  730. price: 3200

  731. pic: "http://pc1.img.ymatou.com/G02/shangou/M02/85/8B/CgvUBVev8Y6ACkDoAAKBE5K1Wjg827_n_w_l.jpg"

  732. }

  733. ]

  734. follow: false

  735. topictype: 106

  736. }

  737. ]

  738. }

  739. }

猜您喜欢: