最近使用uniapp开发微信小程序,在使用Ucharts时,无论怎么点击就是不显示tooltip,在其他页面又显示正常,研究了一下午,发现是使用了scroll-view。
去掉scroll-view,不在scroll-view内使用就可以了。
...
yekong
3年前 (2022-04-08)
喜欢
组件代码
<template>
<div class="tabs">
<div class="tab cur" :class="{active:active==index}" @cl...
yekong
3年前 (2022-04-08)
喜欢
dialog弹窗追加一个class用以单独控制某个dialog的宽度和样式。
通过custom-class追加class
custom-class
<el-dialog
title=" "
append-to-body
...
yekong
3年前 (2022-04-08)
喜欢
每次uniapp开发使用秋云UCharts图表都需要手动搜索去找,记录一下避免总是搜索。
截图图片
文档地址
文档地址
uniapp插件地址
uniapp插件地址
用法
<view class="charts-box">
<qiun...
yekong
3年前 (2022-04-07)
喜欢
uniapp微信小程序开发中使用图表
环形图
代码
html
<qiun-data-charts :opts="opts" type="ring" :chartData="chartData" backgroun...
yekong
3年前 (2022-04-07)
喜欢
uniapp开发可能会用到的列表样式 记录方便后期可能复用
<div class="list">
<div class="listItem" v-for="(item,index) in package...
yekong
3年前 (2022-04-07)
喜欢
uniapp 微信小程序开发一个微信小程序有四个角色,一个账号可以拥有4个角色,要求角色权重依次是1>2>3>4,有1类型就优先跳转1,有2和3就优先跳2
gopage() {
var that = this;
that.listtype = [...
yekong
3年前 (2022-04-06)
喜欢
uniapp开发微信小程序时,经常遇到小程序发布了新版本,但是用户手机的app仍然是旧版本的,需要手动删除重新进入才可以。
解决办法
在App.vue onShow内加入以下代码:
const updateManager = uni.getUpdateManager();
...
yekong
3年前 (2022-04-06)
喜欢
vue获取路由参数方法 query
query
获取id this.$route.query
this.$route.query.id
...
yekong
3年前 (2022-04-06)
喜欢
单页模板扒手
以前做前端时,经常需要下载一些网页,偶然间找到的一个小工具,很实用,不过随着网页都从http变为了https,这个单页模板扒手反而用不了,不过自己的技术也在随着时间的流逝不断积累,在学python是就想着也做一个类似的小工具。并且行动了。
python-html-...
yekong
3年前 (2022-04-05)
喜欢