| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | 
							- <!-- 小弹窗 一行文字 -->
 
- <template>
 
- 	<uni-popup ref="tipSmallPopup" :animation="false" :is-mask-click="false"
 
- 	 mask-background-color="rgba(255, 255, 255, 0.6);">
 
- 	 <view class="ezy-tip-dialog tip-small-dialog">
 
- 		<view class="tip-content-box">
 
- 			<view class="tip-title">{{title}}</view>
 
- 			<view class="tip-content">{{content}}</view>
 
- 			<view class="tip-btn-box">
 
- 				<view class="not-confirm-btn" @click="handleClose"></view>
 
- 				<view class="confirm-btn" @click="confirmBtn"></view>
 
- 			</view>
 
- 		</view>
 
- 	 </view>
 
- 	</uni-popup>
 
- </template>
 
- <script setup>
 
- 	import { ref } from 'vue';
 
- 	const props = defineProps({
 
- 	  title: {
 
- 	    type: String,
 
- 	    default: '提示'
 
- 	  },
 
- 	  content: {
 
- 	    type: String,
 
- 		require: true,
 
- 	    default: ''
 
- 	  },
 
- 	});
 
- 	const tipSmallPopup = ref(null); // 索引
 
- 	const $emit = defineEmits(['confirm-btn'])
 
- 	// 打开弹窗
 
- 	function handleShow() {
 
- 		tipSmallPopup.value.open();
 
- 	}
 
- 	// 取消
 
- 	function handleClose() {
 
- 		tipSmallPopup.value.close();
 
- 	}
 
- 	// 确认
 
- 	function confirmBtn(){
 
- 		$emit('confirm-btn');
 
- 		tipSmallPopup.value.close();
 
- 	}
 
- 	defineExpose({
 
- 			handleShow
 
- 		})
 
- </script>
 
- <style>
 
- </style>
 
 
  |