12345678910111213141516171819202122232425262728 |
- <template>
- <uni-popup ref="eggPopup" :animation="false" :is-mask-click="false"
- mask-background-color="rgba(255, 255, 255, 0.6);">
- <view class="study-egg-dialog">
- <view class="egg-content-box">
- <view class="egg-title"></view>
- <view class="egg-img"></view>
- <view class="egg-btn" @click="eggBtn"></view>
- </view>
- </view>
- </uni-popup>
- </template>
- <script setup>
- import { ref } from 'vue';
- const eggPopup = ref(null); // 索引
- // 打开弹窗
- function eggShow() {
- eggPopup.value.open();
- }
- // 开启提分之旅按钮
- function eggBtn(){
- eggPopup.value.close();
- }
- defineExpose({
- eggShow
- })
- </script>
|