fix:海报图片协议转换,自动识别https协议

This commit is contained in:
ldh
2023-04-04 13:43:21 +08:00
parent 90d6f8594d
commit e7c6c55786
4 changed files with 30 additions and 9 deletions
@@ -1,11 +1,12 @@
import sheep from '@/sheep';
import { formatImageUrlProtocol } from './index';
const goods = (poster) => {
const width = poster.width;
const userInfo = sheep.$store('user').userInfo;
return {
background: sheep.$url.cdn(sheep.$store('app').platform.share.posterInfo.goods_bg),
background: formatImageUrlProtocol(sheep.$url.cdn(sheep.$store('app').platform.share.posterInfo.goods_bg)),
list: [
{
name: 'nickname',
@@ -24,7 +25,7 @@ const goods = (poster) => {
{
name: 'avatar',
type: 'image',
val: sheep.$url.cdn(userInfo.avatar),
val: formatImageUrlProtocol(sheep.$url.cdn(userInfo.avatar)),
x: width * 0.04,
y: width * 0.04,
width: width * 0.14,
@@ -34,7 +35,7 @@ const goods = (poster) => {
{
name: 'goodsImage',
type: 'image',
val: poster.shareInfo.poster.image,
val: formatImageUrlProtocol(poster.shareInfo.poster.image),
x: width * 0.03,
y: width * 0.21,
width: width * 0.94,
@@ -47,8 +48,8 @@ const goods = (poster) => {
val: poster.shareInfo.poster.title,
x: width * 0.04,
y: width * 1.18,
line: 2,
maxWidth: width * 0.91,
line: 2,
lineHeight: 5,
paintbrushProps: {
fillStyle: '#333',