重构标签结构 修复瀑布流加载数据显示

This commit is contained in:
WangHao
2020-10-02 23:20:03 +08:00
parent b3c887cf88
commit 2ff53faf5a
13 changed files with 83 additions and 1108 deletions

View File

@ -351,6 +351,7 @@
/**滚动监控**/
load() {
//判断是否加载了所有数据
this.queryParams.pageNum=this.queryParams.pageNum+1;
// 2 15 26
@ -368,7 +369,8 @@
setTimeout(() =>{
selectBymenuIdUserID(this.queryParams).then(response => {
if (response.rows.length!=0 && response.code == 200) {
this.bookmarkList = this.bookmarkList.concat(this.bookmarkList, response.rows);
console.log("response.rows"+response.rows)
this.bookmarkList = this.bookmarkList.concat( response.rows);
this.total = response.total;
this.listloading = false
} else {
@ -654,7 +656,7 @@
position: absolute;
background-color: #acd7ff;
right: 0;
display: none;
}
.editlist {

View File

@ -215,8 +215,8 @@
:autosize="{minRows: 3, maxRows:4}" :style="{width: '100%'}"></el-input>
</el-form-item>
<el-form-item prop="menuId">
<div class="labelname">所属目录</div>
<el-form-item prop="parentId">
<div class="labelname">分类菜单</div>
<treeselect class="menutreeselect" v-model="form.menuId" :options="menuOptions" :normalizer="normalizer" />
</el-form-item>