uni-app
Lin'er jingle
这个作者很懒,什么都没留下…
展开
-
uni-app APP video层级
问题:uni-app写app,video组件层级很高,其他标签调z-idnex,也覆盖不了;解决:使用v-html指令解决<template> <view class="page"> <view class="container"> <view class="video"> <view class="httml" v-html="html"> </view> </view> </原创 2021-12-24 17:50:58 · 1522 阅读 · 3 评论 -
uni-app 使用html2canvas.js + uqrcode.js将页面内容(包含生成的二维码)合成图片
1. 下载html2canvas<-- npm -->npm i html2canvas --save<-- yarn -->yarn add html2canvas2. 下载image-tools<-- npm -->npm i image-tools --save<-- yarn -->yarn add image-tools3. 在插件市场下载html2canvas组件也可以使用下面代码<template> &原创 2021-12-24 16:57:23 · 2127 阅读 · 0 评论 -
uni-app web端input(file)上传文件
创建上传文件标签<view ref="input" class="input"> 附件上传</view>// uni-app input不支持type=“file”类型所以需要js创建mounted() { // 创建附件上传 var _self = this; var input = document.createElement('input');/...原创 2020-05-08 10:02:38 · 5743 阅读 · 3 评论