|
|
@@ -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>
|