uniapp 微信小程序 Ucharts设置字体大小和颜色
使用fontSize和fontColor设置颜色
"fontSize": 11,
"fontColor": "#9FA3AA",
opt...
yekong
3年前 (2022-04-08)
喜欢
uniapp微信小程序开发使用charts折线图, Ucharts需要隐藏折线图上面的label字段, 使用dataLabel:false实现。
dataLabel
<view class="charts-box">
<qiun-da...
yekong
3年前 (2022-04-08)
喜欢
最近使用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)
喜欢
vue获取路由参数方法 query
query
获取id this.$route.query
this.$route.query.id
...
yekong
3年前 (2022-04-06)
喜欢
只需要在package.json内对license添加“ISC”值即可
"license": "ISC",
...
yekong
3年前 (2022-04-04)
喜欢
正序日期排序
const ForwardRankingDate = (data, p) => {
for (var i = 0; i < data.length - 1; i++) {
for (var j = 0; j < data.length - ...
yekong
3年前 (2022-04-02)
喜欢
vue开发微信公众号页面,需要自定义分享连接。
安装依赖
npm i js-sha1 --save
npm i weixin-js-sdk --save
获取jsapi_ticket并签名
// 获取微信配置
export function getWxconfig(url) {...
yekong
3年前 (2022-04-02)
喜欢
组件对参数做处理并返回,判断参数是否为数字,如果是数字则带上元,如果没有则不带。
<template>
<div>
{{ newMoney }}
</div>
</template>
<script>
exp...
yekong
3年前 (2022-03-26)
喜欢