table内容过长显示tooltip
<el-table-column prop="productNameInclude" align="center" label="涉及商品型号" :show-overflow-tooltip='true'></el-table-column>
table loading 自定义描述
<el-table class="app-tableList" :data="resultTableList" v-loading.fullscreen="preGenerateLoading" element-loading-text="ID生成中...">
v-loading.fullscreen表示整屏显示
el-dropdown 选中时传值修改
<el-dropdown-item :command="composeValue(2,scope.row)" v-auth="'terminalEditor'" v-if="scope.row.status==4||scope.row.status==6">修改归属城市</el-dropdown-item>
composeValue (id, row) {
return { id, row } // 重新组合要传的值
},
使用el-upload上传图片时,上传三张图片不显示上传按钮
form表单给对象的对象添加验证判空等情况
"deptInfo.shortName": [validate.required()],
重新加载表格doLayout()
this.$nextTick(() => {
this.$refs.tableDataRef.doLayout();
});