微信小程序,要求页面根据后台返回的权限列表进行显示
切换鉴权
底部tab是自定义的进行切换前,判断是否有权限,没有权限则禁止切换
changeActive(name) {
if (!this.getMenu(name)) {
uni.$u.toast('您的权...
yekong
3年前 (2022-05-24)
喜欢
使用
<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)
喜欢