更多进度条效果实例
vue 数据可视化大屏进度条效果实例
<template>
<div class="centerpr">
<div class="centerprs">
&l...
yekong
3年前 (2021-12-08)
喜欢
width: 12px;
height: 90px;
background: linear-gradient(0deg, #F89B00 0%, #FFC547 100%);
...
yekong
3年前 (2021-12-08)
喜欢
定义
<slot name="title"></slot>
使用
<div slot="title" class="downx">
</div>
使用
<temp...
yekong
3年前 (2021-12-08)
喜欢
<input type="text" placeholder="请输入户名" placeholder-style="font-size:26rpx;color:rgba(203, 203, 203, 1);" /...
yekong
3年前 (2021-12-07)
喜欢
uniapp开发时,需要一个进度组件,存个模板,方面后期复用
<template>
<view class="schedule">
<div class="scheduleitem" ...
yekong
3年前 (2021-12-05)
喜欢
源插件地址
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)
喜欢