闫增涛
2024-06-04 a0ce9ef2ed2e13882c306c95e29e16af3f4bb373
src/assets/methods/resources.js
@@ -1,6 +1,19 @@
import config from "../js/config"
const getResourcePath = (md5) => {
  return  config.requestCtx + '/file/api/ApiDownload?md5=' + md5
import fileApi from '@/assets/js/middleGround/api/file'
export const getResourcePath = async(md5,appRefCode = "jingshieke") => {
  let path = ''
  await fileApi.getAliVod({
    md5,appRefCode
  }).then(res => {
    if(res.data.length) {
      path =  res.data
    } else {
      path =   process.env.VUE_APP_API_URL + '/file/api/ApiDownload?md5=' + md5
    }
  })
  return path
}
const MT = {
  getResourcePath
}
export default getResourcePath
export default MT