绿满眶商城微信小程序-uniapp
zxl
2025-07-17 b303b6945a139153688e86635346a621fe0c29b3
api/common.js
@@ -26,7 +26,29 @@
}
/**
 * 获取腾讯云cos sts临时访问凭证
 */
 export function getSTSToken() {
  return http.request({
    url: `${api.common}/lmk/file/sts`,
    method: Method.GET,
  });
}
/**
 * 获取文件访问地址
 */
 export function getFilePreviewUrl(fileKey) {
  return http.request({
    url: `${api.common}/lmk/file/preview`,
    method: Method.POST,
   data: {fileKey: fileKey}
  });
}
/**
 * 文件上传地址
 * @type {string}
 */
export const upload = api.common + "/common/upload/file";
export const upload = api.common + "/lmk/file/upload";
export const multiUpload = api.common + "/lmk/file/multi/upload";