zhaogongxue 9 ماه پیش
والد
کامیت
41b1fe0400
7فایلهای تغییر یافته به همراه698 افزوده شده و 285 حذف شده
  1. 21 6
      pageA/counter.vue
  2. 155 56
      pageA/productdetails.vue
  3. 84 104
      pageA/shoplist.vue
  4. 76 4
      pageA/shoptype.vue
  5. 159 39
      pageA/subsidy.vue
  6. 144 40
      pages/index/index.vue
  7. 59 36
      uni_modules/liu-waterfall/components/liu-waterfall/liu-waterfall.vue

+ 21 - 6
pageA/counter.vue

@@ -34,9 +34,11 @@
 				<view slot="minus" class="minus">
 					<u-icon name="minus" size="12"></u-icon>
 				</view>
-				<text slot="input" style="width: 50px;text-align: center;display: block;height: 30px;line-height: 30px;background: #f5f5f5;" class="input">{{value}}kg</text>
+				<text slot="input"
+					style="width: 50px;text-align: center;display: block;height: 30px;line-height: 30px;background: #f5f5f5;"
+					class="input">{{value}}kg</text>
 				<view slot="plus" class="plus">
-					<u-icon name="plus"  size="12"></u-icon>
+					<u-icon name="plus" size="12"></u-icon>
 				</view>
 			</u-number-box>
 		</view>
@@ -84,11 +86,11 @@
 				gat: 0,
 				gatShow: false,
 				columns: [
-					['中国', '美国'],
-					['深圳', '厦门', '上海', '拉萨']
+					['中国', '美国','日本'],
 				],
 				columnData: [
 					['深圳', '厦门', '上海', '拉萨'],
+					['得州', '华盛顿', '纽约', '阿拉斯加'],
 					['得州', '华盛顿', '纽约', '阿拉斯加']
 				],
 				goods: [],
@@ -106,8 +108,9 @@
 		},
 		onShow() {
 			uni.setNavigationBarTitle({
-				title:this.i18n.compute
+				title: this.i18n.compute
 			})
+			this.getarea()
 		},
 		computed: {
 			i18n() {
@@ -115,6 +118,19 @@
 			}
 		},
 		methods: {
+			getarea() {
+				console.log(22222222);
+				uni.$u.http.get('/api/area', {
+					params: {
+						is_domestic:0,
+						pid:100000
+					}
+				}).then((res) => {
+					console.log(res);
+				}).catch(() => {
+
+				})
+			},
 			success() {
 				this.logshow = false
 			},
@@ -162,7 +178,6 @@
 				this.show = false
 				if (this.type == 0) {
 					this.original = e.value[0] + '-' + e.value[1]
-					// console.log(e.value[0]);
 				} else {
 					this.bourn = e.value[0] + '-' + e.value[1]
 				}

+ 155 - 56
pageA/productdetails.vue

@@ -8,7 +8,7 @@
 				<view class="u-nav-slot u-flex" slot="left" style="display: flex;">
 					<view class="u-flex">
 						<u-icon name="arrow-left" size="19" @click="navigateBack()"></u-icon>
-						<u-tabs duration='0' @click="click" :list="list1" lineColor='#fff'
+						<u-tabs :duration='duration' @click="click" :list="list1" lineColor='#fff'
 							:activeStyle=" {color:'#FF1515'}" :inactiveStyle="{
 						color:' #666666' }"></u-tabs>
 					</view>
@@ -24,23 +24,44 @@
 				</view>
 			</u-navbar>
 			<!-- 商品图片 -->
-			<image src="https://cdn.uviewui.com/uview/swiper/swiper1.png" style="width: 750rpx;height: 750rpx;" mode="">
+			<view class="uni-margin-wrap">
+				<swiper class="swiper" circular :indicator-dots="false" :autoplay="true">
+					<swiper-item v-if="goodinfo.video">
+						<video style="width: 750rpx;height: 750rpx;" :src='goodinfo.video'></video>
+					</swiper-item>
+					<swiper-item v-for="(item,idx) in goodinfo.images.split(',')" :key="idx">
+						<image src="https://cdn.uviewui.com/uview/swiper/swiper1.png"
+							style="width: 750rpx;height: 750rpx;" mode=""></image>
+					</swiper-item>
+				</swiper>
+			</view>
 			</image>
 			<view class="back">
 				<!-- 折扣 -->
 				<view class="discount">
 					<view class="top">
-						<text class='count'>{{i18n.Discounted}}</text>
+						<text class='count' v-if="goodinfo.is_discount==0">{{i18n.Discounted}}</text>
 						<text class='money'>¥</text>
-						<text class='money' style="font-size: 48rpx;">258</text>
-						<text class='money'>.00</text>
-						<text class='right'>¥328.5</text>
+						<text class='money'
+							style="font-size: 48rpx;">{{goodinfo.is_discount==0?goodinfo.discount_price.slice(0,-3):goodinfo.price.slice(0,-3)}}</text>
+						<text
+							class='money'>{{goodinfo.is_discount==0?goodinfo.discount_price.slice(-3):goodinfo.price.slice(-3)}}</text>
+						<text class='right' v-if="goodinfo.is_discount==0">¥{{goodinfo.price}}</text>
 					</view>
 					<view class="bottom">
 						<text class="tabs">{{i18n.sametype}}</text>
 						<view class="title">
-							<text class="title" selectable @longpress="onLongPress">
-								布兰德低温烘焙猫粮全价通用高端鲜肉成猫幼
+							<text class="title" selectable @longpress="onLongPress" v-if="language =='zh-CN'">
+								{{goodinfo.name_cn}}
+							</text>
+							<text class="title" selectable @longpress="onLongPress" v-if="language =='en-US'">
+								{{goodinfo.name_en}}
+							</text>
+							<text class="title" selectable @longpress="onLongPress" v-if="language =='es-ES'">
+								{{goodinfo.name_es}}
+							</text>
+							<text class="title" selectable @longpress="onLongPress" v-if="language =='it-IT'">
+								{{goodinfo.name_ita}}
 							</text>
 						</view>
 					</view>
@@ -89,9 +110,9 @@
 				<!-- 店铺 -->
 				<view class="store u-flex u-row-between">
 					<view class="u-flex">
-						<image src='../static/images/logo.png' style="width: 112rpx;height: 112rpx;" mode=""></image>
+						<image :src='goodinfo.merchant.image' style="width: 112rpx;height: 112rpx;" mode=""></image>
 						<view class="" style="margin-left: 20rpx;">
-							<view class="title">小萌优选🔥(每天0元秒杀)</view>
+							<view class="title">{{goodinfo.merchant.merchant_name}}</view>
 							<view class="" style='margin-top:20rpx'></view>
 							<view class="u-flex" style='margin-top:20rpx'>
 								<text class='num'>{{i18n.Salesvolume}} 2384w+</text>
@@ -100,7 +121,7 @@
 							</view>
 						</view>
 					</view>
-					<view class="goshop">{{i18n.stroll}}</view>
+					<view class="goshop" @click="goshop">{{i18n.stroll}}</view>
 				</view>
 				<!-- 推荐 -->
 				<view class="recommend">
@@ -109,19 +130,36 @@
 					</view>
 					<view class="">
 						<swiper style="height: 400rpx;" class="swiper" circular :indicator-dots="true" :autoplay="true">
-							<swiper-item v-for="(parent,index) in 4" :key="index">
+							<swiper-item v-for="(parent,index) in swiptlist" :key="index">
 								<view class="u-flex  swiper-item u-row-between">
-									<view class="" v-for="child in 3" @click="toinfo(child.id)">
-										<image src="/static/images/logo.png" style="width: 214rpx;height: 214rpx;"
+									<view class="" v-for="(child,idx) in parent" @click="toinfo(child.id)" :key="idx">
+										<image :src="child.image" style="width: 214rpx;height: 214rpx;"
 											mode="">
 										</image>
 										<view class="u-line-1"
-											style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;">
-											布兰德烘焙猫粮预售鲜肉乌骨鸡囤货</view>
-										<view class="">
-											<span
-												style="color:rgba(204, 51, 0, 1) ;margin-top: 12rpx;font-size: 26rpx;">¥{{child.price||235.55}}</span>
+											style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;"
+											v-if="language =='zh-CN'">
+											{{child.name_cn}}
+										</view>
+										<view class="u-line-1"
+											style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;"
+											v-if="language =='en-US'">
+											{{child.name_en}}
 										</view>
+										<view class="u-line-1"
+											style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;"
+											v-if="language =='es-ES'">
+											{{child.name_es}}
+										</view>
+										<view class="u-line-1"
+											style="width: 214rpx;margin-top: 14rpx;font-style: normal;font-size: 26rpx;"
+											v-if="language =='it-IT'">
+											{{child.name_ita}}
+										</view>
+										<view class="" style="margin-top: 12rpx;">
+											<span
+												style="color:rgba(204, 51, 0, 1) ;font-size: 26rpx;">¥{{child.price}}</span>
+										</view>   
 									</view>
 								</view>
 							</swiper-item>
@@ -131,28 +169,17 @@
 				<view class="recommend">
 					<view class="title">{{i18n.Productdetails}}</view>
 					<view class="" style="margin-top: 32rpx;margin-bottom:28rpx">{{i18n.Specification}}</view>
-					<view class="specification">
-						<view class="item u-flex" style='margin-bottom:28rpx'>
-							<view style='width:150rpx;'>{{i18n.material}}</view>
-							<text style='margin-left:58rpx'>保鲜鸡肉,鸡心,鸡肝</text>
-						</view>
-						<view class="item u-flex" style='margin-bottom:28rpx'>
-							<view style='width:150rpx;'>{{i18n.specification}}</view>
-							<text style='margin-left:58rpx'>300g</text>
-						</view>
-						<view class="item u-flex" style='margin-bottom:28rpx'>
-							<view style='width:150rpx;'>{{i18n.Shelflife}}</view>
-							<text style='margin-left:58rpx'>12个月</text>
-						</view>
-						<view class="item u-flex">
-							<view style='width:150rpx;'>{{i18n.Suitableobject}}</view>
-							<text style='margin-left:58rpx'>3个月以上的全猫种</text>
+					<view class="specification" >
+						<view class="item u-flex" style='margin-bottom:28rpx' v-for="(item,idx) in goodinfo.parameter" :key="idx">
+							<view style='width:150rpx;'>{{item.name}}</view>
+							<text style='margin-left:58rpx'>{{item.value}}</text>
 						</view>
 					</view>
+					<view class="">
+						<image :src="goodinfo.image" style="width: 710rpx;height: 580rpx;" mode=""></image>
+					</view>
 				</view>
-				<view class="">
-					<image src="../static/images/logo.png" style="width: 710rpx;height: 580rpx;" mode=""></image>
-				</view>
+
 				<view class="" style="height: 158rpx;"></view>
 				<view class="fix u-flex u-row-between">
 					<view class="u-flex" style="column-gap: 35rpx;">
@@ -334,9 +361,12 @@
 				//分享
 				share: false,
 				value: 0, //步进器的值
-				swiptlist: [],
+				swiptlist: [], //推荐列表
 				actab: 0,
-				id:'',//商品id
+				id: '', //商品id
+				language: '',
+				goodinfo: {}, //商品详情
+				duration: 0, //tabs选项
 			};
 		},
 		computed: {
@@ -348,12 +378,56 @@
 			this.id = options.id
 		},
 		onShow() {
+			if (uni.getStorageSync('language') != '') {
+				this.language = uni.getStorageSync('language')
+			}
 			this.detail(this.id)
+			this.recommend()
 		},
 		methods: {
-			detail(id){
-				detail(id).then((res)=>{
+			//评论接口
+			comment(){
+				uni.$u.http.post('/api/goods/goods_comment',{
+					merchant_goods_id:this.goodinfo.merchant_goods_id,
+					page:1,
+					limit:2
+				} ).then((res) => {
+					console.log('comment',res);
+				}).catch(() => {
+				
+				})
+			},
+			//商品推荐
+			recommend() {
+				uni.$u.http.post('/api/goods/recommend').then((res) => {
+					this.swiptlist = res.reduce((a, b) => {
+						let lastIndex = a.length - 1
+						if (a[lastIndex].length < 3) {
+							a[lastIndex].push(b)
+						} else {
+							a.push([b])
+						}
+						return a
+					}, [
+						[]
+					])
+				}).catch(() => {
+
+				})
+			},
+			//逛逛
+			goshop() {
+				uni.navigateTo({
+					url: '/pageD/homepage/homepage'
+				})
+			},
+			detail(id) {
+				uni.$u.http.get('/api/goods/detail/' + id, ).then((res) => {
 					console.log(res);
+					this.goodinfo = res
+					this.comment()
+				}).catch(() => {
+
 				})
 			},
 			scrollToPosition() {
@@ -376,20 +450,6 @@
 				this.imagea = true
 				this.share = false
 			},
-			//获取推荐
-			getSeriesBooks() {
-				this.swiptlist = res.data.reduce((a, b) => {
-					let lastIndex = a.length - 1
-					if (a[lastIndex].length < 3) {
-						a[lastIndex].push(b)
-					} else {
-						a.push([b])
-					}
-					return a
-				}, [
-					[]
-				])
-			},
 			//加入购物车
 			joincart() {
 				this.show = false
@@ -946,6 +1006,45 @@
 		}
 	}
 
+	// 轮播图
+	.uni-margin-wrap {
+		width: 750rpx;
+		width: 100%;
+
+		.swiper {
+			height: 750rpx;
+		}
+
+		.swiper-item {
+			display: block;
+			height: 300rpx;
+			line-height: 300rpx;
+			text-align: center;
+		}
+
+		.swiper-list {
+			margin-top: 40rpx;
+			margin-bottom: 0;
+		}
+
+		.uni-common-mt {
+			margin-top: 60rpx;
+			position: relative;
+		}
+
+		.info {
+			position: absolute;
+			right: 20rpx;
+		}
+
+		.uni-padding-wrap {
+			width: 550rpx;
+			padding: 0 100rpx;
+		}
+	}
+
+
+
 	::v-deep .u-popup__content data-v-17becaea {
 		align-items: center !important;
 	}

+ 84 - 104
pageA/shoplist.vue

@@ -27,7 +27,7 @@
 					<image v-else src="static/images/shaixuan.png" style="width: 24rpx;height: 24rpx;" mode=""></image>
 				</view>
 			</view>
-			<liu-waterfall :dataList="data" :column="columns" @click="click"></liu-waterfall>
+			<liu-waterfall :dataList="data" :column="columns" @click="detail"></liu-waterfall>
 			<view class="pop" style="position: absolute;top:80rpx" v-if="shai&&current==4">
 				<view class=" title">{{i18n.Pricerange}}</view>
 				<view class="u-flex u-row-between">
@@ -81,115 +81,94 @@
 				current: 0,
 				curess: 0,
 				index: '',
-				list1: [{
-					name: '关注',
-				}, {
-					name: '推荐',
-				}, {
-					name: '电影'
-				}, {
-					name: '科技'
-				}, {
-					name: '音乐'
-				}, {
-					name: '美食'
-				}, {
-					name: '文化'
-				}, {
-					name: '财经'
-				}, {
-					name: '手工'
-				}],
-				data: [{
-					picUrl: 'https://cdn.pixabay.com/photo/2020/05/19/13/32/cartoon-5190837_1280.jpg',
-					title: '思考',
-					desc: '我是第1个图片',
-					id: 1,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2021/07/22/11/25/rabbit-6485072_1280.jpg',
-					title: '兔子',
-					desc: '我是第2个图片',
-					id: 2,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2020/05/19/13/35/cartoon-5190860_1280.jpg',
-					title: '雨天',
-					desc: '我是第3个图片',
-					id: 3,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2022/03/31/14/53/camp-7103189_1280.png',
-					title: '日落',
-					desc: '我是第4个图片',
-					id: 4,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2022/11/29/19/05/boho-7625140_1280.jpg',
-					title: '植物',
-					desc: '我是第5个图片',
-					id: 5,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2022/08/25/23/06/woman-7411414_1280.png',
-					title: '时尚',
-					desc: '我是第6个图片',
-					id: 6,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2023/03/07/12/45/child-7835677_1280.jpg',
-					title: '生活',
-					desc: '我是第7个图片',
-					id: 7,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2020/05/19/13/32/cartoon-5190837_1280.jpg',
-					title: '思考',
-					desc: '我是第8个图片',
-					id: 8,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2021/07/22/11/25/rabbit-6485072_1280.jpg',
-					title: '兔子',
-					desc: '我是第9个图片',
-					id: 9,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2020/05/19/13/35/cartoon-5190860_1280.jpg',
-					title: '雨天',
-					desc: '我是第10个图片',
-					id: 10,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2022/11/29/19/05/boho-7625140_1280.jpg',
-					title: '植物',
-					desc: '我是第11个图片',
-					id: 11,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2022/08/25/23/06/woman-7411414_1280.png',
-					title: '时尚',
-					desc: '我是第12个图片',
-					id: 12,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2023/03/07/12/45/child-7835677_1280.jpg',
-					title: '生活',
-					desc: '我是第13个图片',
-					id: 13,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2020/05/19/13/35/cartoon-5190860_1280.jpg',
-					title: '雨天',
-					desc: '我是第14个图片',
-					id: 14,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2023/03/07/12/45/child-7835677_1280.jpg',
-					title: '生活',
-					desc: '我是第15个图片',
-					id: 15,
-				}, {
-					picUrl: 'https://cdn.pixabay.com/photo/2020/05/19/13/32/cartoon-5190837_1280.jpg',
-					title: '思考',
-					desc: '我是第16个图片',
-					id: 16,
-				}],
+				list1: [],
+				data: [],
 				columns: 2,
+				goodsid: '',
+				title: '',
+				parent_id: '',
+				language:'',
+				page:1,
+				
 			};
 		},
+		onLoad(options) {
+			console.log(options);
+			this.goodsid = options.id
+			this.title = options.title
+			this.parent_id = options.parent_id
+		},
+		onShow() {
+			uni.setNavigationBarTitle({
+				title: this.title
+			})
+			this.goods(this.goodsid)
+			this.category(this.parent_id)
+			if (uni.getStorageSync('language') != '') {
+				this.language = uni.getStorageSync('language')
+			}
+		},
 		computed: {
 			i18n() {
 				return this.$t('index')
 			}
 		},
 		methods: {
+			//商品详情
+			detail(item){
+				console.log(item);
+				uni.navigateTo({
+					url:'/pageA/productdetails?id='+item.id
+				})
+			},
+			//商品分类
+			category(id) {
+				uni.$u.http.get('/api/goods/category', {
+					params: {
+						parent_id: id,
+						limit:10,
+						page:this.page
+					}
+				}).then((res) => {
+					const categoryArr = res
+					if (this.language == 'en-US') {
+						categoryArr.forEach(item => {
+							item.name = item.name_en
+						})
+					}
+					if (this.language == 'es-ES') {
+						categoryArr.forEach(item => {
+							item.name = item.name_es
+						})
+					}
+					if (this.language == 'it-IT') {
+						categoryArr.forEach(item => {
+							item.name = item.name_ita
+						})
+					}
+
+					if (this.language == 'zh-CN') {
+						categoryArr.forEach(item => {
+							item.name = item.name_cn
+						})
+					}
+					this.list1 = categoryArr
+				}).catch(() => {
+
+				})
+			},
+			//商品列表
+			goods(id) {
+				uni.$u.http.get('/api/goods', {
+					params: {
+						category_id: id
+					}
+				}).then((res) => {
+					this.data = res.data
+				}).catch(() => {
+
+				})
+			},
 			shaixuan() {
 				this.shai = true,
 					this.current = 4
@@ -197,9 +176,10 @@
 			click(item) {
 				console.log('item', item);
 				this.curess = item.index
-				uni.navigateTo({
-					url:'/pageB/delivery'
-				})
+				this.goods(item.id)
+				// uni.navigateTo({
+				// 	url: '/pageB/delivery'
+				// })
 			},
 			changei(idx) {
 				this.index = idx

+ 76 - 4
pageA/shoptype.vue

@@ -5,8 +5,19 @@
 				<view class="goods">
 					<view class="goods_item" v-for="(item, index) in scroll_list" :key="index"
 						@click="clickGoods(item)">
-						<image class="goods_item_img" :src="item.icon" mode=""></image>
-						<view class="goods_item_name">{{item.name}}</view>
+						<image class="goods_item_img" :src="item.image" mode=""></image>
+						<view class="goods_item_name" v-if="language =='zh-CN'">
+							{{item.name_cn}}
+						</view>
+						<view class="goods_item_name" v-if="language =='en-US'">
+							{{item.name_en}}
+						</view>
+						<view class="goods_item_name" v-if="language =='es-ES'">
+							{{item.name_es}}
+						</view>
+						<view class="goods_item_name" v-if="language =='it-IT'">
+							{{item.name_ita}}
+						</view>
 					</view>
 				</view>
 			</template>
@@ -69,6 +80,7 @@
 						]
 					}
 				],
+				language: ''
 			}
 		},
 		onLoad() {
@@ -87,12 +99,72 @@
 			uni.setNavigationBarTitle({
 				title: this.i18n.classification
 			})
+			this.category() //商品分类
+			if (uni.getStorageSync('language') != '') {
+				this.language = uni.getStorageSync('language')
+			}
 		},
 		methods: {
 			clickGoods(item) { //点击商品
 				console.log(item);
-				uni.navigateTo({
-					url: '/pageA/shoplist'
+				if (this.language == 'en-US') {
+					uni.navigateTo({
+						url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_en + '&parent_id=' + item
+							.parent_id
+					})
+				}
+				if (this.language == 'es-ES') {
+					uni.navigateTo({
+						url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_es + '&parent_id=' + item
+							.parent_id
+					})
+				}
+				if (this.language == 'it-IT') {
+					uni.navigateTo({
+						url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_ita + '&parent_id=' + item
+							.parent_id
+					})
+				}
+				if (this.language == 'zh-CN') {
+					uni.navigateTo({
+						url: '/pageA/shoplist?id=' + item.id + '&title=' + item.name_cn + '&parent_id=' + item
+							.parent_id
+					})
+				}
+			},
+			//商品分类列表
+			category() {
+				uni.$u.http.get('/api/goods/category', {
+					params: {
+						parent_id: 0
+					}
+				}).then((res) => {
+					const categoryArr = res
+					if (this.language == 'en-US') {
+						categoryArr.forEach(item => {
+							item.name = item.name_en
+						})
+					}
+					if (this.language == 'es-ES') {
+						categoryArr.forEach(item => {
+							item.name = item.name_es
+						})
+					}
+					if (this.language == 'it-IT') {
+						categoryArr.forEach(item => {
+							item.name = item.name_ita
+						})
+					}
+
+					if (this.language == 'zh-CN') {
+						categoryArr.forEach(item => {
+							item.name = item.name_cn
+						})
+					}
+					this.list = categoryArr
+					console.log(categoryArr);
+				}).catch(() => {
+
 				})
 			},
 		},

+ 159 - 39
pageA/subsidy.vue

@@ -33,52 +33,64 @@
             color: 'rgba(248, 53, 39, 1)',
             fontWeight: 'bold',
             transform: 'scale(1.05)'
-        }" :list="list1" lineColor='rgba(248, 53, 39, 1)' @click="click"></u-tabs>
+        }" :list="list1" lineColor='rgba(248, 53, 39, 1)' @change='changetab'></u-tabs>
 			</view>
-			<view class="item u-flex" v-for="(child,index) in 6">
-				<image src="../static/images/logo.png" style="width: 232rpx;height: 232rpx;" mode=""></image>
+			<view class="item u-flex" v-for="(child,index) in list" @click="todetail(child.id)">
+				<image :src="child.image" style="width: 232rpx;height: 232rpx;" mode=""></image>
 				<view class="u-row-between"
 					style="height: 232rpx;display: flex;flex-direction: column;margin-left: 20rpx;">
 					<view class="">
-						<text>得宝天然无香抽取式面巾纸9…</text>
+						<view class="titl" v-if="language =='zh-CN'">
+							{{child.name_cn}}
+						</view>
+						<view class="titl" v-if="language =='en-US'">
+							{{child.name_en}}
+						</view>
+						<view class="titl" v-if="language =='es-ES'">
+							{{child.name_es}}
+						</view>
+						<view class="titl" v-if="language =='it-IT'">
+							{{child.name_ita}}
+						</view>
 						<view class="u-flex" style="margin-top: 18rpx;column-gap: 18rpx;">
 							<text class="tabs baoyou"
-								style="background:rgba(248, 50, 36, 1) ;border: 2rpx solid rgba(248, 50, 36, 0);color:#FFFFFF ;">包邮</text>
+								style="background:rgba(248, 50, 36, 1) ;border: 2rpx solid rgba(248, 50, 36, 0);color:#FFFFFF ;">{{i18n.postage}}</text>
 							<text class="tabs" v-for="(item,idx) in 2" :key="idx">
 								{{i18n.willpay}}
 							</text>
 						</view>
 					</view>
-					<view class="backimg" style="position: relative;" >  
-						<image src="./static/images/tab.png"  
+					<view class="backimg" style="position: relative;">
+						<image src="./static/images/tab.png"
 							style="width: 100%;height: 100%;position: absolute;left: 0;top: 0;z-index: 0;" mode="">
 						</image>
 						<view v-if="show==1" class="u-flex u-row-between"
 							style="position: relative;z-index: 1;padding:0 24rpx ;text-align: center;line-height: 68rpx;">
 							<view class="">
-								<text class="textone">补贴价</text>
+								<text class="textone">{{i18n.Subsidized}}</text>
 								<text class='texttwo' style="margin-left: 12rpx;">¥</text>
-								<text class='texttwo' style="font-size: 40rpx;">16</text>
-								<text class='texttwo'>.13</text>
+								<text class='texttwo' style="font-size: 40rpx;">{{child.price.slice(0,-3)}}</text>
+								<text class='texttwo'>{{child.price.slice(-3)}}</text>
 							</view>
 							<view class="">
-								<text class="textthree">已补</text>
+								<text class="textthree">{{i18n.fill}}</text>
 								<text class='textfour' style="margin-left: 8rpx;">¥</text>
-								<text class='textfour' style="font-size:  28rpx;">25.8</text>
+								<text class='textfour'
+									style="font-size:  28rpx;">{{(child.price*1000 - child.discount_price*1000)/1000}}</text>
 							</view>
 						</view>
 						<view v-if="show==2 || show==3" class="u-flex u-row-between"
-							style="position: relative;z-index: 1;padding:0 24rpx ;text-align: center;line-height: 68rpx;">
+							style="position: relative;z-index: 1;padding:0 60rpx 0 24rpx ;text-align: center;line-height: 68rpx;">
 							<view class="">
 								<text v-if="show==2" class="textone">{{i18n.Subsidized}}</text>
-								<text v-if="show==3" class="textone">包邮价</text>
+								<text v-if="show==3" class="textone">{{i18n.postage}}</text>
 								<text class='texttwo' style="margin-left: 12rpx;">¥</text>
-								<text class='texttwo' style="font-size: 40rpx;">16</text>
-								<text class='texttwo'>.13</text>
+								<text class='texttwo' style="font-size: 40rpx;">{{child.price.slice(0,-3)}}</text>
+								<text class='texttwo'>{{child.price.slice(-3)}}</text>
 							</view>
-							<view class="">
+							<view class="u-flex">
 								<image src="static/images/qiang.png" style="width: 48rpx;height: 38rpx;" mode="">
-								</image> 
+								</image>
 							</view>
 						</view>
 					</view>
@@ -92,26 +104,11 @@
 	export default {
 		data() {
 			return {
-				list1: [{
-					name: '关注',
-				}, {
-					name: '推荐',
-				}, {
-					name: '电影'
-				}, {
-					name: '科技'
-				}, {
-					name: '音乐'
-				}, {
-					name: '美食'
-				}, {
-					name: '文化'
-				}, {
-					name: '财经'
-				}, {
-					name: '手工'
-				}],
-				show:1
+				list1: [],
+				show: 1,
+				list: [], //数据
+				Pleaseproductname: '', //搜索内容
+				language: '', //语言
 			};
 		},
 		computed: {
@@ -121,11 +118,134 @@
 		},
 		onLoad(options) {
 			this.show = options.show
+		},
+		onShow() {
+			if (uni.getStorageSync('language') != '') {
+				this.language = uni.getStorageSync('language')
+			}
+			if (this.show == 1) {
+				this.subsid() //百万补贴
+			}
+			if (this.show == 2) {
+				this.pack() //拼包好物
+			}
+			if (this.show == 3) {
+				this.shipp() //海外包邮
+			}
+			this.category()
+		},
+		methods: {
+			//跳转详情
+			todetail(id) {
+				console.log(id);
+				uni.navigateTo({
+					url: '/pageA/productdetails?id=' + id
+				})
+			},
+			//标签切换
+			changetab(e) {
+				console.log(e);
+				if (this.show == 1) {
+					this.subsid(e.id) //百万补贴
+				}
+				if (this.show == 2) {
+					this.pack(e.id) //拼包好物
+				}
+				if (this.show == 3) {
+					this.shipp(e.id) //海外包邮
+				}
+			},
+			//商品分类列表
+			category() {
+				uni.$u.http.get('/api/goods/category', {
+					params: {
+						parent_id: 0
+					}
+				}).then((res) => {
+					const categoryArr = res
+					this.list1 = [{
+						name: '',
+						category_id: ''
+					}]
+					if (this.language == 'en-US') {
+						categoryArr.forEach(item => {
+							item.name = item.name_en
+						})
+						this.list1[0].name = 'selection'
+					}
+					if (this.language == 'es-ES') {
+						categoryArr.forEach(item => {
+							item.name = item.name_es
+						})
+						this.list1[0].name = 'Una selección de'
+					}
+					if (this.language == 'it-IT') {
+						categoryArr.forEach(item => {
+							item.name = item.name_ita
+						})
+						this.list1[0].name = 'selezionate'
+					}
+
+					if (this.language == 'zh-CN') {
+						categoryArr.forEach(item => {
+							item.name = item.name_cn
+						})
+						this.list1[0].name = '精选'
+					}
+					this.list1 = this.list1.concat(categoryArr)
+				}).catch(() => {
+
+				})
+			},
+			//海外包邮接口
+			shipp(id) {
+				uni.$u.http.post('api/goods/shipping', {
+					category_id: id
+				}).then((res) => {
+					this.list = res
+				}).catch(() => {
+
+				})
+			},
+			//拼包好物接口
+			pack(id) {
+				uni.$u.http.post('/api/goods/pack', {
+					category_id: id
+				}).then((res) => {
+					this.list = res
+				}).catch(() => {
+
+				})
+			},
+			//百万补贴接口
+			subsid(id) {
+				uni.$u.http.post('/api/goods/subsidy', {
+					category_id: id
+				}).then((res) => {
+					this.list = res
+				}).catch(() => {
+
+				})
+			},
 		}
 	}
 </script>
 
-<style lang="scss">
+<style lang="scss" scoped>
+	.titl {
+		font-family: PingFangSC, PingFang SC;
+		font-weight: 500;
+		font-size: 30rpx;
+		color: #444444;
+		line-height: 42rpx;
+		text-align: left;
+		font-style: normal;
+		width: 400rpx;
+		overflow: hidden;
+		text-overflow: ellipsis;
+		white-space: nowrap;
+	}
+
 	.box {
 		width: 750rpx;
 		height: 1266rpx;

+ 144 - 40
pages/index/index.vue

@@ -35,7 +35,7 @@
 				<!-- tabs -->
 				<view class=""
 					style="display: flex;margin-top: 20rpx;align-items: center;justify-content: space-between;">
-					<u-tabs :list="list1"></u-tabs>
+					<u-tabs :list="list1" @change='changetab'></u-tabs>
 					<view class="border">
 					</view>
 					<view class="u-flex" style="margin-left: 24rpx;width: 100rpx;" @click="shoptype">
@@ -52,6 +52,7 @@
 		</view>
 		<view class="shopback">
 			<view class="u-flex u-row-between">
+				<!-- 百亿补贴 -->
 				<view class="bigbox" @click="subsidy(1)">
 					<view class="u-flex">
 						<image src="../../static/images/index/butie.png" style="width: 104rpx;height: 26rpx;" mode="">
@@ -59,11 +60,9 @@
 						<view class="biaoqian" style="background: #F35D22;">{{i18n.expensive}}</view>
 					</view>
 					<view class="u-flex" style="flex-wrap: wrap;justify-content: space-between;">
-						<view v-for="(item,idx) in 4" class="ssbox  " style="margin-top: 16rpx;">
+						<view v-for="(item,idx) in subsidylist" class="ssbox  " style="margin-top: 16rpx;">
 							<view class="" style="position: relative">
-								<image src=""
-									style="background-color: rgba(119, 119, 119, 1);width: 144rpx;height: 144rpx;"
-									mode=""></image>
+								<image :src="item.image" style="width: 144rpx;height: 144rpx;" mode=""></image>
 								<view class="u-flex u-row-center"
 									style="position: absolute;bottom: 10rpx;width: 144rpx;">
 									<view class="u-flex">
@@ -72,17 +71,18 @@
 												style="width: 28rpx;height: 28rpx;position: relative;z-index: 3;"
 												mode="">
 											</image>
-											<text>{{15 + i18n.RMB}}</text>
+											<text>{{(item.price*1000 - item.discount_price*1000)/1000 + i18n.RMB}}</text>
 										</view>
 									</view>
 								</view>
 							</view>
 							<view class="money" style="text-align: center;">
-								¥59
+								¥{{item.discount_price}}
 							</view>
 						</view>
 					</view>
 				</view>
+				<!-- 拼包好物 -->
 				<view class="">
 					<view class="smallbox" @click="subsidy(2)">
 						<view class="u-flex">
@@ -92,11 +92,9 @@
 							</view>
 						</view>
 						<view class="u-flex" style="flex-wrap: wrap;justify-content: space-between;">
-							<view v-for="(item,idx) in 2" class="ssbox  " style="margin-top: 16rpx;">
+							<view v-for="(item,idx) in packlist" class="ssbox  " style="margin-top: 16rpx;">
 								<view class="" style="position: relative">
-									<image src=""
-										style="background-color: rgba(119, 119, 119, 1);width: 144rpx;height: 144rpx;"
-										mode=""></image>
+									<image :src="item.image" style=";width: 144rpx;height: 144rpx;" mode=""></image>
 									<view class="u-flex u-row-center"
 										style="position: absolute;bottom: 10rpx;width: 144rpx;">
 										<view class="u-flex">
@@ -104,12 +102,13 @@
 													style="width: 28rpx;height: 28rpx;position: relative;z-index: 3;"
 													mode="">
 												</image> -->
-											<view class="tag u-flex" style="background-color: rgba(251, 73, 70, 1);">
+											<view v-if="item.is_discount==0" class="tag u-flex"
+												style="background-color: rgba(251, 73, 70, 1);">
 												<image src="../../static/images/index/down.png"
 													style="width: 28rpx;height: 28rpx;position: relative;z-index: 3;"
 													mode="">
 												</image>
-												<text>{{15 + i18n.RMB}}</text>
+												<text>{{(item.price*1000 - item.discount_price*1000)/1000 + i18n.RMB}}</text>
 											</view>
 										</view>
 									</view>
@@ -124,13 +123,20 @@
 							<view class="biaoqian" style="background:rgba(248, 50, 36, 1)">{{i18n.Something}}</view>
 						</view>
 						<view class="u-flex" style="flex-wrap: wrap;justify-content: space-between;">
-							<view v-for="(item,idx) in 2" class="ssbox  " style="margin-top: 8rpx;">
+							<view v-for="(item,idx) in shippList" class="ssbox  " style="margin-top: 8rpx;">
 								<view class="" style="position: relative">
-									<image src=""
-										style="background-color: rgba(119, 119, 119, 1);width: 124rpx;height: 124rpx;"
-										mode=""></image>
-									<view class="shopname">
-										纯牛奶
+									<image :src="item.image" style="width: 124rpx;height: 124rpx;" mode=""></image>
+									<view class="shopname" v-if="language =='zh-CN'">
+										{{item.name_cn}}
+									</view>
+									<view class="shopname" v-if="language =='en-US'">
+										{{item.name_en}}
+									</view>
+									<view class="shopname" v-if="language =='es-ES'">
+										{{item.name_es}}
+									</view>
+									<view class="shopname" v-if="language =='it-IT'">
+										{{item.name_ita}}
 									</view>
 								</view>
 							</view>
@@ -139,16 +145,26 @@
 				</view>
 			</view>
 			<view class="u-flex u-row-between" style="flex-wrap: wrap;">
-				<view class="bigbox" v-for="(item,index) in recomlist" style="position: relative;" @click="todetail(item.id)">
+				<view class="bigbox" v-for="(item,index) in recomlist" style="position: relative;"
+					@click="todetail(item.id)">
 					<image v-if="item.is_discount==0" src="../../static/images/index/discount.png"
 						style="width: 60rpx;height: 36rpx;position: absolute;left: 12rpx;top: 12rpx;z-index: 10;"
 						mode="">
 					</image>
 					<image :src="item.image"
 						style="width: 340rpx;height: 340rpx;;margin-left: -20rpx;margin-top: -18rpx;" mode=""></image>
-					<view class="title">
+					<view class="title" v-if="language =='zh-CN'">
 						{{item.name_cn}}
 					</view>
+					<view class="title" v-if="language =='en-US'">
+						{{item.name_en}}
+					</view>
+					<view class="title" v-if="language =='es-ES'">
+						{{item.name_es}}
+					</view>
+					<view class="title" v-if="language =='it-IT'">
+						{{item.name_ita}}
+					</view>
 					<view class="">
 						<text class="money">
 							¥{{item.price}}
@@ -199,16 +215,6 @@
 				//tabs
 				list1: [{
 					name: '推荐',
-				}, {
-					name: '数码'
-				}, {
-					name: '生鲜'
-				}, {
-					name: '美妆'
-				}, {
-					name: '生鲜'
-				}, {
-					name: '美妆'
 				}],
 				//轮播图
 				banner: [
@@ -217,7 +223,11 @@
 					'https://cdn.uviewui.com/uview/swiper/swiper3.png',
 				],
 				show: true,
-				timer: ''
+				timer: '',
+				language: 'zh-CN',
+				subsidylist: [], //百万补贴
+				packlist: [], //拼包好物
+				shippList: [], //海外包邮
 			}
 		},
 		computed: {
@@ -226,26 +236,120 @@
 			}
 		},
 		onLoad(options) {
-			this.recommend()
 			this.list = [this.i18n.border, this.i18n.shop]
 			// this.seater()
 			if (options.current) {
 				this.current = options.current
 			}
-		},
-		onShow() {
 			//商品推荐
 			this.recommend()
-			console.log(222222);
+		},
+		onShow() {
+
+			// tabs列表
+			this.category()
+			//百万补贴
+			this.subsid()
+			//拼包好物
+			this.pack()
+			//海外包邮
+			this.shipp()
+			if (uni.getStorageSync('language') != '') {
+				this.language = uni.getStorageSync('language')
+			}
 		},
 		methods: {
+			//海外包邮接口
+			shipp() {
+				uni.$u.http.post('api/goods/shipping').then((res) => {
+					this.shippList = res.splice(0, 2)
+				}).catch(() => {
+
+				})
+			},
+			//拼包好物接口
+			pack() {
+				uni.$u.http.post('/api/goods/pack').then((res) => {
+					this.packlist = res.splice(0, 2)
+				}).catch(() => {
+
+				})
+			},
+			//百万补贴接口
+			subsid() {
+				uni.$u.http.post('/api/goods/subsidy').then((res) => {
+					this.subsidylist = res.splice(0, 4)
+				}).catch(() => {
+
+				})
+			},
+			//标签切换
+			changetab(e) {
+				console.log(e);
+				if (e.index == 0) {
+					this.recommend()
+				} else {
+					this.goods(e.id)
+				}
+			},
 			//商品推荐
 			recommend() {
-				console.log(1111);
-				recom().then((res) => {
-					this.recomlist = res.data.data
+				uni.$u.http.post('/api/goods/recommend').then((res) => {
+					this.recomlist = res
+				}).catch(() => {
+
+				})
+			},
+			//商品分类列表
+			category() {
+				uni.$u.http.get('/api/goods/category', {
+					params:{parent_id: 0}
+				}).then((res) => {
+					const categoryArr = res
+					this.list1 = [{
+						name: ''
+					}]
+					if (this.language == 'en-US') {
+						categoryArr.forEach(item => {
+							item.name = item.name_en
+						})
+						this.list1[0].name = 'recommend'
+					}
+					if (this.language == 'es-ES') {
+						categoryArr.forEach(item => {
+							item.name = item.name_es
+						})
+						this.list1[0].name = 'recomendación'
+					}
+					if (this.language == 'it-IT') {
+						categoryArr.forEach(item => {
+							item.name = item.name_ita
+						})
+						this.list1[0].name = 'raccomandata'
+					}
+
+					if (this.language == 'zh-CN') {
+						categoryArr.forEach(item => {
+							item.name = item.name_cn
+						})
+						this.list1[0].name = '推荐'
+					}
+					this.list1 = this.list1.concat(categoryArr)
+				}).catch(() => {
+
+				})
+			},
+			//商品列表
+			goods(id) {
+				uni.$u.http.get('/api/goods', {
+					params:{parent_id: id}
+				}).then((res) => {
+					this.recomlist = res.data
+				}).catch(() => {
+
 				})
 			},
+			//百万补贴跳转
 			subsidy(item) {
 				uni.navigateTo({
 					url: '/pageA/subsidy?show=' + item
@@ -283,7 +387,7 @@
 			//详情
 			todetail(id) {
 				uni.navigateTo({
-					url: '/pageA/productdetails?id='+id
+					url: '/pageA/productdetails?id=' + id
 				})
 			}
 		}

+ 59 - 36
uni_modules/liu-waterfall/components/liu-waterfall/liu-waterfall.vue

@@ -5,24 +5,35 @@
 				:id="'item' + childItem.id" @click.stop="click(childItem)">
 				<view class="item"
 					:style="'background-color:'+cardBgColor+';margin:'+margin+'rpx;border-radius:'+radius+'rpx;'">
-					<image :src="childItem.picUrl" mode="widthFix" lazy-load
-						:style="{height:childItem.height,width: '100%'}">
+					<image :src="childItem.image" mode="widthFix" lazy-load :style="{width: '100%'}">
 					</image>
 					<view class="title-info">
-						<view class="item-title">{{ childItem.title }}</view>
+						<view class="item-title" v-if="language =='zh-CN'">
+							{{ childItem.name_cn }}
+						</view>
+						<view class="item-title" v-if="language =='en-US'">
+							{{childItem.name_en}}
+						</view>
+						<view class="item-title" v-if="language =='es-ES'">
+							{{childItem.name_es}}
+						</view>
+						<view class="item-title" v-if="language =='it-IT'">
+							{{childItem.name_ita}}
+						</view>
 						<!-- <view class="item-desc">{{ childItem.desc }}</view> -->
 						<view class="">
-							<text class="money">¥5999.00</text>
-							<text style="margin-left: 14rpx;" class="kg">¥500g</text>
+							<text class="money">¥{{childItem.price}}</text>
+							<text v-if="childItem.weight" style="margin-left: 14rpx;"
+								class="kg">¥{{childItem.weight}}kg</text>
 						</view>
 						<view class="tabs">
-							<view class="tab">自营</view>
+							<view class="tab">{{i18n.Proprietary}}</view>
 							<view class="tab">次日达</view>
-							<view class="tab">包邮</view>
+							<view class="tab">{{i18n.postage}}</view>
 						</view>
 						<view class="">
-							<text class="name">伯纳天纯 自营旗舰店</text>
-							<text class="shop">进店</text>
+							<text class="name">{{childItem.merchant_name}}</text>
+							<!-- <text class="shop">进店</text> -->
 						</view>
 					</view>
 				</view>
@@ -72,8 +83,20 @@
 				columnData: [],
 				columnWidth: 0,
 				loading: false,
+				language: ''
 			};
 		},
+		computed: {
+			i18n() {
+				return this.$t('index')
+			}
+		},
+		mounted() {
+			if (uni.getStorageSync('language') != '') {
+				this.language = uni.getStorageSync('language')
+			}
+			console.log(this.language);
+		},
 		watch: {
 			dataList: {
 				immediate: true,
@@ -98,32 +121,32 @@
 		},
 		methods: {
 			//计算每列的高度
-			getElemHeight(index) {
-				this.$nextTick(() => {
-					var arr = [];
-					this.dataList.map((item, index) => {
-						uni.getImageInfo({
-							src: item.picUrl,
-							success: (e) => {
-								item.height = (e.height * (this.columnWidth / e.width)) + 'px'
-								this.createSelectorQuery().select('#item' + item.id)
-									.boundingClientRect(res => {
-										arr.push({
-											...{
-												itemHeight: res.height
-											},
-											...item
-										});
-										if (arr.length == this.dataList.length) {
-											this.columnData = this.distributeToNArrays(arr,
-												this.column);
-										}
-									}).exec();
-							}
-						})
-					})
-				})
-			},
+			// getElemHeight(index) {
+			// 	this.$nextTick(() => {
+			// 		var arr = [];
+			// 		this.dataList.map((item, index) => {
+			// 			uni.getImageInfo({
+			// 				src: item.picUrl,
+			// 				success: (e) => {
+			// 					item.height = (e.height * (this.columnWidth / e.width)) + 'px'
+			// 					this.createSelectorQuery().select('#item' + item.id)
+			// 						.boundingClientRect(res => {
+			// 							arr.push({
+			// 								...{
+			// 									itemHeight: res.height
+			// 								},
+			// 								...item
+			// 							});
+			// 							if (arr.length == this.dataList.length) {
+			// 								this.columnData = this.distributeToNArrays(arr,
+			// 									this.column);
+			// 							}
+			// 						}).exec();
+			// 				}
+			// 			})
+			// 		})
+			// 	})
+			// },
 			distributeToNArrays(arr, n) {
 				let sums = new Array(n).fill(0);
 				return arr.reduce(
@@ -151,7 +174,7 @@
 					Array.from(Array(this.column), () => []),
 				);
 				this.columnData = resultArray
-				this.getElemHeight()
+				// this.getElemHeight()
 			},
 			click(item) {
 				this.$emit('click', item)