index.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import user from './user';
  2. import goods from './goods';
  3. import groupon from './groupon';
  4. import sheep from '@/sheep';
  5. import {
  6. ref
  7. } from 'vue'
  8. import FileApi from '@/sheep/api/infra/file';
  9. let locaImage = ref("")
  10. async function getFileURL(file) {
  11. console.log("file", file)
  12. await FileApi.getFileIO(file).then((res) => {
  13. locaImage.value = window.URL.createObjectURL(res);
  14. })
  15. }
  16. export async function getPosterData(options) {
  17. const userInfo = sheep.$store('user').userInfo;
  18. let avatar = userInfo.avatar
  19. switch (options.shareInfo.poster.type) {
  20. case 'user':
  21. await getFileURL(avatar)
  22. options.avatar = locaImage.value
  23. return user(options);
  24. case 'goods':
  25. await getFileURL(avatar)
  26. options.avatar = locaImage.value
  27. await getFileURL(options.shareInfo.poster.image)
  28. options.shareInfo.poster.image = locaImage.value
  29. return goods(options);
  30. case 'groupon':
  31. return groupon(options);
  32. }
  33. }
  34. export function formatImageUrlProtocol(url) {
  35. // #ifdef H5
  36. // H5平台 https协议下需要转换
  37. if (window.location.protocol === 'https:' && url.indexOf('http:') === 0) {
  38. url = url.replace('http:', 'https:');
  39. }
  40. // #endif
  41. // #ifdef MP-WEIXIN
  42. // 小程序平台 需要强制转换为https协议
  43. if (url.indexOf('http:') === 0) {
  44. url = url.replace('http:', 'https:');
  45. }
  46. // #endif
  47. return url;
  48. }