2021年12月27日

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 码农小小海 阅读(3016) 评论(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 码农小小海 阅读(1192) 评论(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 码农小小海 阅读(465) 评论(0) 推荐(0)

导航