Ver código fonte

批量删除

chenrui 2 anos atrás
pai
commit
17a9aff002
1 arquivos alterados com 8 adições e 0 exclusões
  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'
+	})
 }