user.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import sheep from '@/sheep';
  2. import { formatImageUrlProtocol } from './index';
  3. const user = (poster) => {
  4. const width = poster.width;
  5. const userInfo = sheep.$store('user').userInfo;
  6. console.log()
  7. return {
  8. background: window.location.origin + '/static/user-poster-bg.jpg',
  9. // background: formatImageUrlProtocol(sheep.$url.static(sheep.$store('app').platform.share.posterInfo.user_bg)),
  10. list: [
  11. {
  12. name: 'nickname',
  13. type: 'text',
  14. val: userInfo.nickname,
  15. x: width / 2,
  16. y: width * 0.4,
  17. paintbrushProps: {
  18. textAlign: 'center',
  19. fillStyle: '#333',
  20. font: {
  21. fontSize: 14,
  22. fontFamily: 'sans-serif',
  23. },
  24. },
  25. },
  26. {
  27. name: 'avatar',
  28. type: 'image',
  29. val: poster.avatar,
  30. x: width * 0.4,
  31. y: width * 0.16,
  32. width: width * 0.2,
  33. height: width * 0.2,
  34. d: width * 0.2,
  35. },
  36. // #ifndef MP-WEIXIN
  37. {
  38. name: 'qrcode',
  39. type: 'qrcode',
  40. val: poster.shareInfo.link,
  41. x: width * 0.35,
  42. y: width * 0.74,
  43. size: width * 0.3,
  44. },
  45. // #endif
  46. // #ifdef MP-WEIXIN
  47. {
  48. name: 'wxacode',
  49. type: 'image',
  50. val: sheep.$api.third.wechat.getWxacode(poster.shareInfo.path),
  51. x: width * 0.35,
  52. y: width * 0.84,
  53. width: width * 0.3,
  54. height: width * 0.3,
  55. },
  56. // #endif
  57. ],
  58. };
  59. };
  60. export default user;