zhaogongxue 1 year ago
parent
commit
f69678ca98
3 changed files with 20 additions and 4 deletions
  1. 2 0
      main.js
  2. 9 4
      pages/index/index.vue
  3. 9 0
      utils/share.js

+ 2 - 0
main.js

@@ -7,6 +7,8 @@ import store from './store'
 import uView from "uview-ui";
 import amap from './common/amap-wx.js';
 import url from "./common/url.js"
+import share from './utils/share.js'
+Vue.mixin(share)
 Vue.use(uView);
 
 Vue.prototype.$store = store

+ 9 - 4
pages/index/index.vue

@@ -86,7 +86,7 @@
 				<image style="width: 650rpx;height: 650rpx;" :src="config.service_code" mode=""></image>
 			</view>
 		</u-popup>
-		<u-popup v-if="couponlist>0" v-model="youhui" mode="center" border-radius="20" v-if="coupon == 0">
+		<u-popup v-if="couponlist.length>0 && coupon == 0" v-model="youhui" mode="center" border-radius="20" >
 			<view style="font-size: 0;">
 				<view class="back">
 					<scroll-view scroll-y style="height: 330rpx;" :show-scrollbar="false">
@@ -140,6 +140,7 @@
 				youhui: false,
 				couponlist: [],
 				coupon: 0,
+				pan:""
 			}
 		},
 		onLoad() {
@@ -169,7 +170,6 @@
 			toyouhui() {
 				if (uni.getStorageSync("token")) {
 					this.$u.post('/api/Member/receive_coupon').then(res => {
-						console.log(res);
 						setTimeout(() => {
 							uni.reLaunch({
 								url: "/pages/mine/youhui"
@@ -212,8 +212,12 @@
 				this.time = setInterval(() => {
 					if (this.s == 0) {
 						this.showguanggao = false
-						this.youhui = true
-						// if (this.guanggaolist > 0) {
+						if(this.pan == 1){
+							this.youhui = false
+						}else{
+							this.youhui = true
+						}
+						// if (this.guanggaolist.length > 0) {
 						// 	this.youhui = true
 						// }
 						clearInterval(this.time)
@@ -345,6 +349,7 @@
 			closeguanggao() {
 				this.showguanggao = false
 				this.youhui = true
+				this.pan = 1
 			}
 		}
 	}

+ 9 - 0
utils/share.js

@@ -0,0 +1,9 @@
+export default {
+	data() {
+		return {}
+	},
+	//1.发送给朋友
+	onShareAppMessage() {},
+	//2.分享到朋友圈
+	onShareTimeline() {},
+}