goods.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. import sheep from '@/sheep';
  2. import { formatImageUrlProtocol } from './index';
  3. const goods = (poster) => {
  4. const width = poster.width;
  5. const userInfo = sheep.$store('user').userInfo;
  6. return {
  7. background: window.location.origin + '/static/goods-poster-bg.jpg',
  8. // background: formatImageUrlProtocol(sheep.$url.cdn(sheep.$store('app').platform.share.posterInfo.goods_bg)),
  9. list: [
  10. {
  11. name: 'nickname',
  12. type: 'text',
  13. val: userInfo.nickname,
  14. x: width * 0.21,
  15. y: width * 0.06,
  16. paintbrushProps: {
  17. fillStyle: '#333',
  18. font: {
  19. fontSize: 16,
  20. fontFamily: 'sans-serif',
  21. },
  22. },
  23. },
  24. {
  25. name: 'avatar',
  26. type: 'image',
  27. val: poster.avatar,
  28. x: width * 0.04,
  29. y: width * 0.04,
  30. width: width * 0.14,
  31. height: width * 0.14,
  32. d: width * 0.14,
  33. },
  34. {
  35. name: 'goodsBg',
  36. type: 'rect',
  37. x: width * 0.03,
  38. y: width * 0.3,
  39. width: width * 0.94,
  40. height: width * 0.75,
  41. r: 5,
  42. },
  43. {
  44. name: 'goodsImage',
  45. type: 'image',
  46. val: poster.shareInfo.poster.image,
  47. x: width * 0.03,
  48. y: width * 0.3,
  49. width: width * 0.94,
  50. height: width * 0.5,
  51. r: 5,
  52. },
  53. {
  54. name: 'goodsTitle',
  55. type: 'text',
  56. val: poster.shareInfo.poster.title,
  57. x: width * 0.05,
  58. y: width * 0.83,
  59. maxWidth: width * 0.91,
  60. line: 5,
  61. lineHeight: 10,
  62. paintbrushProps: {
  63. fillStyle: '#333',
  64. font: {
  65. fontSize: 16,
  66. },
  67. },
  68. },
  69. {
  70. name: 'goodsIntroduction',
  71. type: 'text',
  72. val: poster.shareInfo.poster.introduction,
  73. x: width * 0.05,
  74. y: width * 0.89,
  75. maxWidth: width * 0.9,
  76. height:width * 0.1,
  77. line:3,
  78. lineHeight:3,
  79. paintbrushProps: {
  80. fillStyle: '#333',
  81. font: {
  82. fontSize: 14,
  83. fontFamily: 'OPPOSANS',
  84. },
  85. },
  86. },
  87. {
  88. name: 'goodsOriginalPrice',
  89. type: 'text',
  90. val:
  91. poster.shareInfo.poster.original_price > 0
  92. ? '¥' + poster.shareInfo.poster.original_price
  93. : '',
  94. x: width * 0.3,
  95. y: width * 1.32,
  96. paintbrushProps: {
  97. fillStyle: '#999',
  98. font: {
  99. fontSize: 10,
  100. fontFamily: 'OPPOSANS',
  101. },
  102. },
  103. textDecoration: {
  104. line: 'line-through',
  105. style: 'solide',
  106. },
  107. },
  108. // #ifndef MP-WEIXIN
  109. {
  110. name: 'qrcode',
  111. type: 'qrcode',
  112. val: poster.shareInfo.link,
  113. x: width * 0.75,
  114. y: width * 1.07,
  115. size: width * 0.2,
  116. },
  117. // #endif
  118. // #ifdef MP-WEIXIN
  119. {
  120. name: 'wxacode',
  121. type: 'image',
  122. val: sheep.$api.third.wechat.getWxacode(poster.shareInfo.path),
  123. x: width * 0.75,
  124. y: width * 1.3,
  125. width: width * 0.2,
  126. height: width * 0.2,
  127. },
  128. // #endif
  129. ],
  130. };
  131. };
  132. export default goods;