邃芒智像(Uniapp : WX、TT、H5)
You can not select more than 25 topics 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. }