使用
<tabLine :list="tablist" :active.sync="active"></tabLine>
tablist: [{
name: '全部',
id: -1
}, {
name: '...
yekong
3年前 (2022-05-23)
喜欢
uniapp uview u-checkbox复选二次封装
使用
<checkboxCom :value.sync="is_virtul"></checkboxCom>
代码封装
/**
* @Author: 858834013@qq...
yekong
3年前 (2022-05-23)
喜欢
最新版本的Ucharts支持,目前还不支持自定义换行
<template>
<view class="charts-box">
<qiun-data-charts
type="ring&quo...
yekong
3年前 (2022-05-22)
喜欢
微信小程序涉及到用户信息收集的地方,都需要同意协议,每次都要手动写一遍,好麻烦,干脆封装成一个小组件,直接复用好了。
使用
<agreement :select.sync="select"></agreement>
验证
if (!...
yekong
3年前 (2022-05-18)
喜欢
使用到的组件
uniapp uview 滑动显示删除按钮
html
<u-swipe-action>
<u-swipe-action-item @click="getDelete($event,item)" :key='inde...
yekong
3年前 (2022-05-18)
喜欢
代码
<input confirm-type="search" @confirm="getdata" type="text" v-model="data.KeyWord" placeholde...
yekong
3年前 (2022-05-17)
喜欢
记录生成二维码数据处理方式,方便后期查询
getUn() {
var that = this;
getUn({
page: this.page,
width: 200,
scene: this.userId
}).then(r...
yekong
3年前 (2022-05-16)
喜欢
uniapp开发app需要配置隐私政策。
打开manifest.json->App启动界面配置->原生隐私政策提示框
勾选原生隐私政策提示框
uniapp app 开启原生隐私政策配置
...
yekong
3年前 (2022-05-16)
喜欢
官方配置文档
配置文档
配置说明
注意!androidPrivacy.json不要添加注释,会影响隐私政策提示框的显示!!!
勾选后会在项目中自动添加androidPrivacy.json文件,可以双击打开自定义配置以下内容:
{
"version":...
yekong
3年前 (2022-05-16)
喜欢
客户要求对他人的项目做一些调整,但是看到页面的代码,实在是难受,这些变量参数,来回赋值,看得脑壳疼,实在受不了了,就做了一些重构,不断的学习优化代码,尽量将代码写的优美一些,不给人带来困扰。
重构前
<template>
<view class="c...
yekong
3年前 (2022-05-14)
喜欢