|
@@ -136,17 +136,26 @@ export default {
|
|
|
})
|
|
|
.then((res) => {
|
|
|
if (res.Ret == 200) {
|
|
|
- uni.showModal({
|
|
|
- confirmText: "知道了",
|
|
|
- confirmColor: "#376cbb",
|
|
|
- content: res.Msg || res.Data.PopupMsg,
|
|
|
- showCancel: false,
|
|
|
- success: (res) => {
|
|
|
- if (res.confirm) {
|
|
|
- this.getActivityDetail();
|
|
|
- }
|
|
|
- },
|
|
|
- });
|
|
|
+ this.hasPermission = res.Data.HasPermission;
|
|
|
+ this.jurisdictionList = res.Data;
|
|
|
+ this.jurisdictionList.isActivityDetail = true;
|
|
|
+ if (res.Data.SignupStatus !== "Success") {
|
|
|
+ this.isShow = true;
|
|
|
+ } else {
|
|
|
+ if (res.Data.SignupStatus == "Success") this.isShow = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ // uni.showModal({
|
|
|
+ // confirmText: "知道了",
|
|
|
+ // confirmColor: "#376cbb",
|
|
|
+ // content: res.Msg || res.Data.PopupMsg,
|
|
|
+ // showCancel: false,
|
|
|
+ // success: (res) => {
|
|
|
+ // if (res.confirm) {
|
|
|
+ // this.getActivityDetail();
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // });
|
|
|
}
|
|
|
});
|
|
|
},
|