This commit is contained in:
parent
b42609f59a
commit
32b52e0937
|
|
@ -426,14 +426,6 @@
|
|||
})
|
||||
$(`#uploadBtn${Index}`).show()
|
||||
})
|
||||
|
||||
$(document).on('click', '.file-icon', function () {
|
||||
var dataId = $(this).data('id');
|
||||
var dataIndex = $(this).data('index');
|
||||
console.log('dataIndex图标', dataIndex)
|
||||
console.log('dataId图标', dataId)
|
||||
console.log('tableRowList图标', tableRowList[dataIndex])
|
||||
})
|
||||
tableLoading && layer.close(tableLoading);
|
||||
}
|
||||
});
|
||||
|
|
@ -449,6 +441,14 @@
|
|||
});
|
||||
}
|
||||
});
|
||||
|
||||
$(document).on('click', '#baseTable .file-icon', function () {
|
||||
var dataId = $(this).data('id');
|
||||
var dataIndex = $(this).data('index');
|
||||
console.log('dataIndex图标', dataIndex)
|
||||
console.log('dataId图标', dataId)
|
||||
console.log('tableRowList图标', tableRowList[dataIndex])
|
||||
})
|
||||
// 单元格普通编辑事件
|
||||
// table.on('edit(baseTable)', function (obj) {
|
||||
// var value = obj.value // 得到修改后的值
|
||||
|
|
|
|||
Loading…
Reference in New Issue