element table当用户对某一行展开或者关闭的时候,只展开一行

代码:

	expand_change(row, expandedRows) {
			this.expand_change_arr = row;
			//	每次只展开一个扩展列表
			var that = this;
			if(expandedRows.length) {
				that.expands = []
				if(row) {
					that.expands.push(row.PWDID)
				}
			} else {
				that.expands = []
			}
	},

代码标记:

element table当用户对某一行展开或者关闭的时候,只展开一行_第1张图片

效果图:

element table当用户对某一行展开或者关闭的时候,只展开一行_第2张图片

你可能感兴趣的:(vue,element)