邃芒智像(Uniapp : WX、TT、H5)
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
247 B

  1. import request from "../utils/request"
  2. /**
  3. * @description:得到写真信息
  4. * @param id
  5. * @return: data
  6. */
  7. export function getPhotoListApi(id) {
  8. return request({
  9. url: `/api/digitalAvatarPhoto/findById?id=${id}`,
  10. method: 'get',
  11. })
  12. }