uniapp微信小程序开发 结合uview实现绑定银行卡ui,包含接口请求
<template>
<view class="flex-col page">
<view class="flex-col group_5...
yekong
3年前 (2022-01-14)
喜欢
页面ui
结合iview 接口调用加富文本渲染
<template>
<view class="flex-col page">
<view class="flex-col group_5">
...
yekong
3年前 (2022-01-14)
喜欢
uniapp微信小程序开发 结合提示uniapp 使用uview2实现提示后跳转
<text class="text_22" @click="logout">退出登录</text>
<u-to...
yekong
3年前 (2022-01-14)
喜欢
mac设置默认的视频播放器
右键视频找到显示简介
找到打开方式 选择播放器就可以了。
...
yekong
3年前 (2022-01-13)
喜欢
vue filters过滤器 通过list下标返回内容
前提是参数是列表下标是一一对应的。
getuserType(e) {
var list = ['用户', '商户', '管理员', '优选', '企业']
return list[e]
...
yekong
3年前 (2022-01-13)
喜欢
vue filters过滤器使用switch实现判断显示
gettype(e) {
let str = ''
switch (e) {
case 1:
// 代码块
str = '平台托管'
...
yekong
3年前 (2022-01-13)
喜欢
<template>
<view class="flex-col page">
<view class="flex-col group_5">
<view class="ju...
yekong
3年前 (2022-01-12)
喜欢
在一些情况下父类的面积太大,但是又需要父类遮挡住的区域允许穿透点击,但是父类下的子类不允许穿透,要可以点击到。
给子类单独写一下就可以了。
.fu {
pointer-events: none;
}
.zi{
pointer-events: initial;
}
...
yekong
3年前 (2022-01-12)
喜欢
vue开发展开收缩动画效果
运行实例
代码
<template>
<div class="renyuan">
<div class="renyuanuser cur" v-show="...
yekong
3年前 (2022-01-12)
喜欢
这里的图标使用的font-awesome,所以使用前需要先安装font-awesome字体图标组件
移出旧图标
tree 有单独设置图标的方法icon-class ,但是需要设置两个不一样的图标,所以就不用他的方法了。置空就可以了。
icon-class=" &quo...
yekong
3年前 (2022-01-11)
喜欢