Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
fix(fix #209 fix #219): highlight follow, checkout keep highlight
Browse files Browse the repository at this point in the history
highlight follow cell size change , checkout keep highlight
  • Loading branch information
renxxing committed Dec 4, 2020
2 parents 0a5ca86 + ab2d8b7 commit 2c7b0bb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/controllers/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,12 @@ const server = {
else if(type == 2){ //更新数据
let item = JSON.parse(data.data);
_this.wsUpdateMsg(item);
let chang_data = JSON.parse(data.data)
if(chang_data.k == 'columnlen') {
collaborativeEditBox(chang_data.v,null)
} else if(chang_data.k == 'rowlen') {
collaborativeEditBox(null,chang_data.v)
}
}
else if(type == 3){ //多人操作不同选区("t": "mv")(用不同颜色显示其他人所操作的选区)
let id = data.id;
Expand Down

0 comments on commit 2c7b0bb

Please sign in to comment.