浏览代码

feat:发起团购

jinchaoyu 1 年之前
父节点
当前提交
ae1f353b7e
共有 3 个文件被更改,包括 1264 次插入616 次删除
  1. 591 0
      pages/groupbuying/publish_good_list/index.vue
  2. 575 495
      pages/groupbuying/publish_group/index.vue
  3. 98 121
      pages/user/index.vue

+ 591 - 0
pages/groupbuying/publish_good_list/index.vue

@@ -0,0 +1,591 @@
+<template>
+	<view class='productSort copy-data'>
+
+		<view class="scroll-box">
+			<view class='aside'>
+				<scroll-view scroll-y="true" scroll-with-animation='true' style="height: calc(100% - 100rpx)">
+					<view class='item acea-row row-center-wrapper' :class='index == navActive ? "on" : ""'
+						v-for="(item, index) in productList" :key="index" @click='tap(item, index, "b" + index)'>
+						<text>{{ $t(item.title) }}</text>
+					</view>
+				</scroll-view>
+			</view>
+
+			<view class='conter'>
+				<scroll-view scroll-y="true" :scroll-into-view="toView" @scroll="scroll" scroll-with-animation='true'
+					style="height: 100%;" class="conterScroll">
+					<block>
+						<view class='listw' :id="'b' + index">
+							<!-- <view class='title acea-row row-center-wrapper'>
+								<view class='line'></view>
+								<view class='name'>{{ $t(item.cate_name) }}</view>
+								<view class='line'></view>
+							</view> -->
+							<view class='list acea-row'>
+								<block v-for="(itemn, indexn) in productList2" :key="indexn">
+									<view hover-class='none' @click="choice(itemn)" class='item acea-row-item row-column row-middle'>
+										<view class='picture'>
+											<image :src='itemn.logo' v-if="itemn.logo"></image>
+											<image src="/static/images/sort-img.png" v-else></image>
+										</view>
+										<view class="p-r">
+											<view class='name line1'>{{ $t(itemn.title) }}</view>
+											<view class="acea-row-item-bArea">
+												<view class='jiage line1'>¥48.00</view>
+												<view :class="[itemn.selected ? 'selde' : 'noselde']">{{ itemn.selected ? "已选择" : "选择" }}<text
+														:class="[itemn.selected ? 'selde-q' : 'noselde-q']"></text></view>
+											</view>
+										</view>
+									</view>
+								</block>
+							</view>
+						</view>
+					</block>
+					<view :style='"height:" + (height - 300) + "rpx;"' v-if="number < 15"></view>
+				</scroll-view>
+			</view>
+		</view>
+		<view class="foot" v-if="is_diy && newData.status && newData.status.status">
+			<view class="page-footer" id="target" :style="{ 'background-color': newData.bgColor.color[0].item }">
+				<view class="foot-item" v-for="(item, index) in newData.menuList" :key="index" @click="goRouter(item)">
+					<block v-if="item.link == activeRouter">
+						<image :src="item.imgList[0]"></image>
+						<view class="txt" :style="{ color: newData.activeTxtColor.color[0].item }">
+							{{ $t(item.name) }}</view>
+					</block>
+					<block v-else>
+						<image :src="item.imgList[1]"></image>
+						<view class="txt" :style="{ color: newData.txtColor.color[0].item }">
+							{{ $t(item.name) }}</view>
+					</block>
+					<div class="count-num" v-if="item.link === '/pages/order_addcart/order_addcart' && cartNum > 0">
+						{{ cartNum }}
+					</div>
+				</view>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+import { getCategoryOne, getCategoryTwo } from '@/api/home.js'
+let sysHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
+import {
+	getCategoryList
+} from '@/api/store.js';
+import {
+	mapState,
+	mapGetters
+} from "vuex"
+import pageFooter from '@/components/pageFooter/index.vue'
+import {
+	getNavigation
+} from '@/api/public.js'
+const app = getApp();
+export default {
+	components: {
+		pageFooter
+	},
+	data () {
+		return {
+			selectItem: [],
+			src: 'http://www.gzzhsckj.com:9000/bladex/upload/20221026/5956cfd37ebc31cd2e00797909987482.jpg',
+			navlist: [],
+			productList: [],
+			productList2: [],
+			navActive: 0,
+			number: "",
+			is_diy: uni.getStorageSync('is_diy'),
+			height: 0,
+			hightArr: [],
+			toView: "",
+			tabbarH: 0,
+			footH: 0,
+			windowHeight: 0,
+			newData: {},
+			activeRouter: '',
+			pageHeight: '80%',
+			sysHeight: sysHeight,
+			// #ifdef APP-PLUS
+			pageHeight: app.globalData.windowHeight,
+			// #endif
+			footerStatus: false,
+			lock: false,
+			selectId:[]
+		}
+	},
+	computed: {
+		...mapState({
+			cartNum: state => state.indexData.cartNum
+		})
+	},
+	created () {
+		this.getCategoryOne()
+	},
+	mounted () {
+		let that = this
+		let routes = getCurrentPages();
+		let curRoute = routes[routes.length - 1].route
+		this.activeRouter = '/' + curRoute
+		// this.getAllCategory();
+
+		// #ifdef H5
+		uni.getSystemInfo({
+			success: function (res) {
+				that.pageHeight = res.windowHeight + 'px'
+			}
+		});
+		// #endif
+	},
+	methods: {
+		choice (item) {
+			console.log(this.productList2);
+			item.selected = !item.selected
+			this.productList2.splice(0,0)
+
+		let data = 	this.productList2.filter(e=>{
+				return e.selected
+			})
+
+			this.$emit('getSelectData', data);
+		},
+		getCategoryOne () {
+			getCategoryOne({
+				parentId: 0
+			}).then(res => {
+				if (res.data.length > 0) {
+					this.productList = res.data
+					this.selectItem = res.data[0]
+					this.getCategoryTwo(res.data[0].id)
+				}
+			})
+		},
+		getCategoryTwo (id) {
+			getCategoryTwo({
+				parentId: id
+			}).then(res => {
+				this.productList2 = res.data
+				this.productList2.forEach(e=>{
+					e.selected = false
+				})
+			})
+		},
+		getNav () {
+			// uni.request({
+			// 	url:'api/mock/navigation',
+			// 	success:res=>{
+			// 		this.newData = res.data
+			// 		if (this.newData.status && this.newData.status.status) {
+			// 			uni.hideTabBar()
+			// 		} else {
+			// 			uni.showTabBar()
+			// 		}
+			// 	}
+			// })
+			// getNavigation().then(res => {
+			// this.newData = res
+			// if (this.newData.status && this.newData.status.status) {
+			// 	uni.hideTabBar()
+			// } else {
+			// 	uni.showTabBar()
+			// }
+			// })
+		},
+		goRouter (item) {
+			var pages = getCurrentPages();
+			var page = (pages[pages.length - 1]).$page.fullPath;
+			if (item.link == page) return
+			uni.switchTab({
+				url: item.link,
+				fail (err) {
+					uni.redirectTo({
+						url: item.link
+					})
+				}
+			})
+		},
+		footHeight (data) {
+			this.footH = data
+
+		},
+		infoScroll: function () {
+			let that = this;
+			let len = that.productList.length;
+			this.number = that.productList[len - 1].children.length;
+			//设置商品列表高度
+			uni.getSystemInfo({
+				success: function (res) {
+					that.height = (res.windowHeight) * (750 / res.windowWidth) - 98;
+				},
+			});
+			let height = 0;
+			let hightArr = [];
+			for (let i = 0; i < len; i++) {
+				//获取元素所在位置
+				let query = uni.createSelectorQuery().in(this);
+				let idView = "#b" + i;
+				query.select(idView).boundingClientRect();
+				query.exec(function (res) {
+					let top = res[0].top;
+					hightArr.push(top);
+					that.hightArr = hightArr
+				});
+			};
+		},
+		tap: function (item, index, id) {
+			this.selectItem = item
+			this.getCategoryTwo(item.id)
+			this.toView = id;
+			this.navActive = index;
+			this.$set(this, 'lock', true);
+		},
+		getAllCategory: function () {
+			let that = this;
+			uni.request({
+				url: 'api/mock/getCategoryList',
+				success: res => {
+					that.productList = res.data;
+					that.$nextTick(res => {
+						that.infoScroll();
+					})
+				}
+			})
+			// getCategoryList().then(res => {
+			// 	that.productList = res.data;
+			// 	that.$nextTick(res => {
+			// 		that.infoScroll();
+			// 	})
+			// })
+		},
+		scroll: function (e) {
+			let scrollTop = e.detail.scrollTop;
+			let scrollArr = this.hightArr;
+			if (this.lock) {
+				this.$set(this, 'lock', false);
+				return;
+			}
+			for (let i = 0; i < scrollArr.length; i++) {
+				if (scrollTop >= 0 && scrollTop < scrollArr[1] - scrollArr[0]) {
+					this.navActive = 0
+				} else if (scrollTop >= scrollArr[i] - scrollArr[0] && scrollTop < scrollArr[i + 1] - scrollArr[
+					0]) {
+					this.navActive = i
+				} else if (scrollTop >= scrollArr[scrollArr.length - 1] - scrollArr[0]) {
+					this.navActive = scrollArr.length - 1
+				}
+			}
+		},
+		searchSubmitValue: function (e) {
+			if (this.$util.trim(e.detail.value).length > 0)
+				uni.navigateTo({
+					url: '/pages/goods/goods_list/index?searchValue=' + e.detail.value
+				})
+			else
+				return this.$util.Tips({
+					title: this.$t(`搜索商品名称`)
+				});
+		},
+	}
+}
+</script>
+<style>
+page {
+	height: 100%;
+}
+</style>
+<style scoped lang="scss">
+/deep/uni-scroll-view {
+	padding-bottom: 0 !important;
+}
+
+.sys-title {
+	z-index: 10;
+	position: relative;
+	height: 40px;
+	line-height: 40px;
+	font-size: 30rpx;
+	color: #333;
+	background-color: #fff;
+	// #ifdef APP-PLUS
+	text-align: center;
+	// #endif
+	// #ifdef MP
+	text-align: left;
+	padding-left: 30rpx;
+	// #endif
+}
+
+.sys-head {
+	background-color: #fff;
+}
+
+.productSort {
+	display: flex;
+	flex-direction: column;
+	height: 80vh
+}
+
+.productSort .header {
+	width: 100%;
+	height: 96rpx;
+	background-color: #fff;
+	border-bottom: 1rpx solid #f5f5f5;
+}
+
+.productSort .header .input {
+	width: 700rpx;
+	height: 60rpx;
+	background-color: #f5f5f5;
+	border-radius: 50rpx;
+	box-sizing: border-box;
+	padding: 0 25rpx;
+}
+
+.productSort .header .input .iconfont {
+	font-size: 35rpx;
+	color: #555;
+}
+
+.productSort .header .input .placeholder {
+	color: #999;
+}
+
+.productSort .header .input input {
+	font-size: 26rpx;
+	height: 100%;
+	width: 597rpx;
+}
+
+.productSort .scroll-box {
+	flex: 1;
+	overflow: hidden;
+	display: flex;
+}
+
+// #ifndef MP
+uni-scroll-view {
+	padding-bottom: 100rpx;
+}
+
+// #endif
+
+.productSort .aside {
+	width: 180rpx;
+	height: 100%;
+	overflow: hidden;
+	background-color: #f7f7f7;
+}
+
+.productSort .aside .item {
+	height: 100rpx;
+	width: 100%;
+	font-size: 26rpx;
+	color: #424242;
+	text-align: center;
+}
+
+.productSort .aside .item.on {
+	background-color: #fff;
+	border-left: 4rpx solid var(--view-theme);
+	width: 100%;
+	color: var(--view-theme);
+	font-weight: bold;
+}
+
+.productSort .conter {
+	flex: 1;
+	height: 100%;
+	overflow: hidden;
+	padding: 0 14rpx;
+	background-color: #fff;
+	position: relative;
+}
+
+.productSort .conter .listw {
+	padding-top: 20rpx;
+}
+
+.productSort .conter .listw .title {
+	height: 90rpx;
+}
+
+.productSort .conter .listw .title .line {
+	width: 100rpx;
+	height: 2rpx;
+	background-color: #f0f0f0;
+}
+
+.productSort .conter .listw .title .name {
+	font-size: 28rpx;
+	color: #333;
+	margin: 0 30rpx;
+	font-weight: bold;
+}
+
+.productSort .conter .list {
+	flex-wrap: wrap;
+}
+
+.productSort .conter .list .item {
+	width: 177rpx;
+	margin-top: 26rpx;
+}
+
+.productSort .conter .list .item .picture {
+	width: 120rpx;
+	height: 120rpx;
+	border-radius: 50%;
+}
+
+.productSort .conter .list .item .picture image {
+	width: 100%;
+	height: 100%;
+	border-radius: 50%;
+}
+
+.productSort .conter .list .item .name {
+	font-size: 24rpx;
+	color: #333;
+	height: 56rpx;
+	line-height: 56rpx;
+	width: 120rpx;
+	text-align: center;
+}
+
+.page-footer {
+	position: fixed;
+	bottom: 0;
+	z-index: 30;
+	display: flex;
+	align-items: center;
+	justify-content: space-around;
+	width: 100%;
+	height: calc(98rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
+	height: calc(98rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
+	box-sizing: border-box;
+	border-top: solid 1rpx #F3F3F3;
+	background-color: #fff;
+	box-shadow: 0px 0px 17rpx 1rpx rgba(206, 206, 206, 0.32);
+	padding-bottom: constant(safe-area-inset-bottom); ///兼容 IOS<11.2/
+	padding-bottom: env(safe-area-inset-bottom); ///兼容 IOS>11.2/
+
+	.foot-item {
+		display: flex;
+		width: max-content;
+		align-items: center;
+		justify-content: center;
+		flex-direction: column;
+		position: relative;
+
+		.count-num {
+			position: absolute;
+			display: flex;
+			justify-content: center;
+			align-items: center;
+			width: 40rpx;
+			height: 40rpx;
+			top: 0rpx;
+			right: -15rpx;
+			color: #fff;
+			font-size: 20rpx;
+			background-color: #FD502F;
+			border-radius: 50%;
+			padding: 4rpx;
+		}
+	}
+
+	.foot-item image {
+		height: 50rpx;
+		width: 50rpx;
+		text-align: center;
+		margin: 0 auto;
+	}
+
+	.foot-item .txt {
+		font-size: 24rpx;
+
+
+		&.active {}
+	}
+
+	.fixed-image {
+		position: fixed !important;
+		width: 74%;
+	}
+}
+
+.acea-row {
+
+	display: flex;
+	flex-direction: column;
+
+	/* 已选择 */
+	.selde {
+		border: 1px solid red;
+		background: red;
+		color: #FFFFFF;
+		border-radius: 20upx;
+		display: flex;
+		flex-direction: row;
+		justify-content: center;
+		align-items: center;
+		font-size: 20upx;
+		padding: 0 10upx;
+	}
+
+	.selde-q {
+		width: 18upx;
+		height: 18upx;
+		border-radius: 50%;
+		background: #FFFFFF;
+		margin-left: 6upx;
+	}
+
+	/* 未选择 */
+	.noselde {
+		border: 1px solid #959595;
+		background: #FFFFFF;
+		color: #959595;
+		border-radius: 20upx;
+		display: flex;
+		flex-direction: row;
+		justify-content: center;
+		align-items: center;
+		font-size: 20upx;
+		padding: 0 10upx;
+	}
+
+	.noselde-q {
+		border: 1px solid #959595;
+		width: 16upx;
+		height: 16upx;
+		border-radius: 50%;
+		background: #FFFFFF;
+		margin-left: 6upx;
+	}
+
+
+	.acea-row-item {
+		display: flex;
+		width: 100% !important;
+		flex-direction: row;
+
+
+		.picture {}
+
+		.p-r {
+			flex-direction: column;
+			width: 100%;
+			display: flex;
+			justify-content: space-between;
+
+			.name {}
+
+			.acea-row-item-bArea {
+				display: flex;
+				justify-content: space-between;
+			}
+		}
+	}
+}
+</style>

文件差异内容过多而无法显示
+ 575 - 495
pages/groupbuying/publish_group/index.vue


+ 98 - 121
pages/user/index.vue

@@ -104,82 +104,9 @@
 							<!-- #endif -->
 
 						</view>
-						<view class="num-wrapper">
-							<view class="num-item"
-								@click="goMenuPage('/pages/users/user_wallet/index')">
-								<text class="num">{{userInfo.redMoney || 0}}</text>
-								<view class="txt">{{$t('红包余额')}}</view>
-							</view>
-							<view class="num-item" @click="goMenuPage('/pages/users/user_green_integral/index')">
-								<text class="num">{{userInfo.ticket || 0}}</text>
-								<view class="txt">{{$t('绿色积分')}}</view>
-							</view>
-							<view class="num-item" @click="goMenuPage('/pages/users/user_red_integral/index')">
-								<text class="num">{{userInfo.integral || 0}}</text>
-								<view class="txt">{{$t('红色积分')}}</view>
-							</view>
-						</view>
-						<!-- <view class="sign" @click="goSignIn">签到</view> -->
-						<view class="cardVipA acea-row row-between-wrapper"
-							v-if="userInfo.svip_open && member_style==1">
-							<view class="left-box">
-								<view v-if="userInfo.vip_status == 1" class="small">{{$t('永久')}}</view>
-								<view v-else-if="userInfo.vip_status == 3" class="small">{{$t('会员到期')}}
-									{{ userInfo.overdue_time | dateFormat }}
-								</view>
-								<view v-else-if="userInfo.vip_status == -1" class="small">{{$t('已过期')}}</view>
-								<view v-else-if="userInfo.vip_status == 2" class="small">{{$t('未开通会员')}}
-								</view>
-							</view>
-							<view class="acea-row row-middle">
-								<navigator v-if="userInfo.vip_status == 1" url="/pages/annex/vip_paid/index"
-									hover-class="none" class="btn">{{$t('查看会员权益')}}</navigator>
-								<navigator v-else url="/pages/annex/vip_paid/index" hover-class="none" class="btn">
-									{{ userInfo.overdue_time ? $t('立即续费') : $t('立即激活') }}
-								</navigator>
-								<text class="iconfont icon-xiangyou"></text>
-							</view>
-						</view>
-						<view class="cardVipB acea-row row-between" v-if="userInfo.svip_open && member_style==3">
-							<view class="left-box acea-row">
-								<view class="pictrue">
-									<image src="../../static/images/member01.png"></image>
-								</view>
-								<view v-if="userInfo.vip_status == 1" class="small">{{$t('永久')}}</view>
-								<view v-else-if="userInfo.vip_status == 3" class="small">{{$t('会员到期')}}
-									{{ userInfo.overdue_time | dateFormat }}
-								</view>
-								<view v-else-if="userInfo.vip_status == -1" class="small">{{$t('已过期')}}</view>
-								<view v-else-if="userInfo.vip_status == 2" class="small">{{$t('未开通会员')}}
-								</view>
-							</view>
-							<view class="acea-row">
-								<navigator v-if="userInfo.vip_status == 1" url="/pages/annex/vip_paid/index"
-									hover-class="none" class="btn">{{$t('会员可享多项权益')}}</navigator>
-								<navigator v-else url="/pages/annex/vip_paid/index" hover-class="none" class="btn">
-									{{ userInfo.overdue_time ? $t('立即续费') : $t('立即激活') }}
-								</navigator>
-								<text class="iconfont icon-xiangyou btn"></text>
-							</view>
-						</view>
-					</view>
-					<view class="card-vip" v-if="userInfo.svip_open && member_style==2">
-						<view class="left-box">
-							<view class="big">{{$t('会员可享多项权益')}}</view>
-							<view v-if="userInfo.vip_status == 1" class="small">{{$t('永久')}}</view>
-							<view v-else-if="userInfo.vip_status == 3" class="small">{{$t('会员到期')}}
-								{{ userInfo.overdue_time | dateFormat }}
-							</view>
-							<view v-else-if="userInfo.vip_status == -1" class="small">{{$t('已过期')}}</view>
-							<view v-else-if="userInfo.vip_status == 2" class="small">{{$t('未开通会员')}}
-							</view>
-						</view>
-						<navigator v-if="userInfo.vip_status == 1" url="/pages/annex/vip_paid/index" hover-class="none"
-							class="btn">{{$t('查看会员权益')}}</navigator>
-						<navigator v-else url="/pages/annex/vip_paid/index" hover-class="none" class="btn">
-							{{ userInfo.overdue_time ? $t('立即续费') : $t('立即激活') }}
-						</navigator>
+
 					</view>
+
 					<view class="order-wrapper" :class="userInfo.svip_open?'':'height'">
 						<view class="order-hd flex">
 							<view class="left">{{$t('订单中心')}}</view>
@@ -203,20 +130,28 @@
 						</view>
 					</view>
 				</view>
-				<!-- 轮播 -->
-				<view class="slider-wrapper" v-if="imgUrls.length>0 && my_banner_status">
-					<swiper indicator-dots="true" :autoplay="autoplay" :circular="circular" :interval="interval"
-						:duration="duration" indicator-color="rgba(255,255,255,0.6)" indicator-active-color="#fff">
-						<block v-for="(item,index) in imgUrls" :key="index">
-							<swiper-item>
-								<view @click="goMenuPage(item.url)" class='slide-navigator acea-row row-between-wrapper'
-									hover-class='none'>
-									<image :src="item.pic" class="slide-image"></image>
-								</view>
-							</swiper-item>
-						</block>
-					</swiper>
-				</view>
+				<view class="block_6 flex-row justify-between">
+          <button class="button_1 flex-col" @click="goGroupbuying()">
+            <view class="image-text_21 flex-row justify-between" >
+              <image
+                class="icon_1"
+                referrerpolicy="no-referrer"
+                src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPngb5ec228231dcbaafc273b8f14d4aaf4e52ff8ad0300b43b8bbfaa70763ab7930"
+              />
+              <text class="text-group_1">发布团购</text>
+            </view>
+          </button>
+          <button class="button_3 flex-col" @click="goGroupbuying()">
+            <view class="image-text_22 flex-row justify-between">
+              <image
+                class="icon_10"
+                referrerpolicy="no-referrer"
+                src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPngd9fad8b68edd593d1b5d595b0d874e4327a5d03ad5a256dbed88a062ee8c99fe"
+              />
+              <text class="text-group_8">商品核销</text>
+            </view>
+          </button>
+        </view>
 				<!-- 会员菜单 -->
 				<view class="user-menus" style="margin-top: 20rpx;">
 					<view class="menu-title">{{$t('常用功能')}}</view>
@@ -255,40 +190,10 @@
 						<!-- #endif -->
 					</view>
 				</view>
-				<view class="user-menus" style="margin-top: 20rpx;" v-if="storeMenu.length">
-					<view class="menu-title">{{$t('商家管理')}}</view>
-					<view class="list-box">
-						<block v-for="(item,index) in storeMenu" :key="index">
-							<view class="item" :url="item.url" hover-class="none"
-								v-if="item.url!='#' && item.url!='/pages/service/index'"
-								@click="goMenuPage(item.url, item.name)">
-								<image :src="item.pic"></image>
-								<text>{{$t(item.name)}}</text>
-							</view>
-						</block>
-					</view>
-				</view>
-				<!-- <image :src="copyRightPic" alt="" class='support'></image> -->
-				<view class="uni-p-b-98"></view>
+
 			</scroll-view>
 		</view>
-		<view class="foot" v-if="is_diy && newData.status && newData.status.status">
-			<view class="page-footer" id="target" :style="{'background-color':newData.bgColor.color[0].item}">
-				<view class="foot-item" v-for="(item,index) in newData.menuList" :key="index" @click="goRouter(item)">
-					<block v-if="item.link == activeRouter">
-						<image :src="item.imgList[0]"></image>
-						<view class="txt" :style="{color:newData.activeTxtColor.color[0].item}">{{$t(item.name)}}</view>
-					</block>
-					<block v-else>
-						<image :src="item.imgList[1]"></image>
-						<view class="txt" :style="{color:newData.txtColor.color[0].item}">{{$t(item.name)}}</view>
-					</block>
-					<div class="count-num" v-if="item.link === '/pages/order_addcart/order_addcart' && cartNum > 0">
-						{{cartNum}}
-					</div>
-				</view>
-			</view>
-		</view>
+
 	</view>
 </template>
 <script>
@@ -492,6 +397,16 @@ export default {
 		this.onLoadFun();
 	},
 	methods: {
+				// 发布团购
+				goGroupbuying() {
+			if (this.isLogin == false) {
+				toLogin();
+			} else {
+				uni.navigateTo({
+					url: '/pages/groupbuying/publish_group/index'
+				})
+			}
+		},
 		getWechatuserinfo() {
 			//#ifdef H5
 			Auth.isWeixin() && Auth.toAuth('snsapi_userinfo', '/pages/user/index');
@@ -686,6 +601,7 @@ export default {
 			}
 
 		},
+
 		// 签到
 		goSignIn() {
 			uni.navigateTo({
@@ -1408,4 +1324,65 @@ body {
 	padding-bottom: constant(safe-area-inset-bottom);
 	padding-bottom: env(safe-area-inset-bottom);
 }
+
+
+
+
+
+
+
+
+.block_6 {
+	display: flex;
+  width: 343px;
+  margin-right: 1px;
+}
+.button_1 {
+  background-color: rgba(255, 247, 248, 1);
+  border-radius: 4px;
+  border: 1px solid rgba(178, 35, 56, 0.1);
+  padding: 16px 42px 16px 43px;
+}
+.image-text_21 {
+  width: 78px;
+}
+.icon_1 {
+  width: 14px;
+  height: 14px;
+  margin: 3px 0 3px 0;
+}
+.text-group_1 {
+  overflow-wrap: break-word;
+  color: rgba(178, 35, 56, 1);
+  font-size: 14px;
+  font-family: PingFangSC-Semibold;
+  font-weight: 600;
+  text-align: left;
+  white-space: nowrap;
+  line-height: 20px;
+}
+.button_3 {
+  background-color: rgba(255, 247, 248, 1);
+  border-radius: 4px;
+  border: 1px solid rgba(178, 35, 56, 0.1);
+  padding: 16px 42px 16px 43px;
+}
+.image-text_22 {
+  width: 78px;
+}
+.icon_10 {
+  width: 14px;
+  height: 14px;
+  margin: 3px 0 3px 0;
+}
+.text-group_8 {
+  overflow-wrap: break-word;
+  color: rgba(178, 35, 56, 1);
+  font-size: 14px;
+  font-family: PingFangSC-Semibold;
+  font-weight: 600;
+  text-align: left;
+  white-space: nowrap;
+  line-height: 20px;
+}
 </style>

部分文件因为文件数量过多而无法显示