|
@@ -1,10 +1,10 @@
|
|
|
<template name="floors">
|
|
|
<view>
|
|
|
<view class="floors-content clearfix">
|
|
|
- <view class="tui-block__box tui-mtop__20" v-for="(floor,index) in floorList" :key="index">
|
|
|
+ <view class="tui-block__box tui-mtop__20" v-for="(floor,index) in list" :key="index">
|
|
|
<view class="tui-group-name" >
|
|
|
<view>
|
|
|
- <text class="tui-sub__desc tui-color__pink">{{ floor.title }}</text>
|
|
|
+ <text class="tui-sub__desc tui-color__pink">{{ floor.topic }}</text>
|
|
|
</view>
|
|
|
<view class="tui-more__box" @click="handleFloor">
|
|
|
<text>更多</text>
|
|
@@ -15,7 +15,7 @@
|
|
|
<view class="tui-goods__list">
|
|
|
<view class="tui-goods__item" @tap="group(2)" v-for="pros in floor.products">
|
|
|
<view class="tui-goods__imgbox">
|
|
|
- <image :src="pros.image" mode="widthFix" class="tui-goods__img"></image>
|
|
|
+ <image :src="pros.mainImage" mode="widthFix" class="tui-goods__img"></image>
|
|
|
</view>
|
|
|
<view class="tui-goods__namebox">
|
|
|
<text>{{ pros.name }}</text>
|
|
@@ -58,78 +58,6 @@
|
|
|
data() {
|
|
|
return{
|
|
|
current:100,
|
|
|
- floorList:[
|
|
|
- {
|
|
|
- title:'集采商品',
|
|
|
- products:[
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:1
|
|
|
- },
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:2
|
|
|
- },
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:3
|
|
|
- },
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:4
|
|
|
- },
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:5
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- title:'热门商品',
|
|
|
- products:[
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:1
|
|
|
- },
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:2
|
|
|
- },
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:3
|
|
|
- },
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:3
|
|
|
- },
|
|
|
- {
|
|
|
- image:'https://img0.baidu.com/it/u=2849507481,2245399031&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500',
|
|
|
- name:'法国曼丽菲戈动能素抗衰DER...',
|
|
|
- price:'5000.00',
|
|
|
- priceGrade:5
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
- ]
|
|
|
}
|
|
|
},
|
|
|
created(){
|