用户会修改表格数据,想用一个数组将每一次修改的新值,旧值等放入变量,点击保存之后再将变量进行数据存储,但是好像数据在bind方法里面有效,拿出来就没有了,还是说有其他方法可以实现
methods: {
workbookInitialized(spread){
this.spread = spread;
var sheet = this.spread.getActiveSheet();
sheet.bind(GC.Spread.Sheets.Events.CellChanged, function (e, info) {
if(info.sheetArea === GC.Spread.Sheets.SheetArea.viewport){
alert("Cell index (" + info.row + "," + info.col + ")");
}
this.$set(this.update,'col',info.col)
});
},
|
|