This commit is contained in:
Leo
2026-01-15 21:50:57 +08:00
parent 3cec899df2
commit c7bad0e5e5
2 changed files with 446 additions and 130 deletions

View File

@@ -153,3 +153,27 @@ export function batchUpdateWPS365Cells(data) {
})
}
// ==================== AirSheet相关 ====================
/**
* 读取AirSheet工作表数据
*/
export function readWPS365AirSheetCells(params) {
return request({
url: '/jarvis/wps365/readAirSheetCells',
method: 'get',
params
})
}
/**
* 更新AirSheet工作表数据
*/
export function updateWPS365AirSheetCells(data) {
return request({
url: '/jarvis/wps365/updateAirSheetCells',
method: 'post',
data
})
}