poster.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. export default {
  2. shareText(goods, appName) {
  3. let str =
  4. `${appName}今日推荐~\n`;
  5. for (let good of goods) {
  6. if (good.tagPrice) {
  7. str += `\n${good.name} 原价:${good.tagPrice / 100}元 特价:${good.price / 100}元`;
  8. } else {
  9. str += `\n${good.name} 特价:${good.price / 100}元`;
  10. }
  11. }
  12. str += `\n\n【线上下单更多优惠,自提或配送到家都支持哦】`;
  13. uni.setClipboardData({
  14. data: str,
  15. success: () => {
  16. uni.showToast({
  17. title: '复制成功',
  18. icon: 'none',
  19. duration: 2000,
  20. })
  21. },
  22. });
  23. },
  24. sharePoster(goods, config, self, storeId,appName) {
  25. uni.showLoading({
  26. title: "加载中...",
  27. mask: true,
  28. });
  29. // let bg = "https://oss.ixiaokejia.com/images/common/today.png";
  30. // 顶部图
  31. let bgTop = {
  32. src: "https://oss.ixiaokejia.com/images/common/today_top.jpg",
  33. h: 290,
  34. w: 750,
  35. x: 0,
  36. y: 0
  37. };
  38. // 底部图
  39. let bgBottom = {
  40. src: "https://oss.ixiaokejia.com/images/common/today_bottom.jpg",
  41. h: 380,
  42. w: 750,
  43. x: 0,
  44. y: 0, // 之后计算
  45. };
  46. let appLogo = {
  47. src: config.logoUrl,
  48. w: 120,
  49. h: 120,
  50. x: 24,
  51. y: 0
  52. };
  53. let appNameXY = {
  54. x:27,
  55. y:150,
  56. y2:180,
  57. size:24,
  58. color:'#333333'
  59. }
  60. // 单个商品信息
  61. let XY = {
  62. lineH: 173,
  63. img: {
  64. x: 35,
  65. y: 310,
  66. w: 150,
  67. h: 140,
  68. },
  69. title: {
  70. x: 205,
  71. y: 335,
  72. y2: 363,
  73. size: 22,
  74. color: "#000000",
  75. },
  76. price: {
  77. x: 205,
  78. y: 410,
  79. size: 32,
  80. color: "#ff0000",
  81. },
  82. oldPrice: {
  83. x: 205,
  84. y: 440,
  85. size: 18,
  86. color: "#666666",
  87. },
  88. };
  89. // 设置canvas 高
  90. let n = Math.ceil(goods.length / 2);
  91. let canvasH = bgTop.h + bgBottom.h + n * XY.lineH;
  92. self.canvasHeight = canvasH + 'px'
  93. bgBottom.y = bgTop.h + n * XY.lineH
  94. const ctx = uni.createCanvasContext("canvas", self);
  95. Promise.all([
  96. uni.getImageInfo({
  97. src: bgTop.src,
  98. }),
  99. uni.getImageInfo({
  100. src: appLogo.src,
  101. }),
  102. uni.getImageInfo({
  103. src: bgBottom.src,
  104. }),
  105. self.api
  106. .get("/Share/GetQRCode", {
  107. path: "pages/goods/category",
  108. paremeters: JSON.stringify({
  109. storeId: storeId
  110. }),
  111. width: 355,
  112. })
  113. .then((res) => {
  114. return uni.getImageInfo({
  115. src: res.data,
  116. });
  117. }),
  118. ]).then((resList) => {
  119. // 背景
  120. ctx.setFillStyle("#fff");
  121. ctx.fillRect(0, 0, 750, canvasH);
  122. // 顶图
  123. if (resList[0][1].path) {
  124. ctx.drawImage(resList[0][1].path, bgTop.x, bgTop.y, bgTop.w, bgTop.h);
  125. }
  126. // appLogo
  127. if (resList[1][1].path) {
  128. ctx.drawImage(resList[1][1].path, appLogo.x, appLogo.y, appLogo.w, appLogo.h);
  129. }
  130. // appLogo
  131. if (resList[2][1].path) {
  132. ctx.drawImage(resList[2][1].path, bgBottom.x, bgBottom.y, bgBottom.w, bgBottom.h);
  133. }
  134. // // qrcode
  135. if (resList[3][1].path) {
  136. ctx.drawImage(resList[3][1].path, 110, bgBottom.y + 100, 220, 220);
  137. }
  138. // appName
  139. ctx.setFontSize(appNameXY.size);
  140. ctx.setFillStyle(appNameXY.color);
  141. if (appName.length > 8) {
  142. let name1 = appName.substr(0, 5);
  143. let name2 = appName.substr(5, 5);
  144. if (appName.length > 10) {
  145. name2 += "...";
  146. }
  147. ctx.fillText(
  148. name1,
  149. appNameXY.x,
  150. appNameXY.y
  151. );
  152. ctx.fillText(
  153. name2,
  154. appNameXY.x,
  155. appNameXY.y2
  156. )
  157. } else {
  158. ctx.fillText(
  159. appName,
  160. appNameXY.x,
  161. appNameXY.y
  162. );
  163. }
  164. // 商品
  165. let index = 1;
  166. for (let item of goods) {
  167. uni.getImageInfo({
  168. src: item.mainImage,
  169. success: (img) => {
  170. if (index % 2 === 1) {
  171. // 左
  172. // 图片
  173. let arrIndex = Math.floor(index / 2);
  174. let deviation = arrIndex * 173;
  175. // ctx.setFillStyle("#ff0000");
  176. // ctx.fillRect(
  177. // XY.img.x,
  178. // XY.img.y + deviation,
  179. // XY.img.w,
  180. // XY.img.h
  181. // );
  182. // ctx.draw();
  183. ctx.drawImage(
  184. img.path,
  185. XY.img.x,
  186. XY.img.y + deviation,
  187. XY.img.w,
  188. XY.img.h
  189. );
  190. // name
  191. ctx.setFontSize(XY.title.size);
  192. ctx.setFillStyle(XY.title.color);
  193. if (item.name.length > 8) {
  194. let name1 = item.name.substr(0, 8);
  195. let name2 = item.name.substr(8, 7);
  196. if (item.name.length > 15) {
  197. name2 += "...";
  198. }
  199. ctx.fillText(
  200. name1,
  201. XY.title.x,
  202. XY.title.y + deviation
  203. );
  204. ctx.fillText(
  205. name2,
  206. XY.title.x,
  207. XY.title.y2 + deviation
  208. );
  209. } else {
  210. console.log(item.name, 2222);
  211. ctx.fillText(
  212. item.name,
  213. XY.title.x,
  214. XY.title.y + deviation
  215. );
  216. }
  217. // price
  218. ctx.setFontSize(XY.price.size);
  219. ctx.setFillStyle(XY.price.color);
  220. ctx.fillText(
  221. item.price / 100 + "元",
  222. XY.price.x,
  223. XY.price.y + deviation
  224. );
  225. // oldPrice
  226. if (item.tagPrice) {
  227. ctx.setFontSize(XY.oldPrice.size);
  228. ctx.setFillStyle(XY.oldPrice.color);
  229. let text =
  230. "原价:" + item.tagPrice / 100 + "元";
  231. ctx.fillText(
  232. text,
  233. XY.oldPrice.x,
  234. XY.oldPrice.y + deviation
  235. );
  236. ctx.fillRect(
  237. XY.oldPrice.x,
  238. XY.oldPrice.y + deviation - 7,
  239. text.length * (XY.oldPrice.size - 2),
  240. 1
  241. );
  242. }
  243. } else {
  244. // 右
  245. // 图片
  246. let arrIndex = Math.floor(index / 2) - 1;
  247. let deviation = arrIndex * 173;
  248. let xdeviation = 355;
  249. // ctx.setFillStyle("#ff0000");
  250. // ctx.fillRect(
  251. // XY.img.x + xdeviation,
  252. // XY.img.y + deviation,
  253. // XY.img.w,
  254. // XY.img.h
  255. // );
  256. // ctx.draw();
  257. ctx.drawImage(
  258. img.path,
  259. XY.img.x + xdeviation,
  260. XY.img.y + deviation,
  261. XY.img.w,
  262. XY.img.h
  263. );
  264. // name
  265. ctx.setFontSize(XY.title.size);
  266. ctx.setFillStyle(XY.title.color);
  267. if (item.name.length > 8) {
  268. let name1 = item.name.substr(0, 8);
  269. let name2 = item.name.substr(8, 7);
  270. if (item.name.length > 15) {
  271. name2 += "...";
  272. }
  273. ctx.fillText(
  274. name1,
  275. XY.title.x + xdeviation,
  276. XY.title.y + deviation
  277. );
  278. ctx.fillText(
  279. name2,
  280. XY.title.x + xdeviation,
  281. XY.title.y2 + deviation
  282. );
  283. } else {
  284. ctx.fillText(
  285. item.name,
  286. XY.title.x + xdeviation,
  287. XY.title.y + deviation
  288. );
  289. }
  290. // price
  291. ctx.setFontSize(XY.price.size);
  292. ctx.setFillStyle(XY.price.color);
  293. ctx.fillText(
  294. item.price / 100 + "元",
  295. XY.price.x + xdeviation,
  296. XY.price.y + deviation
  297. );
  298. // oldPrice
  299. if (item.tagPrice) {
  300. ctx.setFontSize(XY.oldPrice.size);
  301. ctx.setFillStyle(XY.oldPrice.color);
  302. let text =
  303. "原价:" + item.tagPrice / 100 + "元";
  304. ctx.fillText(
  305. text,
  306. XY.oldPrice.x + xdeviation,
  307. XY.oldPrice.y + deviation
  308. );
  309. ctx.fillRect(
  310. XY.oldPrice.x + xdeviation,
  311. XY.oldPrice.y + deviation - 7,
  312. text.length * (XY.oldPrice.size - 2),
  313. 1
  314. );
  315. }
  316. }
  317. index++;
  318. console.log(index);
  319. if (index > goods.length) {
  320. ctx.stroke();
  321. ctx.draw();
  322. self.canvasShow = true;
  323. // 生成临时路径
  324. setTimeout(() => {
  325. uni.canvasToTempFilePath({
  326. canvasId: "canvas",
  327. fileType: "jpg",
  328. success: function (res) {
  329. self.canvasShow = false;
  330. uni.hideLoading();
  331. self.canvasImgPath =
  332. res.tempFilePath;
  333. uni.previewImage({
  334. urls: [self.canvasImgPath],
  335. longPressActions: true,
  336. });
  337. // 保存到相册
  338. uni.saveImageToPhotosAlbum({
  339. filePath: self.canvasImgPath,
  340. success: function () {
  341. self.fn.showToast("海报保存成功");
  342. },
  343. complete: function () {
  344. },
  345. });
  346. },
  347. });
  348. }, 1000);
  349. }
  350. },
  351. });
  352. }
  353. });
  354. }
  355. }