Commit 7b1b1714 authored by Xuguangxing's avatar Xuguangxing

fix

parent dc990fc6
...@@ -70,7 +70,7 @@ export default { ...@@ -70,7 +70,7 @@ export default {
observer: null, observer: null,
statusTextMap: { statusTextMap: {
0: '发起拼团,邀请好友一起拼团吧!', 0: '发起拼团,邀请好友一起拼团吧!',
2: '恭喜成团,等待发货', 2: '恭喜成团!',
3: '哎呀,拼团时间已过,尚未成团!', 3: '哎呀,拼团时间已过,尚未成团!',
4: '已发货' 4: '已发货'
} }
...@@ -135,6 +135,7 @@ export default { ...@@ -135,6 +135,7 @@ export default {
} }
.button-area { .button-area {
button { button {
font-size: 16px;
margin-bottom: @padding-md; margin-bottom: @padding-md;
} }
} }
......
...@@ -226,6 +226,10 @@ export default { ...@@ -226,6 +226,10 @@ export default {
this.detailInfo = res; this.detailInfo = res;
this.setStartStatus(res); this.setStartStatus(res);
try { try {
this.detailInfo.contentDetailUrl = this.detailInfo.contentDetailUrl.replace(
'http://',
'https://'
);
const detailImages = await goods.getDetailPic(this.detailInfo.contentDetailUrl); const detailImages = await goods.getDetailPic(this.detailInfo.contentDetailUrl);
// const imgReg = new RegExp('(?<=src=").[^"]*', 'g'); // const imgReg = new RegExp('(?<=src=").[^"]*', 'g');
// this.detailImgList = (detailImages || '').match(imgReg); // this.detailImgList = (detailImages || '').match(imgReg);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment