diff --git a/src/main/java/com/budwk/app/zhgh/activity/family/controller/manage/FamilyActivityApplyController.java b/src/main/java/com/budwk/app/zhgh/activity/family/controller/manage/FamilyActivityApplyController.java
index 31a437e5..ca51de3c 100644
--- a/src/main/java/com/budwk/app/zhgh/activity/family/controller/manage/FamilyActivityApplyController.java
+++ b/src/main/java/com/budwk/app/zhgh/activity/family/controller/manage/FamilyActivityApplyController.java
@@ -87,12 +87,10 @@ public class FamilyActivityApplyController {
cnd.andEX("`year`", "=", year);
//查询报名中
if (activityType == 2) {
- cnd.and(new Static("now() > activitySignUpStartTime and now() < activitySignUpEndTime"));
+ cnd.and(new Static("now() < activitySignUpEndTime"));
}//查询已结束的
else if (activityType == 3) {
- cnd.and(new Static("now() > activityEndTime"));
- } else if (activityType == 4) {
- cnd.and(new Static("now() < activitySignUpStartTime"));
+ cnd.and(new Static("now() >= activityEndTime"));
}
if (AuthUtil.hasRole("H04") && !AuthUtil.hasRoleOr("sysadmin, A06")) {
diff --git a/src/main/resources/views/platform/zhgh/activity/family/apply/index.html b/src/main/resources/views/platform/zhgh/activity/family/apply/index.html
index 79b16fa1..c05a7f24 100644
--- a/src/main/resources/views/platform/zhgh/activity/family/apply/index.html
+++ b/src/main/resources/views/platform/zhgh/activity/family/apply/index.html
@@ -72,8 +72,7 @@ layout("/layouts/platform.html"){
-
-
+
@@ -108,8 +107,13 @@ layout("/layouts/platform.html"){
- 查看介绍
- 去报名
+
+ 查看介绍
+ 去报名
+
+
+ 已结束
+
@@ -160,7 +164,7 @@ layout("/layouts/platform.html"){
return {
pageForm: {
year: this.$moment().format("YYYY"),
- activityType: 4
+ activityType: 2
},
tableColumns: [
{ label: "活动名称", prop: "activityName", width: 600},
diff --git a/src/main/resources/views/platform/zhgh/club/join/apply/index.html b/src/main/resources/views/platform/zhgh/club/join/apply/index.html
index 4b403cb0..806899e9 100644
--- a/src/main/resources/views/platform/zhgh/club/join/apply/index.html
+++ b/src/main/resources/views/platform/zhgh/club/join/apply/index.html
@@ -244,6 +244,7 @@ layout("/layouts/platform.html"){
this.$set(this.formData, "unionName", user.union ? user.union.name : null)
this.$set(this.formData, "sex", user.sex)
this.$set(this.formData, "birthday", user.birthday ? this.$moment(user.birthday).format('YYYY-MM-DD') : '')
+ this.$set(this.formData, "mobile", user.mobile)
this.$set(this.formData, "nation", user.nation)
this.$set(this.formData, "political", user.political)
this.$set(this.formData, "education", user.education)
diff --git a/src/main/resources/views/platform/zhghh5/activity/family/apply/index.html b/src/main/resources/views/platform/zhghh5/activity/family/apply/index.html
index 28f8bed6..a777ec53 100644
--- a/src/main/resources/views/platform/zhghh5/activity/family/apply/index.html
+++ b/src/main/resources/views/platform/zhghh5/activity/family/apply/index.html
@@ -24,6 +24,11 @@ layout("/layouts/platform_h5.html"){
.van-count-down {
color: #fff;
}
+ .item-header .van-tag {
+ font-size: 12px;
+ padding: 3px 6px;
+ border-radius: 6px;
+ }
@@ -40,10 +45,25 @@ layout("/layouts/platform_h5.html"){
+
+
+
{{row.activityGroupName}}
@@ -54,14 +74,16 @@ layout("/layouts/platform_h5.html"){
-
-
- 查看介绍
-
-
-
- 去报名
-
+
+
+
+ 查看介绍
+
+
+
+ 去报名
+
+
@@ -105,12 +127,11 @@ layout("/layouts/platform_h5.html"){
totalCount: 0,
searchKeyword: '',
year: new Date().getFullYear(),
- activityType: 4,
+ activityType: 2,
},
typeOptions: [
{text: '全部', value: 1},
- {text: '即将开始', value: 4},
- {text: '报名中', value: 2},
+ {text: '即将开始 & 报名中', value: 2},
{text: '已结束', value: 3},
],
infoVisible: false,
diff --git a/src/main/resources/views/platform/zhghh5/club/apply/index.html b/src/main/resources/views/platform/zhghh5/club/apply/index.html
index 53333cad..19fa2bdd 100644
--- a/src/main/resources/views/platform/zhghh5/club/apply/index.html
+++ b/src/main/resources/views/platform/zhghh5/club/apply/index.html
@@ -271,6 +271,7 @@ layout("/layouts/platform_h5.html"){
this.$set(this.formData, "sex", user.sex)
this.$set(this.formData, "birthday", user.birthday ? this.$moment(user.birthday).format('YYYY-MM-DD') : '')
this.$set(this.formData, "nation", user.nation)
+ this.$set(this.formData, "mobile", user.mobile)
this.$set(this.formData, "political", user.political)
this.$set(this.formData, "education", user.education)
this.$set(this.formData, "technicalTitle", user.technicalTitle)