shish 6 months ago
parent
commit
45e7cf46c5

+ 5 - 2
hdApp/src/admin/billing/components/hb-select.vue

@@ -11,7 +11,7 @@
         </view>
 
 		<!-- Popup -->
-		<uni-popup ref="popup" type="bottom" background-color="#f5f5f5">
+		<uni-popup ref="popup" type="bottom" background-color="#f5f5f5" class="class-popup-style">
 			<view class="hb-popup-content">
 				<view class="popup-header">
 					<text>红包</text>
@@ -120,7 +120,7 @@ export default {
 	methods: {
 		openPopup() {
 			this.currentSelectedId = this.value; // Reset to current value when opening
-			this.$refs.popup.open();
+			this.$refs.popup.open('center');
 		},
 		closePopup() {
 			this.$refs.popup.close();
@@ -311,4 +311,7 @@ export default {
 	height: 80upx;
 	line-height: 80upx;
 }
+.class-popup-style{
+	z-index:99999;
+}
 </style>

+ 1 - 1
hdApp/src/admin/member/detail.vue

@@ -157,7 +157,7 @@
             <view class="tui-title">下单记录</view>
         </tui-list-cell>
         <tui-list-cell @click="pageTo({ url: '/admin/hb/list?customId='+data.id + '&customName='+data.name })" class="line-cell" :hover="false" :arrow="true" >
-            <view class="tui-title">红包记录</view>
+            <view class="tui-title">红包列表</view>
         </tui-list-cell>
         <tui-list-cell @click="pageTo({ url: '/admin/custom/levelChange?id='+data.id })" class="line-cell" :hover="false" :arrow="true" >
             <view class="tui-title">等级变动</view>