liAnran

博客园 首页 新随笔 联系 订阅 管理

随笔分类 -  element'Ui

摘要:在element-ui中的组件函数钩子一般都是自带参数如: API中解释:on-remove 文件列表移除文件时的钩子 function(file, fileList) 也就是上面的beforeRemove函数自带file, fileList这两参数 那么想要带自己的参数呢,,尤其一般在表格中的上传 阅读全文
posted @ 2019-08-22 17:46 liAnran 阅读(1543) 评论(0) 推荐(1) 编辑

摘要:通过this.$forceUpdate() 可以解决这个问题: 虽然问题解决了,但是并不知道为什么出现这样的情况。 阅读全文
posted @ 2019-08-22 17:16 liAnran 阅读(945) 评论(0) 推荐(0) 编辑

摘要:beforeAvatarUpload(file) { const isLt3M = file.size / 1024 / 1024 < 3; if (!isLt3M) { this.$message.error("上传宝贝详情图片大小不能超过 3MB!"); } let _this = this; 阅读全文
posted @ 2019-07-19 16:18 liAnran 阅读(4388) 评论(0) 推荐(0) 编辑

摘要:html: <el-form-item label="所属分类" prop="speconeclass"> <el-select v-model="topform.speconeclass" size="mini" placeholder="请选择一级分类"> <el-option v-for="i 阅读全文
posted @ 2019-05-30 18:03 liAnran 阅读(638) 评论(0) 推荐(0) 编辑