闫增涛
2024-06-03 4c651bf9ab9a67afc0aae5201d8bc3a318546c00
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 MT