【修复】修复前端APP点分享,丢失几张静态图片,导致分享容易空白的问题。

This commit is contained in:
大灰灰
2022-05-28 15:54:44 +08:00
parent 5e27be3e6d
commit 129f461518
4 changed files with 4 additions and 5 deletions

View File

@@ -17,7 +17,6 @@
</template>
<script>
import { h5Url } from '@/common/setting/constVarsHelper.js'
export default {
props: {
// 商品id
@@ -83,7 +82,7 @@
name: '分享到微信好友',
cate: 'share',
id: 'weixin',
img: '/static/images/ic-wechat.png',
img: '/static/images/common/share-wechat.png',
sort: 0
})
data.push({
@@ -91,7 +90,7 @@
cate: 'share',
id: 'weixin',
type: 'WXSenceTimeline',
img: '/static/images/circle-of-friends.png',
img: '/static/images/common/share--wechat-friends.png',
sort: 1
})
break;
@@ -100,7 +99,7 @@
name: '分享到QQ',
cate: 'share',
id: 'qq',
img: '/static/images/qq.png',
img: '/static/images/common/share-qq.png',
sort: 3
})
break;
@@ -113,7 +112,7 @@
name: '生成海报',
cate: 'poster',
id: 'poster',
img: '/static/images/poster.png',
img: '/static/images/common/share-poster.png',
sort: 5
})
this.providerList = data.sort((x, y) => {

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB