feat: 更新确认待确认分类的接口,支持批量确认功能;调整前端逻辑以处理选中的交易记录
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 20s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 2s
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 20s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 2s
This commit is contained in:
@@ -34,10 +34,11 @@ export const getUnconfirmedTransactionList = () => {
|
||||
* 全部确认待确认的交易分类
|
||||
* @returns {Promise<{success: boolean, data: number}>}
|
||||
*/
|
||||
export const confirmAllUnconfirmed = () => {
|
||||
export const confirmAllUnconfirmed = (ids) => {
|
||||
return request({
|
||||
url: '/TransactionRecord/ConfirmAllUnconfirmed',
|
||||
method: 'post'
|
||||
method: 'post',
|
||||
data: { ids }
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user