uniapp 开发app时,需要用到评论功能,当我们评论是,需要评论内容滚动到最新的地方,比如滚动到最底部。
<scroll-view id="scrollview" class="list" :scroll-top="sc...
yekong
3年前 (2022-05-27)
喜欢
vue element-plus input请求接口远程搜索
/**
* @Author: 858834013@qq.com
* @Name: labelList
* @Date: 2022-05-25
* @Desc: autocomplete远程搜索
*/
<templ...
yekong
3年前 (2022-05-27)
喜欢
vue3 element ui upload上传文件达到limit最大限制后隐藏上传框
修改前
修改后
/**
* @Author: 858834013@qq.com
* @Name: FileUpload
* @Date: 2022-05-26
* @Desc:
*/
&l...
yekong
3年前 (2022-05-26)
喜欢
/**
* @Author: 858834013@qq.com
* @Name: item
* @Date: 2022-02-28
* @Desc:
*/
<template>
<div @click="goApply" class=&...
yekong
3年前 (2022-05-26)
喜欢
:deep(.el-textarea__inner) {
outline: none;
border: none;
resize: none;
box-shadow: none
}
...
yekong
3年前 (2022-05-25)
喜欢
最近使用vue3 做项目,发现使用v-deep代码是灰色的,并且会有一个错误提示,于是搜索了一下,发现vue3的写法有一些变化,记录一下。
::v-deep usage as a combinator has been deprecated. Use :deep(<inne...
yekong
3年前 (2022-05-24)
喜欢
微信小程序,要求页面根据后台返回的权限列表进行显示
切换鉴权
底部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)
喜欢
uniapp微信小程序使用Echarts
pc效果
运行实例
代码
<template>
<div class="echarts1" ref="echarts">
</div>
</te...
yekong
3年前 (2022-05-22)
喜欢