uniapp 微信小程序开发时经常是需要用到客服按钮,但是客服按钮的样式需要自定义,每次都需要手动调整样式,为了节省时间,干脆封装成组件,直接专注自己代码样式就可以了。
<template>
<button open-type="contact&qu...
yekong
3年前 (2022-01-15)
喜欢
<template>
<view>
<u-popup :show="show" mode='center' @close="close">
<view class="upgr...
yekong
3年前 (2022-01-15)
喜欢
uniapp小程序开发
加接口调用逻辑
<template>
<view class="flex-col page">
<view class="flex-col group_5">
&l...
yekong
3年前 (2022-01-14)
喜欢
uniapp小程序开发
u--textarea 自定义背景色。
<template>
<view class="flex-col page">
<view class="flex-col group_5"...
yekong
3年前 (2022-01-14)
喜欢
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)
喜欢