随笔分类 - Element UI
摘要::wrapperClosable="false"
阅读全文
摘要:.page-form-item-required-no .el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before { content: '' !important; } <el-form ref="elFor
阅读全文
摘要:<el-table ref="pageTable" :data="tableData" border style="width: 100%" :summary-method="getSummaries" show-summary > 不考虑保留小数 getSummaries(param) { con
阅读全文
摘要:解决方案,使用强更新机制强行更新页面视图 重点 @change="$forceUpdate()" 强制更行页面 如果不行 进行结构重新赋值 changFn() { // 页面不刷新 this.uniqueValueList = [...this.uniqueValueList]; },
阅读全文
摘要:@sort-change="changeTableSort" changeTableSort (column) { const fieldName = column.prop; const sortingType = column.order; let tableData = [...this.ta
阅读全文
摘要:toggleRowExpansionAll (data, isExpansion) { data.forEach((item) => { this.$refs.tableCheck.toggleRowExpansion(item, isExpansion); if (item.children !=
阅读全文
摘要:解决:新增/编辑赋值的时候,所有明明有值校验不通过的属性使用$set赋值 this.$set(this.form, "属性名", "");// 新增置空 this.$set(this.form, "属性名", row.shuxing);// 编辑赋值
阅读全文
摘要:<!-- Vue SFC --> <template> <div class="propor-box"> <div class="p20"> <div> <el-carousel :interval="5000" arrow="always" height="250px"> <el-carousel
阅读全文
摘要:<el-date-picker v-model="dateRange" size="small" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder
阅读全文
摘要:/* 数据量大与遮罩交互冲突优化 */ .v-modal.v-modal-leave{ display: none; }
阅读全文
摘要:.el-table__fixed::before, .el-table__fixed-right::before{ background-color: transparent !important; }
阅读全文
摘要:/* 子菜单active */ .page-sidebar .el-menu-item.is-active .iconfont-cahnge { color: #cc0000 !important; } /* 主菜单和子菜单同active */ .page-sidebar .el-submenu.i
阅读全文
摘要:参考 ElementUI中el-radio再次点击取消选中 <el-radio-group v-model="radio"> <el-radio :label="1" @click.native.prevent="radioClick($event)">备选项</el-radio> </el-rad
阅读全文
摘要:main.js Vue.prototype.$message = function (option) { option.offset = 70 option.showClose = true return Message(option) } Vue.prototype.$message.succes
阅读全文
摘要:vue-element-admin (git) 窗口宽度变化,菜单自动隐藏 beforeMount() { window.addEventListener('resize', this.$_resizeHandler) }, $_resizeHandler() { console.log('窗框宽度
阅读全文
摘要:<el-table-column label="" min-width="120"> <template slot-scope="scope"> <el-tooltip class="item" effect="dark" content="双击展开/收起" placement="top" > <s
阅读全文
摘要:this.$confirm("提交后不允许编辑,是否继续提交?", "提示", { confirmButtonText: "确定提交", cancelButtonText: "取消", type: "warning", }) .then(() => { this.submitForm("ruleFo
阅读全文
摘要:/* 去掉input尾部上下小箭头 start */ .page-input-number-none-triangle input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: n
阅读全文
摘要:prop 绑的字段有问题
阅读全文
摘要:<div v-for="(item, index) in allItems" :key="index" class="mb20"> <div class="arrangeTitle mb10 mt10"> <headLine> <div class="title"> <div class="fb c
阅读全文