浏览代码

Signed-off-by: liuboyan <632697560@qq.com>
bug

liuboyan 4 年之前
父节点
当前提交
95bc39ac1e
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      pagesMain/openMember.vue

+ 4 - 4
pagesMain/openMember.vue

@@ -18,10 +18,10 @@
 				</view>
 			</u-cell-item>
 		</u-cell-group>
-		<u-popup v-model="couponShow" mode="bottom" border-radius="30" closeable>
+		<u-popup v-model="couponShow" mode="bottom" border-radius="30" closeable @click.native.stop="">
 			<scroll-view scroll-y style="height:300px;margin: 30px 0 15px 0;">
 				<u-card :show-head="false" :show-foot="false" padding="0px" margin="0px 30px 20px 30px" borderRadius="40" v-for="(item, index) in couponList"
-				 :key="index" class="class-card" @click="selectCoupon(item)">
+				 :key="index" class="class-card" @click.stop="selectCoupon(item)">
 					<view class="class-content" slot="body">
 						<view class="class-info-img">
 							<u-image width="60px" height="60px" :src="item.url" shape="circle"></u-image>
@@ -39,10 +39,10 @@
 			<text class="contract-link" @click="checkContract()">点击查看合同协议</text>
 			<u-button type="warning" shape="circle" :ripple="true" :custom-style="customStyle" @click="submitContract()">确定支付¥{{memberInfo.realPayAmount}}</u-button>
 		</view>
-		<u-popup v-model="studentShow" mode="bottom" border-radius="30">
+		<u-popup v-model="studentShow" mode="bottom" border-radius="30" @click.native.stop="">
 			<scroll-view scroll-y class="student-box">
 				<u-card :title="item.studentName" title-size="32" :head-style="cardStyle" :head-border-bottom="false" :show-foot="false"
-				 margin="10px" borderRadius="20" v-for="(item, index) in studentList" :key="index" @click="selectStudent(item)">
+				 margin="10px" borderRadius="20" v-for="(item, index) in studentList" :key="index" @click.stop="selectStudent(item)">
 					<view class="student-card" slot="body">
 						<view class="class-info-text">性别:{{item.sex}}&nbsp;&nbsp;年龄:{{item.age}}</view>
 					</view>