随笔分类 -  Element UI

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