|
@@ -329,7 +329,7 @@ export default {
|
|
|
state: 1,
|
|
|
name: "conference",
|
|
|
};
|
|
|
- this.parentDataEmit(item, "IsCancelMeetingReminder", 1);
|
|
|
+ res.Data.SignupStatus == "Success" && this.parentDataEmit(item, "IsCancelMeetingReminder", 1);
|
|
|
} else if (this.hasPermission == 2) {
|
|
|
this.isShowhasPermission = true;
|
|
|
} else if (this.hasPermission == 3 || this.hasPermission == 4 || this.hasPermission == 5) {
|
|
@@ -370,9 +370,23 @@ export default {
|
|
|
this.hasPermission = res.Data.HasPermission;
|
|
|
this.jurisdictionList = res.Data;
|
|
|
if (this.hasPermission == 1) {
|
|
|
- uni.navigateTo({
|
|
|
- url: "/activityPages/generationAsk/generationAsk?id=" + item.ActivityId + "&type=" + type,
|
|
|
- });
|
|
|
+ if (res.Data.SignupStatus === "Success") {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: "/activityPages/generationAsk/generationAsk?id=" + item.ActivityId + "&type=" + type,
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ uni.showModal({
|
|
|
+ confirmText: "知道了",
|
|
|
+ confirmColor: "#376cbb",
|
|
|
+ content: res.Msg || res.Data.PopupMsg,
|
|
|
+ showCancel: false,
|
|
|
+ success: (res) => {
|
|
|
+ if (res.confirm) {
|
|
|
+ this.getActivityDetail();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
} else if (this.hasPermission == 2) {
|
|
|
this.isShowhasPermission = true;
|
|
|
} else if (this.hasPermission == 3 || this.hasPermission == 4 || this.hasPermission == 5) {
|