getImgPath.js 253 B

12345678910
  1. import config from "@/common/config.js"
  2. /**
  3. * 拼接图片地址
  4. * @param {String} idFile
  5. * @returns {String} 完整的图片地址
  6. */
  7. export default function getImgPath (idFile) {
  8. return `${config.baseApi}/file/getImgStream?idFile=${idFile}`
  9. }