通过zoom 控制
{ // 地图块的相关信息
type: 'map',
map: nameMap,
zoom: 1.2...
yekong
3年前 (2021-12-26)
喜欢
uniapp开发每次设置性别都要重新写,很耗费时间干脆把写过的记录下来,下次可以直接复用。
html
<view @click="show=true" class="justify-between group_8">
...
yekong
3年前 (2021-12-25)
喜欢
案例地址
<template>
<div class="echarts1" ref="echarts">
</div>
</template>
<script>
i...
yekong
3年前 (2021-12-25)
喜欢
vue Echarts 地图 组件使用实例
链接: 提取码: rxk6
<template>
<div class="echarts1" ref="echarts">
</div>
<...
yekong
3年前 (2021-12-25)
喜欢
vue 进度条 组件使用演示
vue项目中需要一个进度条占比效果,将实现方法记录下来,留待复用。
2023年03月31日遇到了复用的机会,不过感觉单调了一些,所以在之前的基础上增加了一个动画效果。vue 占比动画进度条实例效
更多进度条效果实例
vue 数据可视化大屏进度条效果...
yekong
3年前 (2021-12-25)
喜欢
function gettotal(listdata) {
let total = 0
listdata.forEach((type) => {
total = total + type
});
return total
}
...
yekong
3年前 (2021-12-22)
喜欢
function gettotallist(listdata) {
let total = 0
var list2 = listdata;
var list = []
listdata.forEach((type) => {
...
yekong
3年前 (2021-12-22)
喜欢
js
$('.tabsinner').click(function () {
var i = $(this).index();//下标第一种写法
//var i = $('tit').index(t...
yekong
3年前 (2021-12-18)
喜欢
可能数据量太大内容有不规范的地方导致数组无法遍历造成的
Array.from()可以将数据转换成真正的数组
var data = Array.from(that.data)
data.forEach((type, index) => {
...
yekong
3年前 (2021-12-14)
喜欢
第一种方法
getqx (e) {
var data = this.qx
var isshow = false
data.forEach((type) => {
if (e == type) {
...
yekong
3年前 (2021-12-12)
喜欢