| 12345678910111213 |
- /**
- * 穴位模块 API
- */
- import http from '@/utils/http'
- /**
- * 获取用户背部产品穴位坐标列表
- * @param {number} profileId - 子用户档案 ID (user_profile.id)
- * @returns {Promise<Array<{id, userId, acupointId, acupointCode, acupointName, acupointSide, bodyPart, productAcupoint, coordinateX, coordinateY, coordinateZ, confidence}>>}
- */
- export function getBackAcupoints(profileId) {
- return http.get(`/app/user/acupoint/${profileId}/product-back-coordinates`)
- }
|