更新记录
1.0.0(2023-11-13) 下载此版本
暂无更新
平台兼容性
uni-app
Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
---|---|---|---|---|---|---|---|---|
√ | - | - | - | √ | × | - | - | - |
微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
---|---|---|---|---|---|---|---|---|---|---|
√ | √ | - | - | - | - | - | - | - | - | - |
使用方法
插件内使用内置弹窗特效:
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>