插件地址
用来选择城市
<template>
<view style="text-align: center; padding-top: 200px;">
<picker @change="ge...
yekong
3年前 (2021-11-19)
喜欢
padding-top: var(--status-bar-height);
...
yekong
3年前 (2021-11-18)
喜欢
var obj = {'0':'a','1':'b','2':'c'};
Object.keys(obj).forEach(function(key){
console.log(key,obj[key]);
});
for (let key in type) {
...
yekong
3年前 (2021-11-09)
喜欢
微信小程序使用qiun-data-charts 做的表格,因为一些功能不能同时出现,需要将两个charts重叠在一起,但是使用zindex无法控制两个表格的层级,后来发现,是按照代码顺序加载的,下面的代码层级比上面的代码层级高
...
yekong
3年前 (2021-10-19)
喜欢
let system = uni.getSystemInfoSync(); // 获取系统信息
if (system.platform === 'android') { // 判断平台
var...
yekong
3年前 (2021-10-02)
喜欢
openURL() {
// #ifdef APP-PLUS
plus.runtime.openURL(this.href)
// #endif
// #ifdef H5
...
yekong
3年前 (2021-09-30)
喜欢
legend图标
通过icon设置图标
circle圆形
rect 方形
roundRect 圆角方形
triangle 三角形
diamond 棱形
pin 水滴
arrow箭头
none 无图标
legend: {
data: ["已解决"...
yekong
3年前 (2021-09-07)
喜欢
使用in来判断对象中是否包含某个值
let obj = {
a: 'ceshi',
b: 'wanjunshijie'
}
console.log('a' in obj)
console.log('x'...
yekong
3年前 (2021-09-06)
喜欢
let arr = ['ceshi', 'wanjun', 'wanjunshijie']
function fun(a, b, c) {
console.log(a, b, c)
}
fun(...arr)
执行结果...
yekong
3年前 (2021-09-06)
喜欢
let json = {
a: 'wanjunshijie',
b: '完俊世界'
}
function fun({a, b = 'web'}) {
console.log(a, b)
}
fun(jso...
yekong
3年前 (2021-09-06)
喜欢