Element
yjxfox
享受生活创意设计,创意产品,创意家居,创意广告,创意图片,网页设计,摄影作品,包装设计,引导视觉创意,为设计师们提供更好的信息平台。
展开
-
vuejs el-pagination 分页数据渲染
<!-- 分页 --><div class="pagination" v-if="totality*pageSizeCount > 1" :class="{'dn':this.totality <= 1}"> <el-pagination background @current-change="handleCurrentChange" :current-page="pageNum" :total="totality" layout="total, pre.原创 2021-03-09 10:24:34 · 489 阅读 · 1 评论 -
记 elementui switch开关中显示文字问题
我想要的效果官网提供的效果<el-table-column label="销售状态" min-width="10%"> <template slot-scope="scope"> <el-switch class="switchStyle" v-model="scope.r...转载 2019-05-08 10:45:24 · 5549 阅读 · 0 评论 -
Vue 在el-menu中导航栏实现方式
在el-menu中加上router参数,同时el-menu-item 中index直接写上链接地址,default-active="/home" 设置默认选中状态源代码如下:<el-menu default-active="/home" router> <el-menu-item index="/home"><...原创 2019-05-10 14:32:49 · 3981 阅读 · 0 评论 -
Vuejs element table 表格添加,删除
Html 部份<el-table :data="tableData" style="width: 100%"> <el-table-column type="index" label="排序" min-width="20"> </el-table-column> ...原创 2019-05-24 18:34:13 · 409 阅读 · 0 评论 -
Vue.js element-ui date-picker日期选择后格式化为yyyy-mm-dd格式
项目中需要的日期格式为yyyy-mm-dd,但是我们在使用的element-ui的 日期选择器后默认的时间格式为Fri Sep 07 2018 00:00:00 GMT+0800 (中国标准时间)折腾了半天找到一种完美的方法,这记载datepicker中添加一句value-format=”yyyy-MM-dd” 即可,以下这样:<el-date-picker v-model=...原创 2019-05-16 17:18:13 · 3150 阅读 · 0 评论 -
Vuejs 实现Element - tableData 列表排序上下移动
el-tabel 列表项实现上移,下移,删除功能结合Element组件,scope中有三个参数(row,cow,$index)分别表示行内容、列内容、以及此行索引值,table上绑定数组 :data=“newsList”。上移和下调两个按钮,并绑定上点击函数,将此行的索引值(scope.$index)作为参数:<template> <el-table ...转载 2019-05-28 16:24:13 · 2444 阅读 · 0 评论