Merge remote-tracking branch 'origin/main'

This commit is contained in:
那些花儿
2025-09-16 17:49:02 +08:00
15 changed files with 395 additions and 72 deletions
@@ -76,7 +76,10 @@ public class SysH5IndexController {
Date startDate = activity.getStartDate(); Date startDate = activity.getStartDate();
Date endDate = activity.getEndDate(); Date endDate = activity.getEndDate();
// 判断当前时间是否在活动范围内,不在就过滤掉 // 判断当前时间是否在活动范围内,不在就过滤掉
if (!DateUtil.isIn(today, startDate, endDate)) { /*if (!DateUtil.isIn(today, startDate, endDate)) {
continue;
}*/
if(DateUtil.compare(today, endDate) > 0) {
continue; continue;
} }
Integer allowUserGroupId = activity.getAllowUserGroupId(); Integer allowUserGroupId = activity.getAllowUserGroupId();
@@ -176,7 +176,10 @@ public class SysHomeController {
Date startDate = activity.getStartDate(); Date startDate = activity.getStartDate();
Date endDate = activity.getEndDate(); Date endDate = activity.getEndDate();
// 判断当前时间是否在活动范围内,不在就过滤掉 // 判断当前时间是否在活动范围内,不在就过滤掉
if (!DateUtil.isIn(today, startDate, endDate)) { /*if (!DateUtil.isIn(today, startDate, endDate)) {
continue;
}*/
if(DateUtil.compare(today, endDate) > 0) {
continue; continue;
} }
Integer allowUserGroupId = activity.getAllowUserGroupId(); Integer allowUserGroupId = activity.getAllowUserGroupId();
@@ -100,7 +100,7 @@ public class FamilyActivityApplyController {
} }
if("mine".equals(dataType)) { if("mine".equals(dataType)) {
cnd.and(new Static("id in (select activityId from train_sign_up_user where userId = '%s')".formatted(SecurityUtil.getUserId()))); cnd.and(new Static("id in (select activityId from family_user where userId = '%s')".formatted(SecurityUtil.getUserId())));
} }
Pagination pagination = familyActivityService.listPage(pageForm.getPageNumber(), pageForm.getPageSize(), cnd); Pagination pagination = familyActivityService.listPage(pageForm.getPageNumber(), pageForm.getPageSize(), cnd);
@@ -135,7 +135,7 @@ public class FamilyActivityApplyController {
} }
if("mine".equals(dataType)) { if("mine".equals(dataType)) {
cnd.and(new Static("tsuc.id in (select courseId from train_sign_up_user where userId = '%s')".formatted(SecurityUtil.getUserId()))); cnd.and(new Static("tsuc.id in (select courseId from family_user where userId = '%s')".formatted(SecurityUtil.getUserId())));
} }
List<FamilyCourse> courseArray = familyActivityService.dao().query(FamilyCourse.class, Cnd.where("activityId", "=", activityId)); List<FamilyCourse> courseArray = familyActivityService.dao().query(FamilyCourse.class, Cnd.where("activityId", "=", activityId));
@@ -335,12 +335,13 @@ public class FamilyActivityApplyController {
if(courseByUser) { if(courseByUser) {
return Result.error(99,"您已报过该活动"); return Result.error(99,"您已报过该活动");
} }
FamilyActivity activity = familyActivityService.fetch(familyUser.getActivityId());
boolean validFamilyCount = familyActivityService.validFamilyCount(familyUser); Map<Boolean, String> validFamilyCount = familyActivityService.validFamilyCount(familyUser);
if(validFamilyCount) { if(validFamilyCount.containsKey(false)) {
return Result.error(99,activity.getKeyWord() + "人数最多为" + activity.getFamilyMaxCount()); //return Result.error(99,activity.getKeyWord() + "人数最多为" + activity.getFamilyMaxCount());
return Result.error(99,validFamilyCount.get(false));
} }
//判断人数 // 判断人数
int number = 0; int number = 0;
FamilyCourse course = familyActivityService.dao().fetch(FamilyCourse.class, familyUser.getCourseId()); FamilyCourse course = familyActivityService.dao().fetch(FamilyCourse.class, familyUser.getCourseId());
FamilyType type = familyActivityService.dao().fetch(FamilyType.class, course.getCourseType()); FamilyType type = familyActivityService.dao().fetch(FamilyType.class, course.getCourseType());
@@ -138,4 +138,26 @@ public class FamilyMineController {
List<NutMap> listMap = activityService.listMap(sql); List<NutMap> listMap = activityService.listMap(sql);
return Result.success(listMap); return Result.success(listMap);
} }
@At
@ApiOperation("获取我报名的课程")
@SaCheckPermission(value = {"family.apply", "h5.family.apply"}, mode = SaMode.OR)
public Result queryMineCourse(String activityId) {
Sql sql = Sqls.create("""
SELECT
c.*,
u.mobileColumnsValue
FROM
family_user u
LEFT JOIN family_course c ON c.id = u.courseId
$condition
""");
Cnd cnd = Cnd.NEW();
cnd.and("u.activityId", "=", activityId);
cnd.and("u.userId", "=", SecurityUtil.getUserId());
sql.setCondition(cnd);
List<NutMap> listMap = activityService.listMap(sql);
return Result.success(listMap);
}
} }
@@ -10,6 +10,7 @@ import org.nutz.dao.Cnd;
import org.nutz.lang.util.NutMap; import org.nutz.lang.util.NutMap;
import java.util.List; import java.util.List;
import java.util.Map;
/** /**
* @author NINGMEI * @author NINGMEI
@@ -85,7 +86,7 @@ public interface FamilyActivityService extends BaseService<FamilyActivity> {
*/ */
boolean isSignFull(FamilyCourse course, Integer currentFamilyNumber); boolean isSignFull(FamilyCourse course, Integer currentFamilyNumber);
boolean validFamilyCount(FamilyUser user); Map<Boolean, String> validFamilyCount(FamilyUser user);
/** /**
* 还能报该类型的培训班吗 比如书画班最多报一项 健身班两项 * 还能报该类型的培训班吗 比如书画班最多报一项 健身班两项
@@ -370,13 +370,11 @@ public class FamilyActivityServiceImpl extends BaseServiceImpl<FamilyActivity> i
} }
@Override @Override
public boolean validFamilyCount(FamilyUser user) { public Map<Boolean, String> validFamilyCount(FamilyUser user) {
String activityId = user.getActivityId(); String activityId = user.getActivityId();
// 查询报名记录 // 查询报名记录
List<FamilyUser> list = dao().query(FamilyUser.class, Cnd.where(FamilyUser::getActivityId, "=", activityId).and(FamilyUser::getUserId, "=", SecurityUtil.getUserId())); List<FamilyUser> list = dao().query(FamilyUser.class, Cnd.where(FamilyUser::getActivityId, "=", activityId).and(FamilyUser::getUserId, "=", SecurityUtil.getUserId()));
if(Lang.isEmpty(list)) {
return false;
}
FamilyActivity activity = dao().fetch(FamilyActivity.class, activityId); FamilyActivity activity = dao().fetch(FamilyActivity.class, activityId);
List<List<NutMap>> allMobileColumnsValue = new ArrayList<>(list.stream() List<List<NutMap>> allMobileColumnsValue = new ArrayList<>(list.stream()
@@ -387,6 +385,9 @@ public class FamilyActivityServiceImpl extends BaseServiceImpl<FamilyActivity> i
allMobileColumnsValue.addAll(user.getMobileColumnsValue()); allMobileColumnsValue.addAll(user.getMobileColumnsValue());
// 后面搞活动,用这行代码吧,因为这次活动1个人可以报2个孩子,但是同一个孩子又可以报2个场地,草
//return allMobileColumnsValue.size() > activity.getFamilyMaxCount();
long count = allMobileColumnsValue.stream() long count = allMobileColumnsValue.stream()
.flatMap(List::stream) .flatMap(List::stream)
.filter(nutMap -> activity.getOnlyKey().equals(nutMap.getString("columnCode"))) .filter(nutMap -> activity.getOnlyKey().equals(nutMap.getString("columnCode")))
@@ -395,8 +396,59 @@ public class FamilyActivityServiceImpl extends BaseServiceImpl<FamilyActivity> i
.distinct() .distinct()
.count(); .count();
return count > activity.getFamilyMaxCount(); if(count > activity.getFamilyMaxCount()) {
} return Map.of(false, activity.getKeyWord() + "人数最多为" + activity.getFamilyMaxCount());
}
List<FamilyCourse> courseList = dao().query(FamilyCourse.class, Cnd.where("activityId", "=", activityId));
Map<String, String> courseMap = courseList.stream().collect(Collectors.toMap(FamilyCourse::getId, FamilyCourse::getCourseType));
List<FamilyType> typeList = dao().query(FamilyType.class, Cnd.NEW());
Map<String, String> typeMap = typeList.stream().collect(Collectors.toMap(FamilyType::getId, FamilyType::getTypeName));
List<List<NutMap>> currentValue = user.getMobileColumnsValue();
String tempValue = "";
// 循环家属
for (List<NutMap> listMap : currentValue) {
NutMap nutMap = listMap.stream().filter(o -> o.getString("columnCode").equals(activity.getOnlyKey())).findFirst().orElse(null);
if(nutMap == null) {
continue;
}
// 家属匹配唯一标识的值
String onlyKeyValue = nutMap.getString("columnValue");
if(Objects.equals(tempValue, onlyKeyValue)) {
return Map.of(false, activity.getKeyWord() + "不能重复报同一分场");
}
tempValue = onlyKeyValue;
int oneFamilyCount = 1;
for (FamilyUser hisRecord : list) {
List<List<NutMap>> hisValueList = hisRecord.getMobileColumnsValue();
for (List<NutMap> hisValue : hisValueList) {
NutMap hisNutMap = hisValue.stream().filter(o -> o.getString("columnCode").equals(activity.getOnlyKey())).findFirst().orElse(null);
if(hisNutMap == null) {
continue;
}
String hisKeyValue = hisNutMap.getString("columnValue");
// 判断是不是同一个孩子
if(Objects.equals(onlyKeyValue, hisKeyValue)) {
oneFamilyCount ++;
if(Objects.equals(courseMap.get(user.getCourseId()), courseMap.get(hisRecord.getCourseId()))) {
return Map.of(false, onlyKeyValue + "已经报名" + typeMap.get(courseMap.get(user.getCourseId())) + "分场");
}
}
}
}
if(oneFamilyCount > 2) {
return Map.of(false, "同一个" + activity.getKeyWord() + "最多报2个分场");
}
}
return Map.of(true, "");
}
@Override @Override
public boolean isSignCourse(FamilyCourse course, FamilyActivity activity) { public boolean isSignCourse(FamilyCourse course, FamilyActivity activity) {
@@ -468,6 +468,7 @@ public class WelfareListServiceImpl extends BaseServiceImpl<WelfareList> impleme
cnd.andEX("u.personType", "in", pageForm.getPersonTypes()); cnd.andEX("u.personType", "in", pageForm.getPersonTypes());
cnd.andEX("u.preparedBy", "in", pageForm.getPreparedBys()); cnd.andEX("u.preparedBy", "in", pageForm.getPreparedBys());
cnd.andEX("u.userState", "in", pageForm.getUserStates()); cnd.andEX("u.userState", "in", pageForm.getUserStates());
cnd.andEX("u.member","=",pageForm.getIsMember());
if (StrUtil.isAllBlank(pageForm.getPageOrderName(), pageForm.getPageOrderBy())) { if (StrUtil.isAllBlank(pageForm.getPageOrderName(), pageForm.getPageOrderBy())) {
cnd.asc("u.unionCode"); cnd.asc("u.unionCode");
@@ -519,6 +520,7 @@ public class WelfareListServiceImpl extends BaseServiceImpl<WelfareList> impleme
cnd.andEX("personType", "in", pageForm.getPersonTypes()); cnd.andEX("personType", "in", pageForm.getPersonTypes());
cnd.andEX("preparedBy", "in", pageForm.getPreparedBys()); cnd.andEX("preparedBy", "in", pageForm.getPreparedBys());
cnd.andEX("userState", "in", pageForm.getUserStates()); cnd.andEX("userState", "in", pageForm.getUserStates());
cnd.andEX("member","=",pageForm.getIsMember());
if (StrUtil.isAllBlank(pageForm.getPageOrderName(), pageForm.getPageOrderBy())) { if (StrUtil.isAllBlank(pageForm.getPageOrderName(), pageForm.getPageOrderBy())) {
cnd.asc("unionCode"); cnd.asc("unionCode");
@@ -22,9 +22,14 @@ const activity = {
</el-tag> </el-tag>
<el-tag class="act-item-tag" type="success" size="mini" <el-tag class="act-item-tag" type="success" size="mini"
v-else-if="$moment().unix() < $moment(item.endDate).unix()"> v-else-if="$moment().unix() > $moment(item.startDate).unix() && $moment().unix() < $moment(item.endDate).unix()">
进行中 进行中
</el-tag> </el-tag>
<el-tag class="act-item-tag" type="success" size="mini"
v-else-if="$moment().unix() < $moment(item.startDate).unix()">
即将开始
</el-tag>
</div> </div>
<div style="flex: 1;height: 90px;display: flex;flex-direction: column;justify-content: space-between;"> <div style="flex: 1;height: 90px;display: flex;flex-direction: column;justify-content: space-between;">
<div style="color: #111"> <div style="color: #111">
@@ -382,7 +382,16 @@ const basicForm = {
typeList.forEach(item => { typeList.forEach(item => {
array = array.concat(item.familyMobileSignColumnList) array = array.concat(item.familyMobileSignColumnList)
}) })
this.typeArray = array // 根据 columnCode 去重
const uniqueMap = new Map()
array.forEach(item => {
if (item.columnCode) {
uniqueMap.set(item.columnCode, item)
}
})
// 可选:保留没有 columnCode 的项
const withoutCode = array.filter(item => !item.columnCode)
this.typeArray = [...uniqueMap.values(), ...withoutCode]
}, },
async validNumber(row, old) { async validNumber(row, old) {
if (GetQueryString("id") === "") { if (GetQueryString("id") === "") {
@@ -11,9 +11,12 @@ layout("/layouts/platform_h5.html"){
text-align: center !important; text-align: center !important;
} }
.info-container { .info-container {
height: calc(100vh - 46px - 44px); margin-bottom: 60px;
min-height: calc(100vh - 46px - 44px); }
overflow-y: auto; .button {
position: fixed;
bottom: 0;
width: 100%;
} }
.info-img { .info-img {
display: block; display: block;
@@ -62,25 +65,27 @@ layout("/layouts/platform_h5.html"){
</template> </template>
</table-list> </table-list>
<van-popup v-model="infoVisible" position="right" :style="{ width: '100%', height: '100%' }"> <van-action-sheet :close-on-click-overlay="false" title="详细信息" v-model="infoVisible">
<van-nav-bar title="详细信息" left-text="返回" left-arrow @click-left="infoVisible = false" fixed placeholder></van-nav-bar>
<div class="info-container"> <div class="info-container">
<van-image class="info-img" height="186" width="100%" :src="infoRow.cover"></van-image> <div>
<div class="info-title">{{infoRow.activityName}}</div> <van-image class="info-img" height="186" width="100%" :src="infoRow.cover"></van-image>
<pdf-preview style="height: calc(100vh - 46px - 44px - 186px - 57px)" :content="infoRow.introduce"></pdf-preview> <div class="info-title">{{infoRow.activityName}}</div>
<pdf-preview :content="infoRow.introduce"></pdf-preview>
</div>
<div class="button">
<van-button @click="onApply(infoRow)" type="primary" block>
<span v-if="time >= 0">
去报名
</span>
<template v-else>
距离开始
<van-count-down :time="Math.abs(time)" class="count-down" format="DD 天 HH 时 mm 分 ss 秒" @finish="time = 0"></van-count-down>
</template>
</van-button>
</div>
</div> </div>
</van-action-sheet>
<van-button @click="onApply(infoRow)" type="primary" block>
<span v-if="time >= 0">
去报名
</span>
<template v-else>
距离开始
<van-count-down :time="Math.abs(time)" class="count-down" format="DD 天 HH 时 mm 分 ss 秒" @finish="time = 0"></van-count-down>
</template>
</van-button>
</van-popup>
</div> </div>
@@ -3,8 +3,7 @@ const applyForm = {
/*language=HTML*/ /*language=HTML*/
` `
<div> <div>
<van-popup v-model="visible" position="right" :style="{ width: '100%', height: '100%', 'background-color': '#F7F8FA' }"> <van-action-sheet :close-on-click-overlay="false" title="报名信息" v-model="visible">
<van-nav-bar title="报名信息" left-text="返回" left-arrow @click-left="visible = false" fixed placeholder></van-nav-bar>
<van-form ref="formRef" class="form-container"> <van-form ref="formRef" class="form-container">
<van-cell-group title="活动信息" class="form-section"> <van-cell-group title="活动信息" class="form-section">
<van-field label="活动名称" readonly v-model="row.courseName"></van-field> <van-field label="活动名称" readonly v-model="row.courseName"></van-field>
@@ -29,10 +28,10 @@ const applyForm = {
</van-field> </van-field>
<van-popup v-model="showCoursePicker" position="bottom"> <van-popup v-model="showCoursePicker" position="bottom">
<van-picker <van-picker
show-toolbar show-toolbar
:columns="courseTimeSelectList" :columns="courseTimeSelectList"
@confirm="onCourseConfirm" @confirm="onCourseConfirm"
@cancel="showCoursePicker=false" @cancel="showCoursePicker=false"
></van-picker> ></van-picker>
</van-popup> </van-popup>
</template> </template>
@@ -65,11 +64,11 @@ const applyForm = {
</div> </div>
</van-cell-group> </van-cell-group>
<div class="form-actions"> <div class="button">
<van-button @click="onSubmit" round type="info">提交</van-button> <van-button @click="onSubmit" type="info" block>提交</van-button>
</div> </div>
</van-form> </van-form>
</van-popup> </van-action-sheet>
</div> </div>
`, `,
data() { data() {
@@ -329,15 +328,16 @@ const applyForm = {
}, },
}, },
style: /*language=CSS*/ ` style: /*language=CSS*/ `
.form-container {
height: calc(100vh - 46px - 64px - 20px);
overflow-y: auto;
}
.companionList_empty_text { .companionList_empty_text {
text-align: center; text-align: center;
padding: 10px 0; padding: 10px 0;
font-size: 14px; font-size: 14px;
color: grey; color: grey;
} }
.button {
position: fixed;
bottom: 0;
width: 100%;
}
` `
} }
@@ -83,10 +83,9 @@ layout("/layouts/platform_h5.html"){
</template> </template>
</table-list> </table-list>
<van-popup v-model="introduceVisible" position="right" :style="{ width: '100%', height: '100%', 'background-color': '#F7F8FA' }"> <van-action-sheet :close-on-click-overlay="false" title="详细信息" v-model="introduceVisible" cancel-text="取消">
<van-nav-bar title="详细信息" left-text="返回" left-arrow @click-left="introduceVisible = false" fixed placeholder></van-nav-bar> <pdf-preview :content="introduceRow.introduce"></pdf-preview>
<pdf-preview style="height: calc(100vh - 46px)" :content="introduceRow.introduce"></pdf-preview> </van-action-sheet>
</van-popup>
<times ref="timesRef"></times> <times ref="timesRef"></times>
<apply-form ref="formRef" @refresh="refresh"></apply-form> <apply-form ref="formRef" @refresh="refresh"></apply-form>
@@ -11,9 +11,12 @@ layout("/layouts/platform_h5.html"){
text-align: center !important; text-align: center !important;
} }
.info-container { .info-container {
height: calc(100vh - 46px - 44px);
min-height: calc(100vh - 46px - 44px); }
overflow-y: auto; .button {
position: fixed;
bottom: 0;
width: 100%;
} }
.info-img { .info-img {
display: block; display: block;
@@ -21,6 +24,170 @@ layout("/layouts/platform_h5.html"){
.van-count-down { .van-count-down {
color: #fff; color: #fff;
} }
.table-list-container {
padding: 0;
margin-top: 10px;
}
.table-list-container .table-list-item {
background-color: #fff;
border-bottom: 1px solid #eaecef;
padding: 16px;
position: relative;
margin-bottom: 10px;
}
.table-list-container .table-list-item:last-child {
border-bottom: none;
margin-bottom: 0;
}
.table-list-container .table-list-item .item-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 10px;
}
.table-list-container .table-list-item .item-title {
font-size: 16px;
font-weight: 500;
color: #1f2f3d;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1;
padding-right: 10px;
}
.table-list-container .table-list-item .img-container {
width: 100px;
height: 100px;
flex-shrink: 0;
border-radius: 6px;
}
.table-list-container .table-list-item .img-container img {
width: 100%;
height: 100%;
border-radius: 6px;
}
.table-list-container .table-list-item .item-meta {
display: flex;
color: #606266;
font-size: 14px;
margin-bottom: 5px;
padding: 4px 0;
}
.table-list-container .table-list-item .meta-item {
display: flex;
align-items: center;
gap: 8px;
width: 100%;
}
.table-list-container .table-list-item .meta-item i {
font-size: 14px;
color: #909399;
width: 16px;
text-align: center;
}
.table-list-container .table-list-item .item-content {
color: #606266;
font-size: 14px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
line-height: 1.5;
}
.table-list-container .table-list-item .item-footer {
display: flex;
justify-content: space-between;
margin-top: 12px;
padding-top: 8px;
border-top: 1px dashed #eaecef;
color: #909399;
font-size: 13px;
}
.table-list-container .table-list-item .item-actions {
display: flex;
column-gap: 20px;
justify-content: end;
margin-top: 15px;
padding-top: 12px;
border-top: 1px solid #eaecef;
}
.table-list-container .table-list-item .action-btn {
display: flex;
align-items: center;
justify-content: end;
font-size: 14px;
color: var(--color-primary);
padding: 4px 0;
}
.table-list-container .table-list-item .action-btn i {
margin-right: 6px;
font-size: 16px;
}
.table-list-container .table-list-item .action-btn.delete {
color: #ff0000;
}
.table-list-container .table-list-item .action-btn.review {
color: #67c23a;
}
.table-list-container .empty-state {
text-align: center;
padding: 60px 20px;
color: #909399;
}
.table-list-container .empty-state i {
font-size: 60px;
margin-bottom: 16px;
color: #dcdee0;
}
.table-list-container .empty-state p {
margin-top: 10px;
font-size: 14px;
}
.table-column {
display: flex;
padding: 6px 0;
align-items: center;
}
.label {
color: #333;
font-size: 14px;
flex-shrink: 0;
max-width: 120px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.value {
color: #555;
font-size: 14px;
flex-grow: 1; /* 动态占据剩余部分 */
white-space: nowrap; /* 防止换行 */
overflow: hidden; /* 隐藏溢出的部分 */
text-overflow: ellipsis; /* 省略号 */
}
</style> </style>
<div id="app"> <div id="app">
@@ -53,26 +220,66 @@ layout("/layouts/platform_h5.html"){
<template #actions="{index,row}"> <template #actions="{index,row}">
<div class="action-btn" @click="onView(row)"> <div class="action-btn" @click="onView(row)">
<i class="fa fa-eye"></i> <i class="fa fa-eye"></i>
<span>查看介绍</span> <span>活动介绍</span>
</div>
<div class="action-btn" @click="onInfo(row)">
<i class="fa fa-eye"></i>
<span>{{row.keyWord}}信息</span>
</div> </div>
<div class="action-btn" @click="onApply(row)"> <div class="action-btn" @click="onApply(row)">
<i class="fa fa-edit"></i> <i class="fa fa-edit"></i>
<span>查看</span> <span>操作</span>
</div> </div>
</template> </template>
</table-list> </table-list>
<van-popup v-model="infoVisible" position="right" :style="{ width: '100%', height: '100%' }"> <van-action-sheet :close-on-click-overlay="false" title="活动详细信息" v-model="infoVisible" cancel-text="取消">
<van-nav-bar title="详细信息" left-text="返回" left-arrow @click-left="infoVisible = false" fixed placeholder></van-nav-bar>
<div class="info-container"> <div class="info-container">
<van-image class="info-img" height="186" width="100%" :src="infoRow.cover"></van-image> <div>
<div class="info-title">{{infoRow.activityName}}</div> <van-image class="info-img" height="186" width="100%" :src="infoRow.cover"></van-image>
<pdf-preview style="height: calc(100vh - 46px - 44px - 186px - 57px)" :content="infoRow.introduce"></pdf-preview> <div class="info-title">{{infoRow.activityName}}</div>
<pdf-preview :content="infoRow.introduce"></pdf-preview>
</div>
</div> </div>
</van-action-sheet>
<van-button @click="onApply(infoRow)" type="primary" block>下一步</van-button> <van-action-sheet :close-on-click-overlay="false" title="报名信息" v-model="courseVisible" cancel-text="取消">
</van-popup> <div class="table-list-container">
<div v-for="(row, index) in mineCourses" :key="index" class="table-list-item">
<div class="item-header">
<div class="item-title" style="white-space: normal">{{ row.courseName }}</div>
</div>
<div style="display: flex;column-gap: 10px">
<div class="table-column">
<div class="label">校区:</div>
<div class="value">{{ row.campus }}</div>
</div>
</div>
<div style="display: flex;column-gap: 10px">
<div class="table-column">
<div class="label">地点:</div>
<div class="value">{{ row.courseLocation }}</div>
</div>
</div>
<div style="display: flex;column-gap: 10px">
<div class="table-column">
<div class="label">联系人:</div>
<div class="value">{{ row.courseInstructor }}</div>
</div>
</div>
<div style="display: flex;column-gap: 10px">
<div class="table-column">
<div class="label">家属人数:</div>
<div class="value">
{{ row.mobileColumnsValue ? JSON.parse(row.mobileColumnsValue).length : '暂无' }}
</div>
</div>
</div>
</div>
<div class="item-actions"></div>
</div>
</van-action-sheet>
</div> </div>
@@ -101,6 +308,9 @@ layout("/layouts/platform_h5.html"){
], ],
infoVisible: false, infoVisible: false,
infoRow: {}, infoRow: {},
mineCourses: [],
courseVisible: false,
} }
}, },
methods: { methods: {
@@ -111,6 +321,13 @@ layout("/layouts/platform_h5.html"){
onApply(row) { onApply(row) {
this.$pjaxReplace('/platform/family/apply/list/h5?id=' + row.id + '&dataType=mine') this.$pjaxReplace('/platform/family/apply/list/h5?id=' + row.id + '&dataType=mine')
}, },
onInfo(row) {
this.$axios.post('/platform/family/mine/queryMineCourse', {activityId: row.id})
.then((res) => {
this.mineCourses = res.data
this.courseVisible = true
})
},
onReady() { onReady() {
this.doSearch() this.doSearch()
}, },
@@ -38,10 +38,14 @@ const home = {
已结束 已结束
</van-tag> </van-tag>
<van-tag class="act-item-wrapper-tag" type="success" v-else-if="$moment().unix() < $moment(item.endDate).unix()"> <van-tag class="act-item-wrapper-tag" type="success" v-else-if="$moment().unix() > $moment(item.startDate).unix() && $moment().unix() < $moment(item.endDate).unix()">
进行中 进行中
</van-tag> </van-tag>
<van-tag class="act-item-wrapper-tag" type="primary" v-else-if="$moment().unix() < $moment(item.startDate).unix()">
即将开始
</van-tag>
<div class="act-item-cover"> <div class="act-item-cover">
<van-image v-if="item.cover" width="120" height="84" :src="item.cover"></van-image> <van-image v-if="item.cover" width="120" height="84" :src="item.cover"></van-image>
</div> </div>
@@ -6,7 +6,7 @@ layout("/layouts/platform_h5.html"){
<div id="app" v-cloak> <div id="app" v-cloak>
<div> <div>
<div> <div style="height: calc(100vh - 50px); overflow-y: auto">
<home v-if="homeTabbarActive === 'home'" @module-click="moduleClick"></home> <home v-if="homeTabbarActive === 'home'" @module-click="moduleClick"></home>
<work v-if="homeTabbarActive === 'work'"></work> <work v-if="homeTabbarActive === 'work'"></work>
<mine v-if="homeTabbarActive === 'mine'"></mine> <mine v-if="homeTabbarActive === 'mine'"></mine>