...
|
...
|
@@ -98,7 +98,7 @@ class GroupPurchaseContainer extends Component { |
|
|
}
|
|
|
|
|
|
shareSnapshootAction(shareType,url) {
|
|
|
let fromPage = 'GroupPurchaseDetail';
|
|
|
let fromPage = 'GroupPurchase';
|
|
|
let param = {
|
|
|
shareType,
|
|
|
imageUrl: url,
|
...
|
...
|
@@ -123,7 +123,13 @@ class GroupPurchaseContainer extends Component { |
|
|
if (!resource) {
|
|
|
return;
|
|
|
}
|
|
|
let miniProgramPath = '/pages/group/list?activityId=' + activityId;
|
|
|
|
|
|
let miniProgramPath;
|
|
|
if (activityId == null) {
|
|
|
miniProgramPath = '/pages/group/list?';
|
|
|
} else {
|
|
|
miniProgramPath = '/pages/group/list?activityId=' + activityId;
|
|
|
}
|
|
|
miniProgramPath = Helper.joinWxProgramPath(miniProgramPath, groupListParams)
|
|
|
|
|
|
let fromPage = 'GroupPurchase';
|
...
|
...
|
|