# 0719 民健 修改
### activity_selectallforhost.jsp
197行 改成
`
<c:if test="${activityVO.actsta=='上架待成團' ||activityVO.actsta=='上架已成團'}">value="Disabled" disabled</c:if>>
`
### activity_selectallforguest.jsp
401~442行 改成
` $(document).ready(function(){
$(".gogogo").click(function(){
if($("#stupoint").val()<=0){
Swal.fire({
title:'注意',
text:'點數不夠要儲值嗎?',
icon:'warning',
showCancelButton:true,
showConfirmButton:true,
dangerMode:true
}).then((result)=>{
if (result.value) {
setTimeout(function(){
$("#depform").submit();
},2000);
Swal.fire('成功','感謝您的儲值','success');
} else {
Swal.fire('取消','您尚未儲值喔','error');
}
});
}else{
Swal.fire({
title:'注意',
text:'您確定要此活動嗎',
icon:'warning',
showCancelButton:true,
showConfirmButton:true,
dangerMode:true
}).then((result)=>{
if(result.value){
setTimeout(function(){
$('.gogogo').parent().submit();
},2000);
Swal.fire('成功','感謝您報名Fitmate的活動','success');
}else
Swal.fire('取消','還沒決定好嗎,歡迎再多看看我們的活動喔!!','error');
});
}
});
});
`