소스 검색

批量删除

chenrui 2 년 전
부모
커밋
17a9aff002
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      api/shelfCart.js

+ 8 - 0
api/shelfCart.js

@@ -82,4 +82,12 @@ export const updateBatchById = (params) => {
 		data: params,
 		method: 'post'
 	})
+}
+//批量删除层
+export const deleteBatch = (params) => {
+	return axios.request({
+		url: `shelfCart/deleteBatch`,
+		data: params,
+		method: 'post'
+	})
 }