源插件地址
uniapp开发app需要一个启动页轮播切换效果,因为源插件效果,不太符合自己的需求,所以在原代码的基础上微调了一下
guide页面代码
<template>
<view>
<view class="s...
yekong
3年前 (2021-12-05)
喜欢
最近有个vue项目开发时要求Echarts在请求接口前需要有个加载动画,请求完数据后隐藏动画,于是收集了一下代码
显示加载动画
chart.showLoading() //显示加载动画,默认样式
隐藏加载动画
myChart.showLoading({
text...
yekong
3年前 (2021-12-04)
喜欢
<template>
<div class="echarts1">
<div class="echarts2" ref="echarts">
</div&g...
yekong
3年前 (2021-12-04)
喜欢
computed: {
list2: function () {
let total = 0
var list2 = this.list;
var list = []
this.list.forEach((type) ...
yekong
3年前 (2021-12-04)
喜欢
Vue开发时,经常会遇到写切换,每次都要手写一般很累人,存个备份留待后期复用。
<template>
<div class="tabs">
<div class="tab cur" :class=...
yekong
3年前 (2021-12-04)
喜欢
uniapp开发时,有的页面需要是富文本字体,比如用户协议页面,但是又要求是特殊字体的怎么设置呢。
<u-parse :content="user" :tagStyle="style"></u-parse>
dat...
yekong
3年前 (2021-12-03)
喜欢
uniapp开发时,需要实现一些特殊的导航效果,自己手写又会有很多bug,这是可以结合一些现成的ui组件来实现我们想要的效果。
<template>
<u-navbar title=" " bgColor="rgba(0,...
yekong
3年前 (2021-12-03)
喜欢
可以获取到当前网页宽度和当前网页高度
mounted() {
window.addEventListener('resize', this.getHeight)
},
methods: {
getHeight(e) {
con...
yekong
3年前 (2021-12-03)
喜欢
let token = uni.getStorageSync('token');
uni.downloadFile({
url: 'downurl,
filePath:...
yekong
3年前 (2021-12-03)
喜欢
echarts大屏项目有时候为了效果需要让pie进行颜色渐变。
getecharts() {
window.addEventListener("resize", function () {
myChar...
yekong
3年前 (2021-12-03)
喜欢