user.js 1.4 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. list: [
  10. {
  11. name: 'nickname',
  12. type: 'text',
  13. val: userInfo.nickname,
  14. x: width / 2,
  15. y: width * 0.4,
  16. paintbrushProps: {
  17. textAlign: 'center',
  18. fillStyle: '#333',
  19. font: {
  20. fontSize: 14,
  21. fontFamily: 'sans-serif',
  22. },
  23. },
  24. },
  25. {
  26. name: 'avatar',
  27. type: 'image',
  28. val: poster.avatar,
  29. x: width * 0.4,
  30. y: width * 0.16,
  31. width: width * 0.2,
  32. height: width * 0.2,
  33. d: width * 0.2,
  34. },
  35. // #ifndef MP-WEIXIN
  36. {
  37. name: 'qrcode',
  38. type: 'qrcode',
  39. val: poster.shareInfo.link,
  40. x: width * 0.35,
  41. y: width * 0.74,
  42. size: width * 0.3,
  43. },
  44. // #endif
  45. // #ifdef MP-WEIXIN
  46. {
  47. name: 'wxacode',
  48. type: 'image',
  49. val: sheep.$api.third.wechat.getWxacode(poster.shareInfo.path),
  50. x: width * 0.35,
  51. y: width * 0.84,
  52. width: width * 0.3,
  53. height: width * 0.3,
  54. },
  55. // #endif
  56. ],
  57. };
  58. };
  59. export default user;