<template>
<view>
<uni-popup ref="popupRef" type="bottom">
<view class="" style="height: 200rpx;background-color: #fff;">
<uni-data-picker :localdata="items" popup-title="请选择班级" ></uni-data-picker>
</view>
</uni-popup>
</view>
</template>
<script setup>
import {ref} from 'vue'
const popupRef=ref()
const items=ref([{
text: "一年级",
value: "1-0",
children: [
{
text: "1.1班",
value: "1-1"
},
{
text: "1.2班",
value: "1-2"
}
]
},
{
text: "二年级",
value: "2-0"
},
{
text: "三年级",
value: "3-0"
}])
setTimeout(()=>{
popupRef.value.open()
},500)
</script>
<style>
</style>
1 个回复
7***@qq.com (作者)
补充:小程序,app这些都会