Browse Source

批量删除

chenrui 2 years ago
parent
commit
17a9aff002
1 changed files with 8 additions and 0 deletions
  1. 8 0
      api/shelfCart.js

+ 8 - 0
api/shelfCart.js

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