更新记录
1.0.0(2021-08-22)
下载此版本
1.0.0 上传组件
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.1.0 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
鸿蒙元服务 |
× |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
zetank-Dynamic-poster
生成朋友圈日记海报 组件,组件使用uview,使用前请自己安装插件uview
安装
下载组件到项目即可,本组件符合easycom规范
使用
<button @click="popup">显示海报</button>
<uni-popup ref="popup" type="center">
<view class="center_poter" style="margin: 0 auto;" v-if="postershow">
<zetank-Dynamic-poster text="内容" img='' name='' avatarurl="" data="" url="" title="标题"></zetank-Dynamic-poster>
</view>
</uni-popup>
export default {
data() {
return {
postershow:false,
}
},
methods: {
popup(){
this.$refs.popup.open()
this.postershow=true
}
}
}