12 2021 档案

vue系列---【element ui table中render函数加if的使用】
摘要:摘要:在table中 某一列数据的字段展示不同,可以使用render函数加if实现效果 数据是这样的: data: [ { type: 0, }, { type: 0, }, { type: 0, children: [ { type: 1, }, { type: 1, }, ], }, { typ 阅读全文

posted @ 2021-12-29 14:03 码农小小海 阅读(489) 评论(0) 推荐(0)

vue系列---【vue swiper插件实现图片轮播效果】
摘要:参考以下网址:https://www.jianshu.com/p/5b66e647f211 阅读全文

posted @ 2021-12-29 13:49 码农小小海 阅读(65) 评论(0) 推荐(0)

vue系列---【sessionStorage的setItem和getItem使用】
摘要:#### 一、vue文件使用sessionStorage:(简单存值取值) 1.存储数据:sessionStorage.setItem('取得k的名字','要存储的值') ```vue sessionStorage.setItem('loadClaim','this.node') ``` 2.获取数 阅读全文

posted @ 2021-12-29 13:39 码农小小海 阅读(4033) 评论(0) 推荐(0)

vue系列---【watch的使用方法及immdiate、deep解决组件传值中数据改变视图不更新等常见问题】
摘要:摘要:在vue页面中 组件之间的传值 务必会使用watch方法监听传过来的值,根据值得变化做相应的逻辑变化,但是使用watch 会遇到 数据改变,视图不更新的问题、数据不发生变化 无法触发watch里边的逻辑等两个常见的问题 解决方案:watch中的immdiate和deep两个属性就能解决以上问题 阅读全文

posted @ 2021-12-29 11:08 码农小小海 阅读(834) 评论(0) 推荐(0)

vue系列---【element ui 处理图片流及实现多张图片轮播】
摘要:<template> <div v-viewer="viewOps"> <el-carousel :indicator="false" :autoplay="false"> <el-carousel-item v-for="(img,index) in images" :key="index"> < 阅读全文

posted @ 2021-12-27 14:59 码农小小海 阅读(3022) 评论(2) 推荐(0)

vue系列---【element ui 行内三元表达式的使用及实现行内switch按钮加文字】
摘要:<template> <el-table :data="tableData"> <el-table-column prop="invChecked" label="审核状态"> <template slot-scope="scope"> <span>{{scope.row.invChecked "0 阅读全文

posted @ 2021-12-27 14:12 码农小小海 阅读(1205) 评论(0) 推荐(0)

vue系列---【post 和 get 请求书写及使用】
摘要:1.先引入request: import request from "@utils/request" 2.导出POST请求 export function listPost(params){ return request({ url:'url', method:'POST', data:{ ​ .. 阅读全文

posted @ 2021-12-27 10:39 码农小小海 阅读(471) 评论(0) 推荐(0)

vue系列---【vue+element 三元表达式多条件实现功能】
摘要:<el-table-column min-width="80" prop="invChecked" label="审核状态" align="center"> <template slot-scope = "scope"> <span>{{scope.row.invChecked '0' ?'未审核' 阅读全文

posted @ 2021-12-02 13:56 码农小小海 阅读(555) 评论(0) 推荐(0)

vue系列---【行内使用三元表达式添加样式】
摘要:<span :style="{'display':isshow ? 'block':'none'}" >动态绑定样式</span> 阅读全文

posted @ 2021-12-02 13:44 码农小小海 阅读(703) 评论(0) 推荐(0)

导航