CRM_26-06-30#story#8869,救援 APP、中道神行小程序、跑圈小板运输小程序和小板运输APP端上传损伤照片自动生成推送链接需求

This commit is contained in:
2026-06-26 16:52:40 +08:00
parent 2ff9e7684f
commit ddb3817d6e
3 changed files with 334 additions and 0 deletions

14
src/api/damagePhoto.js Normal file
View File

@@ -0,0 +1,14 @@
import request from '@/utils/http'
/**
* 查询 H5 损伤照片
* @param {Object} data - { userOrderId, taskOrderId }
*/
export function getDamagePhotos(data) {
return request({
url: '/api/h5-interface/damagePhotos',
method: 'POST',
contentType: 'application/json',
data
})
}