Ver código fonte

二级市场购物车

李书文 1 ano atrás
pai
commit
ab26e31890

+ 9 - 0
pages.json

@@ -450,6 +450,15 @@
             }
 
         }
+        ,{
+            "path" : "pages/market/two/purchaser/order/cart",
+            "style" :                                                                                    
+            {
+                "navigationBarTitleText": "购物车",
+                "enablePullDownRefresh": false
+            }
+            
+        }
     ],
 	"tabBar": {
 		"color": "#7A7E83",

+ 13 - 2
pages/market/two/list.vue

@@ -17,11 +17,12 @@
 				</view>
 			</view>
 			<view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
-				<view class="title" >{{ item.createName }}</view>
+				<view class="title">{{ item.createName }}</view>
 				<image src="../../../static/news.jpg" mode="aspectFill" class="pic"></image>
 				<view class="con">
 					<view class="productName omit">{{ item.goodsName }}</view>
 					<view class="price">¥ {{ item.resalePrice }}</view>
+					<view class="icon btn" v-if="user.userType == 3" @click.stop="addCar(item)">加入购物车</view>
 					<view class="icon btn" v-if="user.userType == 3" @click.stop="buy(item)">购买</view>
 				</view>
 			</view>
@@ -88,8 +89,18 @@ export default {
 		detail(item) {
 			uni.navigateTo({ url: '/pages/market/two/detail?item=' + JSON.stringify(item) });
 		},
+		addCar(item) {
+			this.http.request({
+				url: '/level-two-server/app/TbOrdersCart/add',
+				method: 'POST',
+				data: { orderId: item.id },
+				success: res => {
+					uni.showToast({ title: '添加成功' });
+				}
+			});
+		},
 		buy(item) {
-			uni.navigateTo({ url: '/pages/market/two/purchaser/buy/buy?item=' + JSON.stringify(item) });
+			uni.navigateTo({ url: '/pages/market/two/purchaser/buy/buy?orderId=' + item.id });
 		},
 		//刷新数据
 		refresh() {

+ 114 - 0
pages/market/two/purchaser/order/cart.vue

@@ -0,0 +1,114 @@
+<template>
+	<view>
+		<view class="goodsList animated fadeInDown">
+			<view class="item" v-for="(item, index) in list" :key="index">
+				<view class="title" @click.stop="selected(item)">
+					<text class="icon" v-if="item.check" style="color: #4581fb">&#xe631;</text>
+					<text class="icon" v-else>&#xe60c;</text>
+					<text>{{ item.createName }}</text>
+				</view>
+				<view class="state" @click.stop="del(item)"><text class="icon del">&#xe852;</text></view>
+				<image src="../../../../../static/news.jpg" mode="aspectFill" class="pic"></image>
+				<view class="con">
+					<view class="productName omit">{{ item.goodsName }}</view>
+					<view class="desc omit">
+						<text>{{ item.tradeAreaName }}</text>
+					</view>
+					<view class="price">¥ {{ item.resalePrice }}</view>
+				</view>
+				<view class="clear"></view>
+				<view class="op">
+					<view class="date">{{ item.createTime }}</view>
+					<view class="an btn" @click.stop="buy(item)">立即购买</view>
+				</view>
+			</view>
+			<u-empty v-if="list.length == 0"></u-empty>
+		</view>
+		<view class="mfooter" v-if="selects.length > 0">
+			<view class="flex">
+				<view class="f">
+					<button class="btn" @click="pay()">立即购买({{ selects.length }})</button>
+				</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+export default {
+	data() {
+		return {
+			list: [],
+			selects: []
+		};
+	},
+	onLoad() {
+		this.getData();
+	},
+	methods: {
+		getData() {
+			this.http.request({
+				url: '/level-two-server/app/TbOrdersCart/getList',
+				data: this.param,
+				success: res => {
+					this.list = res.data.data || [];
+				}
+			});
+		},
+		selected(item) {
+			item.check = !item.check;
+			this.$forceUpdate();
+			this.selects = this.list.filter(item => item.check);
+		},
+		// 立即购买
+		buy(item) {
+			uni.navigateTo({
+				url: '/pages/market/two/purchaser/buy/buy?order=' + item.id
+			});
+		},
+		del(item) {
+			let ids = item.id || this.list.map(i => i.id);
+			uni.showModal({
+				title: '提示',
+				content: item.id ? '确定删除该购物车?' : '清空所有购物车',
+				success: res => {
+					if (res.confirm) {
+						this.http.request({
+							url: '/level-two-server/app/TbOrdersCart/deleteByIds/' + ids,
+							success: res => {
+								uni.showToast({ title: '删除成功' });
+								this.getData();
+							}
+						});
+					}
+				}
+			});
+		}
+	},
+	onNavigationBarButtonTap() {
+		this.del({});
+	}
+};
+</script>
+
+<style lang="scss">
+page {
+	background-color: $pg;
+}
+.title {
+	.icon {
+		color: $font-c;
+		padding-right: 5px;
+	}
+}
+.an {
+	padding: 6px 15px;
+	font-size: 14px;
+	margin-top: 0px !important;
+	font-weight: normal !important;
+}
+.mfooter {
+	background-color: #ffffff00;
+	border: 0px;
+}
+</style>

+ 8 - 0
pages/personal/personal.vue

@@ -72,6 +72,14 @@
 			</view>
 			<!--收购商-->
 			<view class="menu" v-if="user.userType == 3">
+				<view class="msn" @click="go('/pages/market/two/purchaser/order/cart')">
+					<view class="out">
+						<view class="int">
+							<view class="icon ioc" style="background-color: #fff6e0; color: #f1ba41">&#xe604;</view>
+							<view class="tit">购物车</view>
+						</view>
+					</view>
+				</view>
 				<view class="msn" @click="go('/pages/market/two/purchaser/buy/list')">
 					<view class="out">
 						<view class="int">