更新记录
1.0.0(2023-11-13) 下载此版本
暂无更新
平台兼容性
Vue2 | Vue3 |
---|---|
√ | × |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.97 app-vue | × | √ | √ | × | × | × |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
× | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
× | × | × | × | × | × | × | × | × |
使用方法
插件内使用内置弹窗特效:
uni-popup
下载方式:
https://ext.dcloud.net.cn/plugin?name=uni-popup
官方文档:
https://uniapp.dcloud.net.cn/component/uniui/uni-popup.html#%E4%BB%8B%E7%BB%8D
<template>
<view class="content">
<imglst ref="childMethod" :Lnumber="Lnumber"/>
<view class="btn" @click="btn">提交</view>
</view>
</template>
<script>
import imglst from '@/components/imagelist.vue'
export default {
data() {
return {Lnumber: 6,} // 控制上传个数
},
components:{imglst},
methods: {btn(){console.log(this.$refs.childMethod.imageList,"图片列表")}}
}
</script>