master
parent
838f9914fb
commit
d5f933905d
4
App.vue
4
App.vue
|
|
@ -23,10 +23,10 @@
|
|||
application_logo: '',
|
||||
|
||||
// 版本号、如: v1.0.0
|
||||
version: 'v6.4',
|
||||
version: 'v6.5',
|
||||
|
||||
// app版本信息、如: v1.0.0 20180118
|
||||
app_version_info: 'v6.4 20241225',
|
||||
app_version_info: 'v6.5 20250305',
|
||||
|
||||
// 货币价格符号
|
||||
currency_symbol: '¥',
|
||||
|
|
|
|||
14
changelog.md
14
changelog.md
|
|
@ -1,3 +1,17 @@
|
|||
## v6.5.0(2025-03-05)
|
||||
1. DIY新增数据选项卡、自定义增强优化
|
||||
2. DIY浮动导航支持快捷导航
|
||||
3. 订单单号支持复制
|
||||
4. 在线客服企业微信客服适配h5处理
|
||||
5. 多商户首页支持分类筛选
|
||||
6. 商品、文章、活动配置、组合搭配、博客、门店、多商户支持分享图片
|
||||
7. 商品详情购买按钮增加链接和复制事件
|
||||
8. 门店类型选择优化
|
||||
9. 支持同城模式
|
||||
10. 新增问诊开方支持购物车
|
||||
11. 优惠券新增详情
|
||||
|
||||
|
||||
## v6.4.0(2024-12-25)
|
||||
1. 支付宝小程序兼容性优化
|
||||
2. DIY支持新特性和细节优化
|
||||
|
|
|
|||
|
|
@ -146,8 +146,8 @@
|
|||
title: this.data.seo_title || this.data.title,
|
||||
desc: this.data.seo_desc || this.data.describe,
|
||||
path: '/pages/plugins/activity/detail/detail',
|
||||
query: 'id=' + this.data.id,
|
||||
img: this.data.cover,
|
||||
query: 'id=' + this.data.id,
|
||||
img: this.data.share_images || this.data.cover,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -221,7 +221,7 @@
|
|||
desc: this.data.seo_desc || this.data.describe,
|
||||
path: '/pages/plugins/binding/detail/detail',
|
||||
query: 'id=' + this.data.id,
|
||||
img: this.data.images,
|
||||
img: this.data.share_images || this.data.images,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -207,8 +207,8 @@
|
|||
title: info.seo_title || info.title,
|
||||
desc: info.seo_desc || info.describe,
|
||||
path: '/pages/plugins/blog/detail/detail',
|
||||
query: 'id=' + info.id,
|
||||
img: info.cover,
|
||||
query: 'id=' + info.id,
|
||||
img: info.share_images || info.cover,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -575,7 +575,7 @@
|
|||
desc: this.info.seo_desc || this.info.describe,
|
||||
path: '/pages/plugins/realstore/detail/detail',
|
||||
query: 'id=' + this.info.id,
|
||||
img: this.info.logo,
|
||||
img: this.info.share_images || this.info.logo,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -198,8 +198,8 @@
|
|||
title: this.shop.seo_title || this.shop.name,
|
||||
desc: this.shop.seo_desc || this.shop.describe,
|
||||
path: '/pages/plugins/shop/detail/detail',
|
||||
query: 'id=' + this.shop.id,
|
||||
img: this.shop.logo,
|
||||
query: 'id=' + this.shop.id,
|
||||
img: this.shop.share_images || this.shop.logo,
|
||||
},
|
||||
});
|
||||
// 标题名称
|
||||
|
|
|
|||
Loading…
Reference in New Issue