接口层兼容

This commit is contained in:
落日晚风
2023-12-12 16:13:27 +08:00
parent ef26268c8e
commit cf2c782c0e
13 changed files with 212 additions and 207 deletions
+7 -9
View File
@@ -1,10 +1,8 @@
import request2 from '@/sheep/request2';
export default {
list: (params) =>
request2({
url: 'product/category/list',
method: 'GET',
params,
}),
};
list: (params) =>
request({
url: '/app-api/product/category/list',
method: 'GET',
params,
}),
};