zhaogongxue преди 8 месеца
родител
ревизия
3fd4c9df5d
променени са 6 файла, в които са добавени 183 реда и са изтрити 85 реда
  1. 2 1
      pageA/order.vue
  2. 30 12
      pageA/productdetails.vue
  3. 47 46
      pageA/shoptype.vue
  4. 3 0
      pageB/myPackage.vue
  5. 56 11
      pages/express/express.vue
  6. 45 15
      pages/index/index.vue

+ 2 - 1
pageA/order.vue

@@ -4,6 +4,7 @@
 		<view class="address" @click="toadd">
 			<view class="u-flex u-row-between">
 				<view class="add" v-if="addinfo">{{addinfo.full_address}}</view>
+				<view class=""  v-else >请添加您的收货地址</view>
 				<u-icon name="arrow-right" size='16'></u-icon>
 			</view>
 			<view class="info" v-if="addinfo">
@@ -104,7 +105,7 @@
 			<view class="back u-flex" v-if="containname1">
 				<image src="static/images/warning.png" style="width: 32rpx;height: 32rpx;" mode=""></image>
 				<text
-					style="margin-left: 12rpx;">{{i18n.buy}}{{min_weight}}-{{max_weight}}kg{{i18n.price}}¥{{unit_fee}},{{i18n.morefavorable}}</text>
+					style="margin-left: 12rpx;">{{i18n.buy}}{{max_weight}}kg{{i18n.price}}¥{{unit_fee}},{{i18n.morefavorable}}</text>
 			</view>
 			<view class="u-flex u-row-between" style='margin-bottom:40rpx;margin-top: 20rpx;'>
 				<view class="name">{{i18n.Costperkilogram}}</view>

+ 30 - 12
pageA/productdetails.vue

@@ -121,8 +121,11 @@
 						<image :src='goodinfo.merchant.image' style="width: 112rpx;height: 112rpx;" mode=""></image>
 						<view class="" style="margin-left: 20rpx;">
 							<view class="title">{{goodinfo.merchant.merchant_name}}</view>
-							<uni-rate network allow-half :readonly="true" color="red" :size='8' :value="5"
-								v-model="rate" />
+							<view class="redback u-flex">
+								<uni-rate network allow-half :readonly="true" active-color="red"
+									color="rgba(255, 27, 0, 0.5)" :size='8' :value="5" v-model="rate" />
+								<text style="margin-left: 8rpx;">{{rate}}</text>
+							</view>
 							<view class="" style='margin-top:20rpx'></view>
 							<view class="u-flex" style='margin-top:20rpx'>
 								<text class='num'>{{i18n.Salesvolume}} 2384w+</text>
@@ -143,7 +146,7 @@
 						<swiper style="height: 400rpx;" class="swiper" circular :indicator-dots="true" :autoplay="true">
 							<swiper-item v-for="(parent,index) in swiptlist" :key="index">
 								<view class="u-flex  swiper-item u-row-between">
-									<view class="" v-for="(child,idx) in parent" @click="toinfo(child.id)" :key="idx">
+									<view class="" v-for="(child,idx) in parent" @click="detail(child.id)" :key="idx">
 										<image :src="child.image" style="width: 214rpx;height: 214rpx;" mode="">
 										</image>
 										<view class="u-line-1"
@@ -231,10 +234,10 @@
 						<view class="">
 							<text class="read">¥</text>
 							<text class="read" style="font-size: 40rpx;"
-								v-if="goodinfo.is_discount==0">{{(Number(sku_info.discount_price)*Number(value)) || (Number(goodinfo.discount_price) * Number(value))}}</text>
+								v-if="goodinfo.is_discount==0">{{(Number(sku_info.discount_price*100)*Number(value*100))/10000 || (Number(goodinfo.discount_price*100) * Number(value*100))/10000}}</text>
 							<!-- <text class="read" v-if="goodinfo.is_discount==0">{{(goodinfo.discount_price * value).slice(-3)}}</text> -->
 							<text class="read" style="font-size: 40rpx;"
-								v-if="goodinfo.is_discount==1">{{(Number(sku_info.price)*Number(value))|| (Number(goodinfo.price) * Number(value))}}</text>
+								v-if="goodinfo.is_discount==1">{{(Number(sku_info.price*100)*Number(value*100))/10000|| (Number(goodinfo.price*100) * Number(value*100))/10000}}</text>
 							<!-- <text class="read" v-if="goodinfo.is_discount==1">{{(goodinfo.price * value).slice(-3)}}</text> -->
 							<!-- <text class="read" style="font-size: 40rpx;" >{{(Number(goodinfo.price) * Number(value)).toString()}}</text> -->
 						</view>
@@ -273,10 +276,11 @@
 				</view>
 			</view>
 		</u-popup>
-		<u-popup :show="serve">
-			<view style="padding:48rpx 24rpx;box-sizing: border-box;background-color: #FFF3E7;position: relative;">
+		<u-popup :show="serve" :round="20">
+			<view style="padding:48rpx 24rpx;box-sizing: border-box;background-color: #FFF3E7;position: relative;border-radius: 20rpx 20rpx 0 0;">
 				<view class="u-flex" style="flex-direction: column;justify-content: center;">
-					<image src="../static/images/index/serve.png" style="width: 138rpx;height: 34rpx;" mode=""></image>
+					<image src="../static/images/index/serve.png"
+						style="width: 138rpx;height: 34rpx;  " mode=""></image>
 					<text class="info">
 						售前售后 安心无忧购物
 					</text>
@@ -364,7 +368,6 @@
 		data() {
 			return {
 				toView: '',
-				rate: '', //星级
 				imagea: false,
 				list1: [{
 					name: '商品',
@@ -393,7 +396,8 @@
 				shopcar: '',
 				sku_info: {},
 				commentlist: [],
-				total: ''
+				total: '',
+				rate: 5,
 			};
 		},
 		computed: {
@@ -411,7 +415,6 @@
 			}
 			this.detail(this.id)
 			this.recommend()
-
 		},
 		methods: {
 			//评论页面
@@ -498,6 +501,7 @@
 					console.log(res);
 					this.goodinfo = res
 					this.comment()
+					this.rate = res.merchant.score
 				}).catch(() => {
 
 				})
@@ -613,6 +617,20 @@
 </script>
 
 <style lang="scss" scoped>
+	.redback {
+		background: rgba(255, 27, 0, 0.07);
+		border-radius: 12rpx;
+		padding: 6rpx 12rpx;
+		box-sizing: border-box;
+		font-family: HarmonyOS_Sans_Medium;
+		font-size: 16rpx;
+		color: #FF1515;
+		line-height: 22rpx;
+		text-align: left;
+		font-style: normal;
+		width: 200rpx;
+	}
+
 	.sku {
 		font-family: PingFangSC, PingFang SC;
 		font-weight: 400;
@@ -813,7 +831,7 @@
 			font-family: PingFangSC, PingFang SC;
 			font-weight: 400;
 			font-size: 26rpx;
-			color: #222222;
+			color: rgba(34, 34, 34, 0.5);
 			line-height: 36rpx;
 			text-align: left;
 			font-style: normal;

+ 47 - 46
pageA/shoptype.vue

@@ -34,53 +34,54 @@
 		data() {
 			return {
 				scrollH: 0, //scroll高度
-				list: [{
-						name: "女装",
-						children: [{
-								name: "A字裙",
-								icon: "https://cdn.uviewui.com/uview/common/classify/1/1.jpg",
-							},
-							{
-								name: "礼服/婚纱",
-								icon: "https://cdn.uviewui.com/uview/common/classify/1/14.jpg",
-							}
-						]
-					},
-					{
-						name: "美食",
-						children: [{
-								name: "火锅",
-								icon: "https://cdn.uviewui.com/uview/common/classify/2/1.jpg",
-							},
-							{
-								name: "精品茗茶",
-								icon: "https://cdn.uviewui.com/uview/common/classify/2/7.jpg",
-							},
-							{
-								name: "休闲食品",
-								icon: "https://cdn.uviewui.com/uview/common/classify/2/8.jpg",
-							},
-						]
-					},
-					{
-						name: "美妆",
-						children: [{
-								name: "化妆刷",
-								icon: "https://cdn.uviewui.com/uview/common/classify/3/1.jpg",
-							},
-							{
-								name: "防晒品",
-								icon: "https://cdn.uviewui.com/uview/common/classify/3/14.jpg",
-							},
-							{
-								name: "美甲",
-								icon: "https://cdn.uviewui.com/uview/common/classify/3/15.jpg",
-							}
+				// list: [{
+				// 		name: "女装",
+				// 		children: [{
+				// 				name: "A字裙",
+				// 				icon: "https://cdn.uviewui.com/uview/common/classify/1/1.jpg",
+				// 			},
+				// 			{
+				// 				name: "礼服/婚纱",
+				// 				icon: "https://cdn.uviewui.com/uview/common/classify/1/14.jpg",
+				// 			}
+				// 		]
+				// 	},
+				// 	{
+				// 		name: "美食",
+				// 		children: [{
+				// 				name: "火锅",
+				// 				icon: "https://cdn.uviewui.com/uview/common/classify/2/1.jpg",
+				// 			},
+				// 			{
+				// 				name: "精品茗茶",
+				// 				icon: "https://cdn.uviewui.com/uview/common/classify/2/7.jpg",
+				// 			},
+				// 			{
+				// 				name: "休闲食品",
+				// 				icon: "https://cdn.uviewui.com/uview/common/classify/2/8.jpg",
+				// 			},
+				// 		]
+				// 	},
+				// 	{
+				// 		name: "美妆",
+				// 		children: [{
+				// 				name: "化妆刷",
+				// 				icon: "https://cdn.uviewui.com/uview/common/classify/3/1.jpg",
+				// 			},
+				// 			{
+				// 				name: "防晒品",
+				// 				icon: "https://cdn.uviewui.com/uview/common/classify/3/14.jpg",
+				// 			},
+				// 			{
+				// 				name: "美甲",
+				// 				icon: "https://cdn.uviewui.com/uview/common/classify/3/15.jpg",
+				// 			}
 
-						]
-					}
-				],
-				language: ''
+				// 		]
+				// 	}
+				// ],
+				language: '',
+				list:[]
 			}
 		},
 		onLoad() {

+ 3 - 0
pageB/myPackage.vue

@@ -120,10 +120,13 @@
 				this.current = item.index
 				if (this.current == 0) {
 					this.status = 'to_transit'
+					this.getlist()
 				} else if (this.current == 1) {
 					this.status = 'transit_receipt'
+					this.getlist()
 				} else {
 					this.status = 'to_overseas'
+					this.getlist()
 				}
 			}
 		},

+ 56 - 11
pages/express/express.vue

@@ -31,11 +31,18 @@
 					</view>
 					<view class=" u-row-between left"
 						style="flex: 1;margin-left: 28rpx;border-bottom:2rpx solid rgba(151, 151, 151, 0.08) ;display: flex;">
-						<view class="u-row-between " style="" @click="send">
+						<!-- 						<view class="u-row-between " style="" @click="send">
 							<view class="pople">{{i18n.sender}}</view>
 							<view class="jiadd" style="margin-top: 14rpx;">{{i18n.informat}}</view>
+						</view> -->
+						<view class="u-row-between " style="" @click="send">
+							<view class="">
+								<text class="topname">陈盼盼</text>
+								<text class="topaddress" style="margin-left: 8rpx;">134****8314</text>
+							</view>
+							<view class="topaddress" style="margin-top: 14rpx;">上海市上海市浦东新区商城路1177弄5号</view>
 						</view>
-						<view class="u-flex">
+						<view class="u-flex" @click.stop="addbook(0)">
 							<view class="" style="color: rgba(151, 151, 151, 1);">|</view>
 							<text class="right">{{i18n.addressbook}}</text>
 						</view>
@@ -53,7 +60,7 @@
 							<view class="pople">{{i18n.recipient}}</view>
 							<view class="jiadd" style="margin-top: 14rpx;">{{i18n.informate}}</view>
 						</view>
-						<view class="u-flex">
+						<view class="u-flex" @click.stop="addbook(1)">
 							<view class="" style="color: rgba(151, 151, 151, 1);">|</view>
 							<text class="right">{{i18n.addressbook}}</text>
 						</view>
@@ -214,10 +221,12 @@
 				type: "error",
 				percentage: 50, //进度条
 				logshow: false, //物流选择
-				status_collection:'',//我的包裹选择值
-				transit:0,//发往中转点
-				receipt:0,//中转已签收
-				overseas:0,//正发往海外
+				status_collection: '', //我的包裹选择值
+				transit: 0, //发往中转点
+				receipt: 0, //中转已签收
+				overseas: 0, //正发往海外
+				topadd: {}, //新建寄件人
+				bottomadd: {}, //新建收件人
 			}
 		},
 		onLoad(options) {
@@ -225,7 +234,7 @@
 			if (options.current) {
 				this.current = options.current
 			}
-			
+
 		},
 		onShow() {
 			this.list[0] = this.i18n.border
@@ -233,7 +242,7 @@
 			uni.setNavigationBarTitle({
 				title: this.i18n.setup
 			})
-			this.express()//获取包裹数量
+			this.express() //获取包裹数量
 		},
 		computed: {
 			i18n() {
@@ -241,10 +250,26 @@
 			}
 		},
 		methods: {
+			//地址薄
+			addbook(index) {
+				uni.navigateTo({
+					url: "/pageC/addressManagement/addressManagement?index=" + index,
+					events: {
+						getadd(res) {
+							if (index == 0) {
+								this.topadd = res
+								console.log('topadd',this.topadd);
+							} else {
+								this.bottomadd = res
+								console.log('bottom',this.bottomadd);
+							}
+						}
+					}
+				})
+			},
 			//我的包裹
 			express() {
-				uni.$u.http.get('/api/express-order/status-count', {
-				}).then((res) => {
+				uni.$u.http.get('/api/express-order/status-count', {}).then((res) => {
 					console.log(res);
 					this.overseas = res.to_overseas
 					this.receipt = res.transit_receipt
@@ -339,6 +364,26 @@
 		background-color: rgba(0, 0, 0, 0)
 	}
 
+	.topname {
+		font-family: PingFangSC, PingFang SC;
+		font-weight: 500;
+		font-size: 30rpx;
+		color: #222222;
+		line-height: 42rpx;
+		text-align: left;
+		font-style: normal;
+	}
+
+	.topaddress {
+		font-family: PingFangSC, PingFang SC;
+		font-weight: 400;
+		font-size: 26rpx;
+		color: #777777;
+		line-height: 36rpx;
+		text-align: left;
+		font-style: normal;
+	}
+
 	.pop {
 		font-family: PingFangSC, PingFang SC;
 		font-weight: 500;

+ 45 - 15
pages/index/index.vue

@@ -167,18 +167,31 @@
 					</view>
 					<view class="">
 						<text class="money">
-							¥{{item.price}}
+							¥{{item.is_discount==0?item.discount_price:item.price}}
 						</text>
 						<text class="weight">
 							¥{{item.weight}}kg
 						</text>
 					</view>
 					<view class="u-flex" style="flex-wrap: wrap;margin-top: 18rpx;column-gap: 12px;overflow: hidden;">
-						<view v-if="item.is_shipping == 0" class="taber"
-							style="border: 1rpx solid #E5BC78;color: #E5BC78;">{{i18n.postage}}
-						</view>
-						<view class="taber" style="border: 1rpx solid rgba(237, 9, 9, 1);color: rgba(237, 9, 9, 1);">
-							{{i18n.Trade}}
+						<!-- 					<view v-for="(child,idx) in item.label_arr" :key="idx" class="taber"
+							style="border: 1rpx solid #E5BC78;color: #E5BC78;">
+							<text>{{child.name_cn}}</text>
+						</view> -->
+						<view v-for="(child,idx) in item.label_arr" :key="idx" class="taber"
+							style="border: 1rpx solid rgba(237, 9, 9, 1);color: rgba(237, 9, 9, 1);">
+							<text v-if="language =='zh-CN'">
+								{{item.name_cn}}
+							</text>
+							<text v-if="language =='en-US'">
+								{{item.name_en}}
+							</text>
+							<text v-if="language =='es-ES'">
+								{{item.name_es}}
+							</text>
+							<text v-if="language =='it-IT'">
+								{{item.name_ita}}
+							</text>
 						</view>
 						<!-- <view class="taber" style="border: 1rpx solid #E5BC78;color: #E5BC78;">以旧换新</view> -->
 					</view>
@@ -188,7 +201,7 @@
 
 		<u-popup :show="show" mode='center' :round='16' bgColor='transparent'>
 			<view style="position: relative;">
-				<image src="https://cdn.uviewui.com/uview/swiper/swiper1.png"
+				<image :src="configimage"
 					style="width: 570rpx;height: 764rpx;border-radius: 16rpx;" mode=""></image>
 				<view class="" style="text-align: center;" @click='show=false'>
 					<image src="../../static/images/index/close.png" mode="" style="width: 70rpx;height: 70rpx;">
@@ -230,9 +243,10 @@
 				shippList: [], //海外包邮
 				keyword: '',
 				page: 1,
-				index:0,
-				parent_id:'',
-				last_page:''
+				index: 0,
+				parent_id: '',
+				last_page: '',
+				configimage:'',
 			}
 		},
 		computed: {
@@ -241,10 +255,10 @@
 			}
 		},
 		onReachBottom() {
-			if(this.page == this.last_page) {
+			if (this.page == this.last_page) {
 				this.$u.toast('已无更多数据')
 			} else {
-				this.page ++ 
+				this.page++
 				this.goods(this.parent_id)
 			}
 		},
@@ -256,8 +270,10 @@
 			}
 			//商品推荐
 			this.recommend()
+			
 		},
 		onShow() {
+			this.config()
 			// tabs列表
 			this.category()
 			//百万补贴
@@ -271,6 +287,18 @@
 			}
 		},
 		methods: {
+			//广告弹窗
+			config(){
+				uni.$u.http.get('api/config',{
+					params:{
+						module:'advertising'
+					}}).then((res) => {
+					console.log(res);
+					this.configimage = res.image
+				}).catch(() => {
+				
+				})
+			},
 			//海外包邮接口
 			shipp() {
 				uni.$u.http.post('api/goods/shipping').then((res) => {
@@ -306,7 +334,7 @@
 					this.goods(this.parent_id)
 				}
 			},
-			search(){
+			search() {
 				if (this.index == 0) {
 					this.recommend()
 				} else {
@@ -316,7 +344,9 @@
 			},
 			//商品推荐
 			recommend() {
-				uni.$u.http.post('/api/goods/recommend',{keyword:this.keyword}).then((res) => {
+				uni.$u.http.post('/api/goods/recommend', {
+					keyword: this.keyword
+				}).then((res) => {
 					this.recomlist = res
 				}).catch(() => {
 
@@ -373,7 +403,7 @@
 						keyword: this.keyword
 					}
 				}).then((res) => {
-					this.recomlist = this.recomlist.concat(res.data) 
+					this.recomlist = this.recomlist.concat(res.data)
 					this.last_page = res.last_page
 				}).catch(() => {