|
|
@@ -131,7 +131,8 @@ export default {
|
|
|
const firstOrder = this.list.data && this.list.data.length > 0 ? this.list.data[0] : {}
|
|
|
const customName = firstOrder.customName ? firstOrder.customName : ''
|
|
|
const count = this.list.data ? this.list.data.length : 0
|
|
|
- this.shareTitle = customName + ' 共' + count + '个订单'
|
|
|
+ const totalPrice = info.totalPrice != null && info.totalPrice !== '' ? parseFloat(info.totalPrice) : 0
|
|
|
+ this.shareTitle = customName + ' 共' + count + '个订单 ¥' + totalPrice
|
|
|
const share = this.getShareConfig()
|
|
|
// #ifdef APP-PLUS
|
|
|
const miniOriginalId =
|