上一页 1 ··· 5 6 7 8 9 10 11 12 下一页

2020年7月22日

摘要: 由于表格由后台返回的数据,根据不同的类型,显示不同的方式, 第一种方法:针对select,使用@change和$forceUpdate 来解决(无法解决input是动态生成的v-model的问题,可以使用下面的第二种方式) <el-table-column v-for="(icolm,icolx) 阅读全文

posted @ 2020-07-22 15:05 凡凡0410 阅读(3814) 评论(0) 推荐(0) 编辑


2020年7月21日

摘要: var uidArr = textarea.split(/[(\r\n)\r\n]+/); 阅读全文

posted @ 2020-07-21 15:00 凡凡0410 阅读(620) 评论(0) 推荐(0) 编辑


2020年7月3日

摘要: 背景:在原项目上新安装一个依赖,结果报错了,我就直接把整个node_module移除了,重新安装,npm install的时候,开始出坑~!! 快速移除node_module的方法 npm install rimraf -g (如果已经安装过就忽略这一步) rimraf node_modules ! 阅读全文

posted @ 2020-07-03 17:11 凡凡0410 阅读(2379) 评论(0) 推荐(1) 编辑


2020年7月1日

摘要: 首先是在页面引入 import { mavonEditor } from 'mavon-editor' import 'mavon-editor/dist/css/index.css' data 中定义option markdownOptionAll:{ bold: true, // 粗体 ital 阅读全文

posted @ 2020-07-01 18:48 凡凡0410 阅读(1455) 评论(0) 推荐(0) 编辑

摘要: <div class="pagination" v-if="pageshow"> <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page.sync="cur_ 阅读全文

posted @ 2020-07-01 17:37 凡凡0410 阅读(5068) 评论(0) 推荐(0) 编辑

摘要: body .el-table th.gutter { display: table-cell !important } 阅读全文

posted @ 2020-07-01 17:14 凡凡0410 阅读(1084) 评论(0) 推荐(0) 编辑

摘要: mounted(){ history.pushState(null, null, document.URL); window.addEventListener('popstate', function () { history.pushState(null, null, document.URL); 阅读全文

posted @ 2020-07-01 17:07 凡凡0410 阅读(1310) 评论(0) 推荐(0) 编辑


2020年6月30日

摘要: 参考了网上的例子,结合实际,记录 实现原理: 通过向series最后插入一个对象,该对象中的data是总和的集合,如下图 红色部分是原始数据,绿色部分是插入的最后一条数据(柱图的颜色透明化,所以看不到),展示的数字其实是最后一个的label,展示在内部的最左部分, 这样的话,实际看起来就会显的页面占 阅读全文

posted @ 2020-06-30 14:58 凡凡0410 阅读(1110) 评论(0) 推荐(0) 编辑


2020年6月29日

摘要: 1 <el-table :data="tableData" border class="table" header-cell-class-name="table-header" > 2 <el-table-column prop="name" label="名称" min-width="260" h 阅读全文

posted @ 2020-06-29 10:26 凡凡0410 阅读(6453) 评论(0) 推荐(0) 编辑


2020年6月28日

摘要: 需要安装的 cnpm install element-ui -S cnpm install babel-plugin-import --save npm install babel-plugin-component -D 然后在babel.config.js中 module.exports = { 阅读全文

posted @ 2020-06-28 10:53 凡凡0410 阅读(402) 评论(0) 推荐(0) 编辑


上一页 1 ··· 5 6 7 8 9 10 11 12 下一页

Copyright © 2024 凡凡0410
Powered by .NET 9.0 on Kubernetes