This commit is contained in:
杨鹏
2025-10-12 18:01:59 +08:00
parent 09f8815234
commit e28858a340
6 changed files with 130 additions and 22 deletions
+23 -1
View File
@@ -79,7 +79,29 @@ const UserApi = {
}
});
},
// 获取h5填写的表单信息
getInfoByUser: () => {
return request({
url: '/digital/records/get-by-user-id',
method: 'GET',
custom: {
showLoading: false,
auth: true,
},
});
},
// 获取试穿记录
getTryOnList: (params = {}) => {
return request({
url: '/digital/on-record/page',
method: 'GET',
params,
custom: {
showLoading: false,
auth: true,
},
});
},
};
export default UserApi;