posted @ 2021-12-06 15:38
随笔分类 - Elemenet-ui
摘要:方法1该提示说的是 form表单需要一个绑定一个 对象(使用:model=“editform” 不能使用v-model=“editform”), (我就是这个写错了)同时v-model=“multipleSelectionStudent” 的multipleSelectionStudent一定一定一
阅读全文
摘要:记录一次无语的bug,找了半天代码,最后发现是css写的问题 bug效果如下 但是我发现element-ui的例子中并没有出现这种问题,,最后一段排查, 发现 我给这个表格加了一个css样式, .el-table tr:hover { background: none; } 鼠标移入行的时候,去掉了
阅读全文
posted @ 2021-10-29 10:50
摘要:在main.js中 import {MessageBox } from 'element-ui'; Vue.use(MessageBox ); Vue.prototype.$msgbox = MessageBox; 导致一进入页面,就会出现一个消息弹框 原因是:不应该写第二句 Vue.use(Mes
阅读全文
posted @ 2021-06-04 11:34
摘要:一 / 使用确认组件时候 this.$confirm('确认移除', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { this.deleteFn("removeGroup
阅读全文
posted @ 2020-11-18 17:28
摘要:原因:通过打印,发现,直接使用expend的 @expand-change 事件的时候,展开之后,才会进行表格数据的请求,这是导致数据不能够进行正常渲染的原因 <el-table :data="bussinessLists" class="m-r-t-10" :expand-row-keys="ex
阅读全文
posted @ 2020-07-23 11:44