This commit is contained in:
2026-09-09 16:16:22 +08:00
parent ebffbab428
commit ba3a985c40
3749 changed files with 29 additions and 608551 deletions
@@ -1,396 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.search-fixed {
z-index: 2;
}
.register-icon {
position: absolute;
bottom: 8px;
right: 16px;
z-index: 1;
}
.list-card > .van-cell-group {
position: relative;
}
.list-card .van-cell {
padding: 3px 16px;
}
.list-card .van-cell__value {
flex: 2;
}
</style>
<div id="app" v-cloak>
<van-nav-bar :title="title" @click-left="history.back()" fixed left-arrow
placeholder></van-nav-bar>
<div class="search-fixed">
<van-dropdown-menu active-color="#1989fa">
<!-- <van-dropdown-item v-model="pageForm.isMenWomen" @change="yearChange"
:options="sexList"></van-dropdown-item>-->
<van-dropdown-item v-model="pageForm.groupName" @change="yearChange"
:options="groupList"></van-dropdown-item>
<van-dropdown-item :options="eventList" @change="yearChange"
v-model="pageForm.eventId"></van-dropdown-item>
<van-dropdown-item :options="auditList" @change="yearChange"
v-model="pageForm.isAudit"></van-dropdown-item>
</van-dropdown-menu>
</div>
<div style="margin: 60px auto 0 auto">
<van-list :finished="finished" :finished-text="tableData.length>0?'没有更多了':''"
v-model="loading"
@load="pageData">
<div v-for="o in tableData" class="list-card">
<van-cell-group inset>
<image class="register-icon" src="/assets/mobile/svg/activity/wbm.svg"
@click="openActivity(o)"
v-if="o.userApply==0&&o.applyWay.includes(1)"></image>
<image class="register-icon" src="/assets/mobile/svg/activity/qxbm.svg"
@click="openActivity(o)"
v-if="o.userApply>0&&o.applyWay.includes(1)"></image>
<van-cell :border="false" title="项目名称">
<span :style="{color:themeColor}" class="van-ellipsis"
style="font-size: 16px;">
{{o.allName}}
</span>
</van-cell>
<van-cell :border="false" title="项目类型">{{o.projectType==1?'单项':'团体'}}</van-cell>
<van-cell :border="false" title="您报队伍">
{{o.activityTeamName?o.activityTeamName:'暂无'}}
</van-cell>
<van-cell :border="false" title="年龄限制" v-if="o.projectType==1">
<span v-if="o.startAgeDate!=null">{{o.startAgeDate}}至{{o.endAgeDate}}</span>
<span v-else>暂无</span>
</van-cell>
<van-cell :border="false" title="可报队数" v-if="o.projectType==2">
{{o.restrictTotalTeam}}队
</van-cell>
<van-cell :border="false" title="每队可报人数" v-if="o.applyUserModel===1">
<span v-if="o.athletesMaxNum">{{o.athletesMaxNum}}人</span>
<span v-else-if="o.applyType==1">{{o.athletesMaxNum*o.restrictTotalTeam}}人</span>
<span v-else-if="o.applyType==2&&o.projectType==1">{{o.athletesMaxNum}}人</span>
<span v-else-if="o.applyType==2&&o.projectType==2">{{o.restrictGirlNum+o.restrictBoyNum}}人</span>
<span v-else>暂无</span>
</van-cell>
<van-cell :border="false" title="成功报名人数">
<span v-if="o.applyNum>0&&o.applyType!=3">{{o.applyNum}}人</span>
<span v-else-if="o.totalApplyNum>0&&o.applyType==3">{{o.totalApplyNum}}人</span>
<span v-else>0人</span>
</van-cell>
</van-cell-group>
</div>
</van-list>
</div>
<van-dialog @confirm="doActivityConfirm" show-cancel-button title="您确定要报名此活动吗?"
v-model="activityDialog"
@cancel="activityDialog = false" :before-close="onBeforeClose">
<van-radio-group v-model="formData.teamId" v-if="projectType==2">
<van-cell-group>
<template v-for="i in teams">
<van-cell :title="i.name" clickable>
<template #right-icon>
<van-radio :name="i.id"></van-radio>
</template>
</van-cell>
</template>
</van-cell-group>
</van-radio-group>
</van-dialog>
<van-empty v-if="mLoading==false&&tableData.length==0" class="custom-image" image="/none.svg"
description="暂无数据">
</van-empty>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
formData: {
teamId: null,
teamName: null,
activityId: "",
eventId: ""
},
title: "",
projectType: "",
applyType: "",
activityDialog: false,
restrictBoyNum: "",
restrictGirlNum: "",
athletesMaxNum: "",
events: [],
eventList: [],
groupList: [
{text: '按组别', value: null},
{text: '甲组', value: '甲组'},
{text: '乙组', value: '乙组'},
{text: '丙组', value: '丙组'},
{text: '丁组', value: '丁组'},
],
sexList: [
{text: '按性别', value: 1},
{text: '男子', value: 2},
{text: '女子', value: 3},
{text: '团体', value: 4},
],
auditList: [
{text: '全部', value: null},
{text: '已报名', value: "true"},
{text: '未报名', value: "false"},
],
teams: [],
yearOption: [],
pageForm: {
year: '',
isMenWomen: "1"
}
}
},
methods: {
onBeforeClose(action, done) {
return done(false)
},
async doActivityConfirm() {
if (this.formData.teamId == null && this.projectType == 2) {
this.$toast("请选择报名的小队")
return
} else {
const {data} = await $.post("/mobile/activity/Sports/list/getTeamUserData", {
teamId: this.formData.teamId,
activityId: this.formData.activityId,
eventId: this.formData.eventId,
applyType: this.applyType
})
const nv = data.filter(v => v.sex === '女')
const nan = data.filter(v => v.sex === '男')
let title = this.projectType === 1 ? "项目" : "小队"
/* if (this.applyType !== 3) {
if (this.isManGirlNum === false && "${@shiro.getPrincipalProperty('sex')}" == '男' && nan.length == (this.applyType === 1 ? (this.athletesMaxNum - this.restrictGirlNum) : this.restrictBoyNum)) {
this.$toast("该" + title + "男运动员已报满!")
return
}
if (this.isManGirlNum === false && "${@shiro.getPrincipalProperty('sex')}" == '女' && nv.length == (this.applyType === 1 ? (this.athletesMaxNum - this.restrictBoyNum) : this.restrictGirlNum)) {
this.$toast("该" + title + "女运动员已报满!")
return
}
}*/
if (this.athletesMaxNum && (data.length >= this.athletesMaxNum)) {
this.$toast("该" + title + "人员已报满!")
return
}
if (this.formData.teamId != null) this.$set(this.formData, "teamName", this.teams.find(v => v.id == this.formData.teamId).name)
await $.post("/mobile/activity/Sports/list/doActivity", this.formData)
await this.onRefresh()
this.activityDialog = false
}
},
async openActivity(o) {
let {
isManGirlNum,
applyType,
eventId,
activityId,
projectType,
userApply,
applyUserModel,
unionLimit,
activityGroupId,
restrictRegNumber
} = o
this.projectType = projectType
this.formData.activityId = activityId
this.formData.eventId = eventId
this.applyType = applyType
this.isManGirlNum = isManGirlNum
const res = await $.get("/mobile/activity/Sports/list/getScopeUser", {activityGroupId: activityGroupId})
if (res.data == 0) {
this.$toast("您不在报名人员内!")
return
}
if ("${@shiro.getPrincipalProperty('unit').getUnionid()}" == "") {
this.$toast("您的工会信息有误,无法报名,请联系工会管理员!")
return
}
/*if ((isInterest && "${@shiro.hasRole('H04')}" === 'false') || (isInterest && "${@shiro.hasRole('sysadmin')}" === 'false')) {
this.$toast("您所报的是趣味运动,请联系工会管理员报名!")
return
}*/
if (userApply == 1) {
const confirm = await vant.Dialog.confirm({
title: '提示',
message: '确定取消此次报名吗?',
})
if (confirm === 'confirm') {
await $.get("/platform/activity/apply/doDeleteApply", {
userId: "${@shiro.getPrincipalProperty('id')}",
activityId: activityId,
eventId: eventId
})
this.yearChange()
}
return
}
this.events = []
const data = await $.get("/platform/activity/apply/getEvents", {activityId: activityId})
this.events = data
const {
athletesMaxNum,
startAgeDate,
endAgeDate,
isMenWomen,
restrictBoyNum,
restrictGirlNum
} = this.events.find(v => v.id == eventId)
if (isMenWomen) {
this.restrictBoyNum = athletesMaxNum
this.restrictGirlNum = athletesMaxNum
} else {
this.restrictBoyNum = restrictBoyNum ? restrictBoyNum : 0
this.restrictGirlNum = restrictGirlNum ? restrictGirlNum : 0
}
this.athletesMaxNum = athletesMaxNum
if (projectType == 1) {
if (isMenWomen != null && isMenWomen === 1 && "${@shiro.getPrincipalProperty('sex')}" != '男') {
this.$toast("此项目只能男性老师才能报名!")
return
}
if (isMenWomen != null && isMenWomen === 2 && "${@shiro.getPrincipalProperty('sex')}" != '女') {
this.$toast("此项目只能女性老师才能报名!")
return
}
if (restrictRegNumber > 0) {
const {data} = await $.post("/platform/activity/apply/getActivityData", {activityId})
const userApplyNum = data.filter(v => v.userId == "${@shiro.getPrincipalProperty('id')}").length
if (userApplyNum >= restrictRegNumber) {
this.$toast('单项项目,每人限报' + restrictRegNumber + '个!团体项目除外')
return
}
}
const {data} = await $.post("/mobile/activity/Sports/list/getTeamUserData", {
activityId: this.formData.activityId,
applyType: applyType,
eventId: eventId
})
if (applyUserModel === 1) {
if (athletesMaxNum != null) {
if (data.length >= athletesMaxNum) {
this.$toast("此项目报名人数已满!此项目只需报" + athletesMaxNum + "人")
return
}
}
} else {
unionLimit = JSON.parse(unionLimit)
const limit = unionLimit.find(v => v.id === "${@shiro.getPrincipalProperty('unit').getUnionid()}")
this.athletesMaxNum = limit.limitCount
if (data.length >= limit.limitCount) {
this.$toast("此项目报名人数已满!此项目只需报" + limit.limitCount + "人")
return
}
}
if (startAgeDate != null) {
const birthday = moment("${@shiro.getPrincipalProperty('birthday')}").valueOf()
if (birthday < moment(startAgeDate).valueOf() || birthday > moment(endAgeDate).valueOf()) {
this.$toast("您的年龄不在限制范围內!")
return
}
}
} else {
if (isMenWomen != null && isMenWomen == 1 && "${@shiro.getPrincipalProperty('sex')}" != '男') {
this.$toast("此项目只能男性老师才能报名!")
return
}
if (isMenWomen != null && isMenWomen == 2 && "${@shiro.getPrincipalProperty('sex')}" != '女') {
this.$toast("此项目只能女性老师才能报名!")
return
}
}
if (projectType == 2) {
const {data} = await $.get("/platform/activity/apply/getActivityTeamId", {
activityId: activityId,
eventId: eventId
})
this.teams = data
if (data.length && data.length > 0) this.$set(this.formData, "teamId", data[0].id)
}
this.activityDialog = true
},
yearChange() {
this.pageForm.pageNumber = 1
this.tableData = []
this.finished = false
this.pageData()
},
async pageData() {
this.loading = true
const {data} = await $.get('/platform/activity/apply/pageData', this.pageForm)
setTimeout(() => {
this.tableData = this.tableData.concat(data.list)
if (this.tableData.length === data.totalCount) {
this.finished = true
} else {
this.pageForm.pageNumber++
}
this.loading = false
this.pageForm.totalCount = data.totalCount
}, 300)
}
,
},
async created() {
const id = GetQueryString('id')
const applyType = GetQueryString('applyType')
this.pageForm.activityId = id
this.pageForm.applyType = applyType
const data = await $.post("/platform/activity/apply/getEvents", {activityId: id})
data.forEach(v => {
this.eventList.push({value: v.eventId, text: v.allName})
})
this.eventList.unshift({value: null, text: "按项目"})
this.$set(this.pageForm, "eventId", this.eventList[0].value)
this.$set(this.pageForm, "isMenWomen", 1)
this.$set(this.pageForm, "groupName", null)
this.$set(this.pageForm, "isAudit", null)
}
})
</script>
<!--#
}
#-->
@@ -1,108 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<div id="app" v-cloak>
<m-page-loading v-if="mLoading"></m-page-loading>
<van-nav-bar title="活动列表" left-arrow placeholder fixed @click-left="history.back()"></van-nav-bar>
<div class="search-fixed">
<van-dropdown-menu active-color="#1989fa">
<van-dropdown-item v-model="pageForm.year" :options="yearList"
@change="getActivityData"></van-dropdown-item>
<van-dropdown-item v-model="pageForm.isActivity" :options="activityList"
@change="getActivityData"></van-dropdown-item>
</van-dropdown-menu>
</div>
<div style="margin: 60px auto 0 auto">
<van-list :finished="finished" :finished-text="tableData.length>0?'没有更多了':''">
<div v-for="o in tableData" class="list-card" @click="openInfo(o.id,o.applyEndTime,o.applyType)">
<van-cell-group inset>
<van-cell :border="false" title="活动名称">
<span class="van-ellipsis" style="font-size: 16px;" :style="{color:themeColor}">
{{o.NAME}}
</span>
</van-cell>
<van-cell :border="false" title="活动地址">{{o.address}}</van-cell>
<van-cell :border="false" title="报名时间">
<span style="font-size: 12px">
{{moment(o.applyStartTime).format('YYYY/MM/DD HH:mm')}} 至
{{moment(o.applyEndTime).format('YYYY/MM/DD HH:mm')}}
</span>
</van-cell>
<van-cell :border="false" title="活动时间">
<span style="font-size: 12px">
{{moment(o.startTime).format('YYYY/MM/DD HH:mm')}} 至
{{moment(o.endTime).format('YYYY/MM/DD HH:mm')}}
</span>
</van-cell>
<van-cell :border="false" title="活动状态">
<van-tag type="danger" v-if="moment(o.applyEndTime).valueOf() <moment().valueOf()">报名结束
</van-tag>
<van-tag type="success" v-else-if="moment(o.applyEndTime).valueOf() >moment().valueOf()">报名中
</van-tag>
</van-cell>
</van-cell-group>
</div>
</van-list>
</div>
<van-empty v-if="mLoading==false&&tableData.length==0" class="custom-image" image="/none.svg"
description="暂无数据">
</van-empty>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
activityList: [
{text: '全部', value: 1},
{text: '报名中', value: 2},
{text: '已结束', value: 3},
],
pageForm: {
year: '',
isActivity: "1"
}
}
},
methods: {
async getActivityData() {
const {data} = await $.post("/platform/activity/apply/activityData", {
year: this.pageForm.year,
isActivity: this.pageForm.isActivity
})
this.tableData = data
},
openInfo(id, applyEndTime, applyType) {
if (moment(applyEndTime).valueOf() < moment().valueOf()) {
this.$toast("活动已结束,暂不能报名")
return
}
window.location.href = '/mobile/activity/Sports/list/activityEventList?id=' + id + "&applyType=" + applyType
}
},
async created() {
this.mLoading = true
this.$set(this.pageForm, "year", this.yearList[0].value)
this.$set(this.pageForm, "isActivity", 2)
await this.getActivityData()
this.mLoading = false
}
})
</script>
<!--#
}
#-->
@@ -1,150 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.register-icon {
position: absolute;
bottom: 8px;
right: 16px;
z-index: 1;
}
.list-card > .van-cell-group {
position: relative;
}
.list-card .van-cell {
padding: 3px 16px;
}
</style>
<div id="app" v-cloak>
<van-nav-bar title="报名详情" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<div style="margin: 20px auto 0 auto">
<div v-for="o in tableData" class="list-card">
<van-cell-group inset>
<image class="register-icon" src="/assets/mobile/svg/activity/ybm.svg"
@click="openActivity(o)"
v-if="o.userApply>0&&o.applyWay.includes(1)"></image>
<van-cell :border="false" title="项目名称">
<span class="van-ellipsis" style="font-size: 16px;"
:style="{color:themeColor}">
{{o.allName}}
</span>
</van-cell>
<van-cell :border="false" title="项目类型">{{o.projectType==1?'单项':'团体'}}</van-cell>
<van-cell :border="false" title="年龄限制" v-if="o.projectType==1">
<span v-if="o.startAgeDate!=null">{{o.startAgeDate}}至{{o.endAgeDate}}</span>
<span v-else>暂无</span>
</van-cell>
<van-cell :border="false" title="每队可报人数" v-if="o.applyUserModel===1">
<span v-if="o.athletesMaxNum">{{o.athletesMaxNum}}人</span>
<span v-else-if="o.applyType==1">{{o.athletesMaxNum*o.restrictTotalTeam}}人</span>
<span v-else-if="o.applyType==2&&o.projectType==1">{{o.athletesMaxNum}}人</span>
<span v-else-if="o.applyType==2&&o.projectType==2">{{o.restrictGirlNum+o.restrictBoyNum}}人</span>
<span v-else>暂无</span>
</van-cell>
<van-cell :border="false" title="已报名人数">
<span v-if="o.applyNum>0&&o.applyType!=3">{{o.applyNum}}人</span>
<span v-else-if="o.totalApplyNum>0&&o.applyType==3">{{o.totalApplyNum}}人</span>
<span v-else>0人</span>
</van-cell>
</van-cell-group>
</div>
</div>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
activityId: '',
o: {},
projectInfo: null
}
},
methods: {
async getActivityInfo() {
const resp = await $.get('/mobile/activity/unionActivity/findOne', {id: this.activityId})
if (resp.code === 0) {
this.o = resp.data
this.$nextTick(() => {
// document.getElementsByClassName('activity_img_back')[0].style.backgroundImage = "url(" + FILE_DOMAIN + this.o.cover + ")"
})
}
},
async getSchoolActivityProjectInfoByMine() {
const resp = await $.get('/mobile/activity/myActivity/getSchoolActivityProjectInfoByMine', {activityId: this.activityId})
if (resp.code === 0) {
this.projectInfo = resp.data
}
},
async getHasRegEventProject() {
const resp = await $.get('/platform/activity/apply/pageData', this.pageForm)
if (resp.code === 0) {
this.tableData = resp.data.list
}
},
async openActivity(o) {
const {
applyType,
eventId,
activityId,
projectType,
userApply,
applyNum,
name,
activityGroupId,
restrictRegNumber
} = o
const confirm = await vant.Dialog.confirm({
title: '提示',
message: '确定取消此次报名吗?',
})
if (confirm === 'confirm') {
const loading = this.$toast.loading({
message: '取消中...',
forbidClick: true,
overlay: true,
duration: 0
})
const resp = await $.get("/platform/activity/apply/doDeleteApply", {
userId: "${@shiro.getPrincipalProperty('id')}",
activityId: activityId,
eventId: eventId
})
loading.close()
if (resp.code === 0) {
this.$toast.success('取消成功')
this.getHasRegEventProject()
}
}
}
},
created() {
const id = GetQueryString("id")
if (id) {
this.$set(this.pageForm, 'isAudit', 'true')
this.$set(this.pageForm, 'activityId', id)
this.$set(this.pageForm, 'pageSize', 100)
this.activityId = id
this.getActivityInfo()
this.getHasRegEventProject()
}
}
})
</script>
<!--#
}
#-->
@@ -1,495 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
#app {
background: #ececec;
}
.tips .content {
height: calc(80vh - 49px);
overflow-y: scroll;
position: relative;
/*padding: 5px*/
}
.tips .content h1, h2, h3, h4, h5, h6 {
font-weight: unset;
margin: 10px;
}
.tips .button-wrap {
position: absolute;
left: 0;
right: 0;
bottom: 0;
}
.table-container {
overflow-x: auto;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
max-height: 300px;
overflow-y: scroll;
font-size: 14px;
color: #646566;
}
.table-container table {
border-collapse: collapse;
width: 100%;
background: #fff;
}
.table-container table td {
padding: 10px;
text-align: left;
border: 1px solid #ddd;
min-width: 100px; /* 设置单元格固定宽度 */
}
.table-container table tr:first-child td {
/*border-top: none;*/
}
.table-container table tr td {
/*border-left: none;*/
}
.table-container table td {
/*background-color: #f2f2f2;*/
}
.siteUsageTabs .van-tabs__wrap {
/*border-top-left-radius: 10px;*/
/*border-top-right-radius: 10px;*/
}
.siteUsageTabs .van-tab__text {
display: flex;
gap: 10px;
}
.siteUsageTabs .van-tab--active .van-tab__text {
color: rgb(0, 78, 100);
font-weight: bold;
}
.siteUsageTabs .van-tabs__line {
display: none;
}
</style>
<div id="app" v-cloak>
<div>
<van-nav-bar title="职工之家场地预约" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<div class="van-sidebar-item van-sidebar-item--select" style="margin-top: 10px!important;">
近一周预约情况
</div>
<van-tabs v-model="tabActive" class="siteUsageTabs">
<van-tab :title="k" v-for="(v,k) in allSiteUsageInfo" :item="k">
<template #title>
<svg t="1702637676312" class="icon" viewBox="0 0 1111 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" p-id="7468" width="20" height="20">
<path d="M463.784229 127.356343a9.698743 9.698743 0 0 1-9.713372-9.669486c0-5.3248 4.344686-9.654857 9.713372-9.654857h103.658057c5.339429 0 9.698743 4.330057 9.698743 9.654857 0 5.3248-4.359314 9.654857-9.698743 9.654857h-103.658057z m150.176914 0a9.698743 9.698743 0 0 1-9.713372-9.669486c0-5.3248 4.359314-9.654857 9.713372-9.654857h34.040686c5.354057 0 9.713371 4.330057 9.713371 9.654857 0 5.3248-4.359314 9.654857-9.713371 9.654857H613.961143zM51.243886 36.571429a14.599314 14.599314 0 0 0-14.555429 14.584685v549.653943l3.364572-1.243428c67.978971-25.1904 125.952-66.706286 172.295314-123.406629 71.723886-87.771429 103.892114-197.778286 118.272-274.578286 15.4624-82.7392 14.218971-147.265829 14.160457-149.972114a18.139429 18.139429 0 0 1 3.349943-11.044571l2.735543-3.9936H51.243886z m703.619657 4.008228c2.296686 3.2768 3.466971 7.109486 3.364571 11.044572-0.073143 2.633143-1.579886 65.8432 14.160457 149.942857 14.336 76.8 46.4896 186.748343 118.286629 274.578285 46.928457 57.431771 105.632914 99.240229 174.4896 124.298972 2.048 0.731429 3.949714 1.872457 5.792914 3.4816l4.125257 3.554743V51.170743a14.599314 14.599314 0 0 0-14.555428-14.584686H752.054857l2.779429 4.008229zM36.688457 752.7424c0 8.045714 6.538971 14.584686 14.555429 14.584686h215.508114l0.146286-2.369829a18.578286 18.578286 0 0 1 5.983085-12.682971c51.258514-47.162514 60.298971-119.456914 46.518858-170.174172-4.8128-17.495771-20.3776-60.430629-61.513143-80.866743l-12.551315-6.2464-9.025828 10.708115C185.782857 565.496686 123.318857 609.206857 50.673371 635.611429a18.870857 18.870857 0 0 1-6.436571 1.170285c-1.418971 0-2.779429-0.321829-4.447086-0.731428l-3.101257-0.775315v117.4528z m755.712 14.584686l-3.569371-4.183772c-43.680914-51.156114-59.538286-124.269714-41.428115-190.829714 11.790629-43.344457 37.156571-78.599314 71.402058-99.240229l15.594057-9.376914-9.654857-15.433143a597.825829 597.825829 0 0 1-48.405943-96.241371c-17.759086-44.704914-31.6416-93.622857-41.194057-145.393372-16.325486-88.298057-14.5408-153.365943-14.453029-156.086857 0.117029-3.584 1.2288-7.021714 3.232914-9.991314l2.691657-3.949714H376.290743l2.735543 3.949714c2.048 2.954971 3.1744 6.407314 3.291428 9.976686 0.087771 2.720914 1.872457 67.774171-14.482285 156.086857-9.537829 51.755886-23.405714 100.688457-41.179429 145.408a601.512229 601.512229 0 0 1-48.391314 96.241371l-9.654857 15.433143 15.5648 9.376914c34.230857 20.626286 59.582171 55.851886 71.402057 99.210972 18.154057 66.603886 2.296686 139.717486-41.398857 190.858971l-3.569372 4.183772h481.792z m268.127086 0a14.599314 14.599314 0 0 0 14.555428-14.584686v-124.416l-4.139885 3.627886c-2.530743 2.194286-6.685257 4.827429-12.214857 4.827428a19.017143 19.017143 0 0 1-6.392686-1.141028c-72.630857-26.433829-135.080229-70.158629-185.636572-129.9456l-9.040457-10.708115-12.551314 6.2464c-41.150171 20.450743-56.700343 63.370971-61.483886 80.881372-13.809371 50.702629-4.783543 122.997029 46.533486 170.159543 3.569371 3.262171 5.690514 7.767771 5.968457 12.668343l0.146286 2.384457h224.256zM51.243886 803.913143A51.273143 51.273143 0 0 1 0 752.7424V51.170743A51.273143 51.273143 0 0 1 51.243886 0h1009.283657A51.273143 51.273143 0 0 1 1111.771429 51.170743v701.571657a51.273143 51.273143 0 0 1-51.243886 51.170743H51.243886z m-6.977829 105.003886a18.768457 18.768457 0 0 1-18.768457-18.724572c0-10.327771 8.426057-18.724571 18.768457-18.724571h234.8032c10.3424 0 18.768457 8.3968 18.768457 18.724571 0 10.313143-8.426057 18.724571-18.768457 18.724572H44.266057z m394.210743 0a18.768457 18.768457 0 0 1-18.753829-18.724572c0-10.327771 8.411429-18.724571 18.753829-18.724571h234.832457c10.3424 0 18.753829 8.3968 18.753829 18.724571 0 10.313143-8.411429 18.724571-18.753829 18.724572H438.4768z m394.210743 0a18.753829 18.753829 0 0 1-18.753829-18.724572c0-10.327771 8.411429-18.724571 18.753829-18.724571h234.832457c10.3424 0 18.753829 8.3968 18.753829 18.724571 0 10.313143-8.411429 18.724571-18.753829 18.724572H832.687543zM236.982857 1024a18.768457 18.768457 0 0 1-18.768457-18.724571c0-10.313143 8.426057-18.724571 18.768457-18.724572h234.832457c10.3424 0 18.768457 8.411429 18.768457 18.724572 0 10.327771-8.426057 18.724571-18.768457 18.724571H236.982857z m394.210743 0a18.753829 18.753829 0 0 1-18.753829-18.724571c0-10.313143 8.411429-18.724571 18.753829-18.724572H866.011429c10.3424 0 18.753829 8.411429 18.753828 18.724572 0 10.327771-8.411429 18.724571-18.753828 18.724571H631.1936z"
fill="#44BBE0" p-id="7469"></path>
</svg>
{{k}}
</template>
<div class="table-container">
<table>
<thead>
<tr>
<td>开始时间</td>
<td>结束时间</td>
<td>预约人姓名</td>
<td>预约人部门</td>
<td>预约事由</td>
</tr>
</thead>
<tbody>
<tr v-for="item in v" :key="item.id">
<td>{{item.reserve_start_time}}</td>
<td>{{item.reserve_end_time}}</td>
<td>{{item.reserve_person_username}}</td>
<td>{{item.reserve_person_unitname}}</td>
<td>{{item.reserve_cause}}</td>
</tr>
</tbody>
</table>
</div>
</van-tab>
</van-tabs>
<div class="van-sidebar-item van-sidebar-item--select" style="margin-top: 10px!important;">
填写预约信息
</div>
<van-form @submit="onSubmit">
<van-cell-group class="">
<van-field readonly :value="formData.reserve_person_username" name="reserve_person_username"
label="预约人姓名"></van-field>
<van-field readonly :value="formData.reserve_person_loginname" name="reserve_person_loginname"
label="预约人工号"></van-field>
<van-field readonly :value="formData.reserve_person_sex" name="reserve_person_sex"
label="预约人性别"></van-field>
<van-field readonly :value="formData.reserve_person_phone" name="reserve_person_phone"
label="预约人电话"></van-field>
<van-field readonly :value="formData.reserve_person_unitname" name="reserve_person_unitname"
label="预约人部门"></van-field>
<van-field readonly :value="formData.reserve_person_unionname" name="reserve_person_unionname"
label="预约人工会"></van-field>
<van-field readonly
clickable
name="site_name"
:value="formData.site_name"
label="预约场地"
placeholder="点击选择预约场地"
:rules="[{ required: true, message: '请选择' }]"
required
@click="showSitePicker = true"
>
</van-field>
<van-field readonly clickable
label="预约开始时间"
:value="formData.reserve_start_time"
name="reserve_start_time"
:rules="[{ required: true, message: '请选择' }]"
placeholder="请选择预约开始时间"
required
@click="startTimePicker = true">
</van-field>
<van-field readonly clickable
label="预约结束时间"
:value="formData.reserve_end_time"
name="reserve_end_time"
:rules="[{ required: true, message: '请选择' }]"
placeholder="请选择预约结束时间"
required
@click="endTimePicker = true">
</van-field>
<!-- <van-field v-model="formData.reserve_activity"-->
<!-- name="reserve_activity"-->
<!-- :rules="[{ required: true, message: '请填写' }]"-->
<!-- placeholder="请填写预约活动项目"-->
<!-- required-->
<!-- label="预约活动项目"></van-field>-->
<van-field v-model="formData.reserve_cause"
name="reserve_cause"
rows="1"
autosize
type="textarea"
:rules="[{ required: true, message: '请填写' }]"
placeholder="请填写预约事由"
required
label="预约事由"></van-field>
<van-field v-model="formData.reserve_join_user_num"
name="reserve_join_user_num"
:rules="[{ required: true, message: '请填写' }]"
placeholder="请填写预约参加人数"
required
label="参加人数"></van-field>
<!-- <van-field v-model="formData.reserve_demand"-->
<!-- name="reserve_demand"-->
<!-- rows="1"-->
<!-- autosize-->
<!-- type="textarea"-->
<!-- :rules="[{ required: true, message: '请填写' }]"-->
<!-- placeholder="请填写预约场地需求"-->
<!-- required-->
<!-- label="场地需求"></van-field>-->
</van-cell-group>
<div style="margin: 16px;">
<van-button round block type="info" native-type="submit">提交</van-button>
</div>
</van-form>
<van-popup v-model="showTips" :style="{ height: '80%',width:'90%' }" round>
<div class="tips">
<div class="content">
<div style="padding: 0 20px">
<h4>职工之家场地预约</h4>
<h4>主管部门:校工会</h4>
<h3 style="text-align: center">欢迎使用《职工之家场地预约申请流程》服务!</h3>
<h4 style="font-weight: bold">流程说明:</h4>
<h4 style="font-weight: bold">
一、为提高职工之家场地使用效率,充分保障我校相关活动正常有序开展,特制订本管理规定。</h4>
<h4 style="font-weight: bold">
二、职工之家场地是服务于学校及各部门教职工重大会议及重要文化活动的重要场所,由校工会遵循“申请与统筹协调”相结合的原则统一调度与管理。</h4>
<h4 style="font-weight: bold">三、场地管理</h4>
<div style="padding-left: 30px;">
<h4>
1.校工会现有场地3个,位于校工会一层。其中多功能厅座位80个,党员之家会议室座位20个,研讨室座位12个。</h4>
<h4>
2.职工之家场地的使用安排遵循校级活动优先的原则,兼顾院系活动。如无校级重大会议及活动安排,则按照预约时间顺序安排使用。</h4>
<h4>
3.校工会负责场地的使用协调、保障场地及设备日常维护;仅提供开水服务,会场布置(大屏设备调试等)及善后工作由各使用单位自行负责。</h4>
<h4>
4.各使用单位应负责参会人员在会场内的组织和管理工作,保证会后公共设施完好并物归原位,做好使用期间的安全防范等工作。</h4>
</div>
<h4 style="font-weight: bold">四、职工之家场地申请使用程序</h4>
<div style="padding-left: 30px;">
<h4>
1.使用单位至少提前两天使用南京体育学院信息门户中的“智慧工会系统”申请,经审批通过后方可使用。</h4>
<h4>
2.需要使用多媒体设备(电子大屏、音视频设备)的单位,请与信息化中心联系,并委派专人提前一天到校工会调试,校工会原则上不提供现场值守服务。</h4>
<h4>3.校工会对每次使用情况进行登记、检查与反馈。</h4>
</div>
<h4 style="font-weight: bold">
五、各单位、个人在会场时应自觉遵守以下要求,拒不执行者,校工会有权取消其使用资格。</h4>
<div style="padding-left: 30px;">
<h4>1.全场禁止吸烟,禁止餐饮。</h4>
<h4>
2.讲究卫生,禁止随地吐痰、乱丢垃圾;自觉维护良好的秩序,严禁大声喧哗;使用结束后应保持场地干净整洁,会议物品应及时清理。</h4>
<h4>
3.爱护场地内部的设备、设施、家具和陈设。使用后负责将物品摆放回原位并保证电子大屏及音响等多媒体设备完好,造成损坏须照价赔偿。</h4>
<h4>
4.如需张贴会标、条幅,须按照管理人员要求在指定位置张贴悬挂,会后应及时拆除;因随意张贴损坏墙面等设施应给予修复或照价赔偿。</h4>
<h4>5.严禁使用礼花、喷雾、鞭炮等危险物品。</h4>
<h4>
6.遇到紧急或异常情况,使用单位应及时报告,并采取应急措施,积极配合有关部门做好善后处理工作。</h4>
</div>
<h4 style="font-weight: bold">六、本管理规定的解释权归校工会。</h4>
<h4 style="font-weight: bold">七、相关事项联系方式:</h4>
<div style="padding-left: 30px;">
<h4>多功能厅、研讨室使用咨询——校工会办公室</h4>
<h4>联系电话:84755127</h4>
<h4>党员之家会议室使用咨询——党委组织部、综合考核办公室</h4>
<h4>联系电话:84755117 </h4>
</div>
<br/>
</div>
</div>
<div class="button-wrap">
<van-button type="info" block @click="showTips=false">开始办理</van-button>
</div>
</div>
</van-popup>
<van-popup v-model="startTimePicker" position="bottom">
<van-datetime-picker
v-model="startTime"
type="datetime"
title="选择预约开始时间"
@confirm="onStartTimeConfirm"
@cancel="startTimePicker = false"
:min-date="startMinDate"
></van-datetime-picker>
</van-popup>
<van-popup v-model="endTimePicker" position="bottom">
<van-datetime-picker
v-model="endTime"
type="datetime"
title="选择预约结束时间"
@confirm="onEndTimeConfirm"
@cancel="endTimePicker = false"
:min-date="endMinDate"
></van-datetime-picker>
</van-popup>
<van-popup v-model="showSitePicker" position="bottom">
<van-picker
title="请选择需要预约的场地"
show-toolbar
:columns="siteColumns"
@confirm="onSiteConfirm"
@cancel="showSitePicker = false">
<template #option="option">
<div style="display: flex; flex-direction: column; align-items: center;">
<div>{{ option.name }}</div>
</div>
</template>
</van-picker>
</van-popup>
</div>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
showTips: true,
formData: {},
showSitePicker: false,
startTimePicker: false,
endTimePicker: false,
startTime: null,
endTime: null,
siteColumns: [],
showSiteUsage: false,
allSiteUsageInfo: {},
tabActive: null,
// startMinDate: moment().add(1, 'days').toDate(),
// endMinDate: moment().add(1, 'days').add(30, 'minute').toDate(),
startMinDate: moment().add(0, 'days').toDate(),
endMinDate: moment().add(0, 'days').add(30, 'minute').toDate(),
// endMaxDate: moment().add(2, 'days').toDate()
}
},
methods: {
async onSubmit(values) {
console.log(this.formData)
const resp = await $.get('/platform/activity/site/apply/checkApplyTime', {
time: this.formData.reserve_start_time,
endTime: this.formData.reserve_end_time,
siteId: this.formData.site_id
})
if (resp.code === 1) {
this.$toast(resp.msg)
this.formData.reserve_start_time = ''
this.formData.reserve_end_time = ''
return
}
const {site_name, reserve_start_time, reserve_end_time} = this.formData
this.$dialog.confirm({
title: '提示',
message: '您确定要提交' + site_name + '\n' + reserve_start_time + "\n至\n" + reserve_end_time + '\n的预约吗?',
}).then(async () => {
const loading = this.$toast.loading({
message: '提交中...',
forbidClick: true,
});
const {
data,
code,
msg
} = await $.post('/platform/activity/site/apply/insert', {"siteReserve": JSON.stringify(this.formData)})
loading.clear()
if (code === 0) {
this.$toast.success(msg)
setTimeout(() => {
location.href = '/mobile/activity/site/mine'
}, 500)
} else {
this.$toast.fail(msg)
}
}).catch(() => {
})
},
onStartTimeConfirm(time) {
const hours = time.getHours();
const minutes = time.getMinutes();
const day = time.getDay()
if (time.getFullYear() === 2024 && time.getMonth() === 3 && time.getDate() === 28){
} else if (day === 0 || day === 6){
this.$toast('周六周日预约不了喔')
return
}
// if (day === 0 || day === 6) {
// this.$toast('周六周日预约不了喔')
// return
// }
if (time.getFullYear() === 2024 && time.getMonth() === 2 && (time.getDate() === 14 || time.getDate() === 15)) {
this.$toast('由于2024年3月14,15两日开展教代会会议故无法申请该两天的场地。')
return
}
if (hours < 8 || (hours === 8 && minutes < 30)) {
this.$toast('请预约上午8点半之后的时间')
return
}
this.formData.reserve_start_time = moment(time).format('YYYY-MM-DD HH:mm:ss');
this.startTimePicker = false;
},
onEndTimeConfirm(time) {
if (!this.formData.reserve_start_time) {
this.$toast('请先选择预约开始时间')
return
}
const day = time.getDay()
const hours = time.getHours();
const minutes = time.getMinutes();
if (time.getFullYear() === 2024 && time.getMonth() === 3 && time.getDate() === 28){
} else if (day === 0 || day === 6){
this.$toast('周六周日预约不了喔')
return
}
// if (day === 0 || day === 6) {
// this.$toast('周六周日预约不了喔')
// return
// }
if (time.getFullYear() === 2024 && time.getMonth() === 2 && (time.getDate() === 14 || time.getDate() === 15)) {
this.$toast('由于2024年3月14,15两日开展教代会会议故无法申请该两天的场地。')
return
}
if (hours > 17 || (hours >= 17 && minutes > 0)) {
this.$toast('结束时间不能超过下午5点')
return
}
const isSameDay = moment(this.formData.reserve_start_time).isSame(moment(time), 'day')
if (!isSameDay) {
this.$toast('不能跨天预约喔')
return
}
this.formData.reserve_end_time = moment(time).format('YYYY-MM-DD HH:mm:ss');
this.endTimePicker = false;
},
onSiteConfirm(value, index) {
this.$set(this.formData, 'site_name', value.name)
this.$set(this.formData, 'site_id', value.id)
this.showSitePicker = false
},
async listSite() {
const {data} = await $.get(loc() + '/listSite')
this.siteColumns = data
},
async applyUserInfo() {
const {data} = await $.get('/platform/activity/site/apply/applyUserInfo')
this.$set(this.formData, 'reserve_person_id', data.reserve_person_id)
this.$set(this.formData, 'reserve_person_username', data.reserve_person_username)
this.$set(this.formData, 'reserve_person_loginname', data.reserve_person_loginname)
this.$set(this.formData, 'reserve_person_sex', data.reserve_person_sex)
this.$set(this.formData, 'reserve_person_phone', data.reserve_person_phone)
this.$set(this.formData, 'reserve_person_unitname', data.reserve_person_unitname)
this.$set(this.formData, 'reserve_person_unionname', data.reserve_person_unionname)
this.$set(this.formData, 'reserve_person_unionid', data.reserve_person_unionid)
},
async init() {
const id = GetQueryString('id')
if (id) {
} else {
await this.applyUserInfo()
}
},
async allSiteUsage() {
const {data} = await $.get('/platform/activity/site/apply/allSiteUsage')
this.allSiteUsageInfo = data
}
},
created() {
this.listSite()
this.allSiteUsage()
this.init()
}
})
</script>
<!--#
}
#-->
@@ -1,551 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.van-hairline--top-bottom::after, .van-hairline-unset--top-bottom::after {
border: 0;
}
.van-index-bar__sidebar {
display: none;
}
.van-doc-card {
margin: 14px;
padding: 12px 12px 12px 12px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 8px 12px #ebedf0;
line-height: 20px;
font-size: 12px;
position: relative;
}
.in-sheet-card {
display: flex;
justify-content: space-between;
line-height: 24px;
}
.van-divider {
margin: 6px 0 6px 0px;
border-color: lightgray;
}
.van-button--small {
border-radius: revert;
width: 40%;
height: 30px;
}
.van-col {
line-height: 20px;
}
.title_span {
font-size: 16px;
font-weight: bold;
position: absolute;
left: -1px;
top: 11px;
color: #1867b0;
}
.title {
font-size: 13px;
font-weight: bold;
flex: 1;
overflow: hidden;
white-space: nowrap;
}
.cus_overflow {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.showMore {
color: #1867b0;
}
.cus_popup {
width: 70%;
height: 50%;
/*border-radius: 10px;*/
padding: 10px 14px;
font-size: 15px;
/*background-color: #E5E7E9;
background-image: url("https://www.transparenttextures.com/patterns/green-cup.png");*/
}
.cus_icon {
z-index: 10000;
color: white;
font-size: 35px;
position: fixed;
top: 81%;
left: 44%;
}
.userPopup {
max-height: 96%;
height: 96%;
background-color: #f6f7f9;
font-size: 14px;
position: absolute;
}
.van-row div {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.firstName {
width: 45px;
background-color: lightgrey;
border-radius: 45px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: white;
}
.content {
height: 86%;
overflow: auto;
}
.no_content {
height: 100%;
overflow: auto;
}
.van-action-sheet__content {
height: 88%;
}
.van-dialog__header {
padding-top: 8px;
}
.van-dialog__confirm {
color: #1867b0;
}
.van-field__label {
width: 6em;
}
.cus_cell {
padding: 4px 0px;
font-size: 12px;
}
.van-checkbox-group {
max-height: 260px;
overflow-y: auto;
margin-top: 6px;
}
.unit {
display: inline-block;
max-width: 160px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: absolute;
}
.cus_button {
border-top-right-radius: 16px;
border-bottom-left-radius: 16px;
height: 26px;
}
.van-dropdown-menu__item {
flex: auto;
}
.audit_icon {
font-size: 24px;
/*position: absolute;*/
font-weight: bolder;
right: 0;
top: 5px;
}
.van-cell__value--alone {
text-align: center;
}
</style>
<div id="app" v-cloak>
<m-page-loading v-if="mLoading"></m-page-loading>
<!--top栏-->
<van-nav-bar
title="场地预约审核"
left-arrow
placeholder
fixed
@click-left="history.go(-1)"
safe-area-inset-top
></van-nav-bar>
<!--筛选框-->
<div class="search-fixed">
<van-search
v-model="pageForm.searchKeyword"
shape="round"
maxlength="10"
@search="doSearch"
placeholder="请输入场地名称、场地地点进行查询"
>
</van-search>
<van-dropdown-menu>
<!--<van-dropdown-item v-model="pageForm.meetingTime" :options="meetingTimeList"
@change="doSearch"></van-dropdown-item>-->
<van-dropdown-item v-model="pageForm.typeId" :options="typeList"
@change="doSearch"></van-dropdown-item>
</van-dropdown-menu>
</div>
<!--列表-->
<div style="margin-top: 116px">
<van-list
v-model="loading"
:finished="finished" :immediate-check="false"
:finished-text="tableData.length>0?'没有更多了':''"
@load="onLoad">
<div class="van-doc-card" v-for="o in tableData">
<div @click="openView(o.id, o.modulename)">
<div style="display: flex; justify-content: space-between">
<div style="width: 74%">
<div class="van-ellipsis title">
<span class="title_span">|</span>
<span>{{o.name}}</span>
</div>
<div style="color: grey">{{o.address}}</div>
</div>
<div style="color: #1867b0;">
{{o.meetingtypename}}
</div>
</div>
<van-divider></van-divider>
<div style="margin-top: 10px">
<van-row>
<van-col span="12"><span style="color: grey">&emsp;联系人:</span>{{o.unitname ? (o.unitname +
'') : '' + '' + o.contact_person}}
</van-col>
</van-row>
<van-row>
<van-col span="12"><span style="color: grey">联系方式:</span>{{o.contact_phone}}</van-col>
</van-row>
</div>
<div style="display: flex; justify-content: space-between">
<!--<div class="cus_overflow" style="line-height: 20px; width: 83%">
<span style="color: grey">开放时段:</span>
{{o.meetingdescription}}
</div>-->
<!--<span class="showMore" @click.stop="desc = o.meetingdescription; popupShow = true">查看更多</span>-->
</div>
<div style="display: flex; justify-content: flex-end; margin-top: 4px">
<div>
<van-button @click.stop="getAuditList(o)" class="cus_button"
type="primary" size="small" color="#1867b0"
style="margin-right: 8px; width: auto;">已审{{o.audit}}
</van-button>
<van-button @click.stop="openView(o.id, o.modulename)" class="cus_button"
type="primary" size="small" color="#1867b0"
style="margin-right: 8px; width: auto;">未审{{o.no_audit}}
</van-button>
</div>
</div>
</div>
</div>
</van-list>
<van-empty
v-if="mLoading==false&&tableData.length==0"
class="custom-image"
image="/none.svg"
description="暂无数据"
></van-empty>
</div>
<!--弹出框-->
<van-popup v-model:show="popupShow" class="cus_popup">
<pre style="margin: 0; white-space: break-spaces">{{desc}}</pre>
</van-popup>
<van-icon @click="popupShow = false" class="cus_icon" v-if="popupShow" name="close"></van-icon>
<!--审核人员-->
<van-action-sheet v-model:show="userShow" :title="queryType === 'notAudit' ? '预约列表' : '预约列表'"
class="userPopup" @close="popClose">
<div :class="queryType == 'notAudit' ? 'content' : 'no_content'">
<div v-if="queryType === 'notAudit'" style="text-align: right; width: 96%">
<van-tag color="#1867b0" style="margin-right: 10px" @click="cancelAll" size="large" type="primary">
取消选中
</van-tag>
<van-tag color="#1867b0" @click="allIn" size="large" type="primary">全选</van-tag>
</div>
<div class="van-doc-card in-sheet-card" v-for="(item, i) in userList">
<!--<div style="display: flex; justify-content: space-between">
<div style="width: 80%">
<span>{{moment(item.startTime).format('YYYY-MM-DD HH:mm') + ' ~ ' + moment(item.endTime).format('YYYY-MM-DD HH:mm')}}</span>
</div>
<div v-if="queryType === 'notAudit'">
<span @click="checkAll(i)">全选</span>
<span @click="toggleAll(i)" style="margin-left: 4px">反选</span>
</div>
</div>-->
<div style="width: 90%">
<div>
<span style="display: inline-block; min-width: 40px; max-width: 76px">{{item.username}}</span>
<span style="display: inline-block; width: 20px">{{item.sex}}</span>
<span style="display: inline-block; width: 76px">{{item.loginname}}</span>
<span class="unit">{{item.unitname}}</span>
</div>
<div style="width: 94%; display: flex">
<div style="color: grey;">预约时间:</div>
<div>
<div v-for="(d,index) in item.concat_day.split(',')">{{getTime(item, d)}}</div>
</div>
</div>
<div style="width: 94%;">
<span style="color: grey">参加人员:</span><span>{{item.joinUser}}</span>
</div>
<div style="width: 94%;">
<span style="color: grey">预约事由:</span><span>{{item.reserve_cause}}</span>
</div>
<div style="width: 94%;">
<span style="color: grey">审核状态:</span><span>{{item.stateName}}</span>
</div>
<div v-if="${@shiro.hasRole('sysadmin')||@shiro.hasRole('xghng')||@shiro.hasRole('A06')}"
style="width: 94%;">
<span style="color: grey">反馈意见:</span><span>{{item.back_option}}</span>
</div>
</div>
<van-checkbox-group v-model="result" ref="checkboxGroup">
<van-cell-group>
<van-cell
clickable class="cus_cell"
:key="item.id"
@click="toggle(i)">
<van-icon class="audit_icon" color="green"
v-if="queryType === 'hasAudit' && item.auditState == true"
name="passed"></van-icon>
<van-icon class="audit_icon" color="grey"
v-if="queryType === 'hasAudit' && item.auditState == false"
name="close"></van-icon>
<template #right-icon v-if="queryType === 'notAudit'">
<van-checkbox :name="item.id" ref="checkboxes"></van-checkbox>
</template>
</van-cell>
</van-cell-group>
</van-checkbox-group>
</div>
<!--<div v-if="queryType === 'notAudit'" style="display: flex; justify-content: space-evenly; position: fixed; bottom: 50px; width: 95%">
<van-button @click="audit('all', 'reject')" color="#ff976a" size="small" style="height: 38px">一键全部驳回</van-button>
<van-button @click="audit('all', 'pass')" color="#1867b0" size="small" style="height: 38px">一键全部通过</van-button>
</div>-->
</div>
<div style="position: absolute; bottom: 20px; width: 100%;z-index: 9999">
<div v-if="queryType === 'notAudit'" style="display: flex; justify-content: center">
<van-button @click="audit('many', 'reject')" color="#ff976a" size="small"
style="height: 38px;border-radius: 10px;margin-right: 20px">驳回
</van-button>
<van-button @click="audit('many', 'pass')" color="#1867b0" size="small"
style="height: 38px;border-radius: 10px">通过
</van-button>
</div>
</div>
</van-action-sheet>
<!--审核弹框-->
<van-dialog v-model:show="auditShow" @confirm="auditDo" title="温馨提示" show-cancel-button>
<div style="padding-top: 8px; text-align: center; font-size: 14px; color: #646566">{{str}}</div>
<van-divider style="margin: 12px 0 1px 0px;"></van-divider>
<van-field
v-model="reason"
rows="2"
label="审核意见:"
autosize
type="textarea"
maxlength="50"
placeholder="请输入审核意见"
show-word-limit
></van-field>
</van-dialog>
</div>
<script>
<!--# include("/platform/activity/includeJs/activityUtil.js"){} #-->
const siteTypeUtil = new typeUtil()
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
desc: '',
list: ['a', 'b'],
result: [],
reason: '',
auditShow: false,
popupShow: false,
userShow: false,
userList: [],
userClickList: [],
str: '',
type: '',
auditType: '',
queryType: '',
typeList: [],
meetingTimeList: [{text: '全部时间', value: null}, {text: '即将开始', value: 0}, {text: '已结束', value: 1}],
}
},
methods: {
getTime(o, day) {
const week = new Date(day).getDay()
const arr = ['日', '一', '二', '三', '四', '五', '六']
return moment(day).format('MM月DD日') + ' 周' + arr[week] + ' ' + o.start_time + '-' + o.end_time
},
async getAuditList(o) {
this.queryType = 'hasAudit'
const resp = await $.post('/mobile/activity/site/audit/getLeaveUser', {
siteId: o.id,
auditType: 'hasAudit',
})
if (resp.code === 0) {
this.userList = resp.data
if (this.userList.length === 0) {
vant.Toast('暂无数据')
return
}
this.userList.sort((a, b) => {
return b.auditState - a.auditState
})
this.userShow = true
}
},
cancelAll() {
this.$refs.checkboxes.forEach(item => item.toggle(false))
},
allIn() {
this.$refs.checkboxes.forEach(item => item.toggle(true))
},
checkAll(i) {
this.$refs.checkboxGroup[i].children.forEach(item => item.toggle(true))
},
toggleAll(i) {
this.$refs.checkboxGroup[i].children.forEach(item => item.toggle())
},
toggle(i) {
this.$refs.checkboxes[i].toggle();
},
async auditDo() {
let idList = this.result
if (this.type === 'all') {
idList = this.userList.map(o => o.id)
}
const resp = await $.post('/mobile/activity/site/audit/audit', {
ids: JSON.stringify(idList),
auditOpinion: this.reason,
isPass: this.auditType === 'pass'
})
if (resp.code === 0) {
vant.Toast(resp.msg)
this.doSearch()
} else {
vant.Toast('操作失败')
}
this.userShow = false
},
audit(type, auditType) {
this.type = type
this.auditType = auditType
if (type === 'many' && this.result.length === 0) {
vant.Toast('请先选择人员')
return
}
this.str = type === 'many' ? '您选择了' + this.result.length + '个人,请确认您的选择' : '您确定要一键全部审核吗?'
this.reason = auditType === 'pass' ? '同意' : '拒绝'
this.auditShow = true
},
async openView(id, modulename) {
this.queryType = 'notAudit'
this.userList = []
const resp = await $.post('/mobile/activity/site/audit/getLeaveUser', {
siteId: id,
moduleName: modulename,
auditType: 'canAudit',
})
if (resp.code === 0) {
this.userList = resp.data
this.userClickList = []
if (this.userList.length === 0) {
vant.Toast('暂无预约数据')
} else {
this.userShow = true
}
return
}
vant.Toast('系统错误,请联系管理员')
},
popClose() {
this.$nextTick(function () {
if (this.$refs.checkboxes !== undefined) {
this.$refs.checkboxes.forEach(item => item.toggle(false));
}
})
},
doSearch() {
this.pageForm.pageNumber = 1
this.tableData = []
this.finished = false
this.onLoad()
},
async onLoad() {
this.loading = true
$.post('/mobile/activity/site/audit/pageData', this.pageForm).then(res => {
if (res.code === 0) {
this.tableData = this.tableData.concat(res.data.list)
if (this.tableData.length === res.data.totalCount) {
this.finished = true
} else {
this.pageForm.pageNumber++
}
}
this.loading = false
})
},
},
async created() {
this.typeList = await siteTypeUtil.getAllType()
this.typeList.unshift({text: '全部场地类型'})
if (this.typeList && this.typeList.length > 0) {
this.$set(this.pageForm, "typeId", this.typeList[0].value)
}
this.$set(this.pageForm, "meetingTime", this.meetingTimeList[1].value)
this.onLoad()
}
})
</script>
<!--#
}
#-->
@@ -1,361 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.van-index-bar__sidebar {
display: none;
}
.van-doc-card {
margin: 14px;
padding: 12px 12px 12px 12px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 8px 12px #ebedf0;
line-height: 20px;
font-size: 12px;
position: relative;
}
.van-divider {
margin: 6px 0 6px 0px;
border-color: lightgray;
}
.van-button--small {
border-radius: revert;
width: 40%;
height: 30px;
}
.van-col {
line-height: 20px;
}
.title_span {
font-size: 16px;
font-weight: bold;
position: absolute;
left: -1px;
top: 11px;
color: #1867b0;
}
.title {
font-size: 13px;
font-weight: bold;
flex: 1;
overflow: hidden;
white-space: nowrap;
}
.cus_overflow {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.showMore {
color: #1867b0;
}
.cus_popup {
width: 70%;
height: 50%;
/*border-radius: 10px;*/
padding: 10px 14px;
font-size: 15px;
/*background-color: #E5E7E9;
background-image: url("https://www.transparenttextures.com/patterns/green-cup.png");*/
}
.cus_icon {
z-index: 10000;
color: white;
font-size: 35px;
position: fixed;
top: 81%;
left: 44%;
}
.userPopup {
height: 80%;
background-color: #f6f7f9;
font-size: 14px;
}
.van-row div {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.firstName {
width: 45px;
background-color: lightgrey;
border-radius: 45px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: white;
}
.content {
height: 84%;
overflow: auto;
}
.van-dialog__header {
padding-top: 8px;
}
.van-dialog__confirm {
color: #1867b0;
}
.van-field__label {
width: 5em;
}
.cus_cell {
padding: 4px 0px;
font-size: 12px;
}
.van-checkbox-group {
max-height: 260px;
overflow-y: auto;
margin-top: 6px;
}
.unit {
display: inline-block;
max-width: 160px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: absolute;
}
.cus_button {
border-top-right-radius: 16px;
border-bottom-left-radius: 16px;
height: 26px;
}
.van-dropdown-menu__item {
flex: auto;
}
.audit_icon {
font-size: 24px;
position: absolute;
font-weight: bolder;
right: 0;
top: 10px;
}
.pop {
max-height: 70%;
width: 90%;
padding: 0px 10px 10px 10px;
}
.pop h2 {
text-align: center;
}
.pop h4 {
line-height: 26px;
}
</style>
<div id="app" v-cloak>
<m-page-loading v-if="mLoading"></m-page-loading>
<!--top栏-->
<van-nav-bar
title="场地预约"
left-arrow
placeholder
fixed
@click-left="history.go(-1)"
safe-area-inset-top
></van-nav-bar>
<!--筛选框-->
<div class="search-fixed">
<van-search
v-model="pageForm.searchKeyword"
shape="round"
maxlength="10"
@search="doSearch"
placeholder="请输入场地名称、场地地点进行查询"
>
</van-search>
<van-dropdown-menu>
<van-dropdown-item v-model="pageForm.typeId" :options="typeList"
@change="doSearch"></van-dropdown-item>
</van-dropdown-menu>
</div>
<!--列表-->
<div style="margin-top: 116px">
<van-list
v-model="loading"
:finished="finished" :immediate-check="false"
:finished-text="tableData.length>0?'没有更多了':''"
@load="onLoad">
<div class="van-doc-card" v-for="o in tableData">
<div @click="openView(o)">
<div style="display: flex; justify-content: space-between">
<div style="width: 74%">
<div class="van-ellipsis title">
<span class="title_span">|</span>
<span>{{o.name}}</span>
</div>
<div style="color: grey">{{o.address}}</div>
</div>
<div style="color: #1867b0;">
{{o.meetingtypename}}
</div>
</div>
<van-divider></van-divider>
<div style="margin-top: 10px">
<van-row>
<van-col span="24"><span style="color: grey">&emsp;联系人:</span>{{(o.unitname ? o.unitname :
'') + ' ' + o.contact_person}}
</van-col>
</van-row>
<van-row>
<van-col span="24"><span style="color: grey">联系方式:</span>{{o.contact_phone}}</van-col>
</van-row>
<!--<van-row>
<van-col span="24"><span style="color: grey">已预约人数:</span>{{o.count}}</van-col>
</van-row>-->
<van-row>
<van-col span="24"><span style="color: grey">开放时间:</span><span
v-if="o.workday === true">工作日</span>
{{o.open_time}}
</van-col>
</van-row>
</div>
</div>
</div>
</van-list>
<van-empty
v-if="mLoading==false&&tableData.length==0"
class="custom-image"
image="/none.svg"
description="暂无数据"
></van-empty>
</div>
<van-popup round v-model:show="show" class="pop">
<div style="text-align: center;padding: 10px 0; font-size: 20px">爱心母婴室管理规定</div>
<div>一、基本原则</div>
<div style="padding-left: 30px;">
<p>1.使用对象:有哺乳需求的本校在职女教职工。</p>
<p>2.开放时间:工作日8:00--17:30。</p>
<p>3.使用制度:实行预约登记制。凡有哺乳需求的女教职工提前向校工会提出使用申请,经审核通过并开通权限后即可使用。</p>
<p>4.日常管理:由校工会负责。</p>
</div>
<div>二、管理人员</div>
<div style="padding-left: 30px;">
<p>1.负责爱心母婴室使用登记管理。</p>
<p>2.定期保养设备,确保正常使用。</p>
<p>3.保持室内整洁、卫生安全,做好保洁消毒记录。</p>
<p>4.定期收集意见和建议,不断改进服务。</p>
</div>
<div>三、使用人员</div>
<div style="padding-left: 30px;">
<p>1.遵守学校安全管理制度和爱心母婴室管理规定。</p>
<p>2.严禁吸烟,安全使用电器,爱护公物,损坏赔偿。</p>
<p>3.保持室内卫生清洁,勿大声喧哗,不影响楼内工作秩序。</p>
<p>4.妥善保管自带物品,冰存的母乳须贴上姓名标签并及时取走。</p>
<p>5.不得擅自携他人入内,不做和哺乳无关事宜,使用完毕及时离开。</p>
<p>6.欢迎在《爱心母婴室使用意见簿》上留下您宝贵的意见和建议。</p>
</div>
<br/>
<p>联系人:曾钰媛梦 84894774、15850692181</p>
<van-button color="#246fb4" @click="toReserve" type="primary" style="width: 100%">已知晓并遵守</van-button>
</van-popup>
</div>
<script>
<!--# include("/platform/activity/includeJs/activityUtil.js"){} #-->
const siteTypeUtil = new typeUtil()
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
list: ['a', 'b'],
typeList: [],
show: false,
siteId: '',
}
},
methods: {
openView(o) {
this.siteId = o.id
if (o.sexlimit === 1 || o.sexlimit === 2) {
const sex = o.sexlimit === 1 ? '男' : '女'
if ("${@shiro.getPrincipalProperty('sex')}" === sex) {
location.href = '/mobile/activity/site/info/reserve?id=' + o.id
} else {
vant.Toast('抱歉,该场地仅限' + sex + '性会员预约')
}
} else {
location.href = '/mobile/activity/site/info/reserve?id=' + o.id
}
},
toReserve() {
location.href = '/mobile/activity/site/info/reserve?id=' + this.siteId
this.show = false
},
doSearch() {
this.pageForm.pageNumber = 1
this.tableData = []
this.finished = false
this.onLoad()
},
async onLoad() {
this.loading = true
$.post('/mobile/activity/site/info/pageData', this.pageForm).then(res => {
if (res.code === 0) {
this.tableData = this.tableData.concat(res.data.list)
if (this.tableData.length === res.data.totalCount) {
this.finished = true
} else {
this.pageForm.pageNumber++
}
}
this.loading = false
})
},
},
async created() {
this.typeList = await siteTypeUtil.getAllType()
this.typeList.unshift({text: '全部场地类型'})
if (this.typeList && this.typeList.length > 0) {
this.$set(this.pageForm, "typeId", this.typeList[0].value)
}
this.onLoad()
}
})
</script>
<!--#
}
#-->
@@ -1,34 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<div id="app">
<van-nav-bar title="职工之家场地预约详细信息" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<site_h5_info :id="id"></site_h5_info>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
components: {
'site_h5_info': httpVueLoader('/components/activity/site/SiteH5Info.vue')
},
data() {
return {
id: GetQueryString("id")
}
},
methods: {
},
created() {
}
})
</script>
<!--#
}
#-->
@@ -1,192 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
#app {
background: #ececec;
}
.table-list {
margin-top: 64px;
}
.table-item {
margin: 16px;
background: #fff;
border-radius: 10px;
padding: 16px;
font-size: 14px;
color: #5b5a5a;
position: relative;
}
.table-item .header-title {
font-size: 18px;
font-weight: bold;
width: calc(100% - 100px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.table-item .header-title-extra {
position: absolute;
right: 10px;
top: 10px;
}
.cell {
display: flex;
padding: 2px;
flex-wrap: nowrap;
}
.cell .title {
}
.cell .content {
}
.extra {
padding: 10px 0 0 0;
display: flex;
justify-content: flex-end;
gap: 10px;
}
</style>
<div id="app" v-cloak>
<div>
<van-nav-bar title="职工之家我的场地预约" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<div class="search-fixed">
<van-search
v-model="pageForm.searchKeyword"
shape="round"
maxlength="10"
@search="doSearch"
placeholder="请输入场地名称进行查询"
>
</van-search>
</div>
<div class="table-list">
<van-list v-model="loading"
:finished="finished"
:finished-text="tableData.length>0?'没有更多了':''"
@load="pageData">
<div v-for="item in tableData" :key="item.id" class="table-item">
<div>
<div class="header-title">
{{item.reserve_cause}}
</div>
<van-tag class="header-title-extra" :type="tagType(item.reserve_state)">
{{item.state_name}}
</van-tag>
<div class="cell">
<div class="title">预约场地:</div>
<div class="content">{{item.site_name}}</div>
</div>
<div class="cell">
<div class="title">开始时间:</div>
<div class="content">{{item.reserve_start_time}}</div>
</div>
<div class="cell">
<div class="title">结束时间:</div>
<div class="content">{{item.reserve_end_time}}</div>
</div>
<div class="cell">
<div class="title">预约人姓名:</div>
<div class="content">{{item.reserve_person_username}}</div>
</div>
<div class="cell">
<div class="title">预约人工号:</div>
<div class="content">{{item.reserve_person_loginname}}</div>
</div>
<div class="cell">
<div class="title">预约人部门:</div>
<div class="content">{{item.reserve_person_unitname}}</div>
</div>
<div class="cell">
<div class="title">预约人工会:</div>
<div class="content">{{item.reserve_person_unionname}}</div>
</div>
<div class="extra">
<van-button size="small" type="info" @click="openView(item.id)">查看详情</van-button>
<van-button size="small" type="danger" @click="revoke(item)" v-if="item.reserve_state===6098">撤销预约</van-button>
</div>
</div>
</div>
</van-list>
</div>
</div>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
tableData: [],
pageDataUrl:'/platform/activity/site/reserve/pageData'
}
},
computed: {
tagType() {
return (reserveState) => {
if (reserveState === 6138) {
return 'success';
} else if ([6108, 6128].includes(reserveState)) {
return 'danger';
}
return 'primary';
};
},
},
methods: {
async revoke(item) {
const {id, site_name, reserve_start_time, reserve_end_time} = item
this.$dialog.confirm({
title: '提示',
message: '您确定要撤销' + site_name + '\n' + reserve_start_time + "\n至\n" + reserve_end_time + '\n的预约吗?',
}).then(async () => {
const loading = this.$toast.loading({
message: '提交中...',
forbidClick: true,
});
const {
code,
msg
} = await $.post('/platform/activity/site/apply/revoke', {id})
loading.clear()
if (code === 0) {
this.doSearch()
this.$toast.success(msg)
} else {
this.$toast.fail(msg)
}
}).catch(() => {
})
},
openView(id) {
window.location.href = loc() + '/detail?id=' + id
}
},
created() {
// this.pageData()
}
})
</script>
<!--#
}
#-->
@@ -1,433 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.van-index-bar__sidebar {
display: none;
}
.van-doc-card {
margin: 14px;
padding: 12px 12px 12px 12px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 8px 12px #ebedf0;
line-height: 20px;
font-size: 12px;
position: relative;
}
.van-divider {
margin: 6px 0 6px 0px;
border-color: lightgray;
}
.van-button--small {
border-radius: revert;
width: 40%;
height: 30px;
}
.van-col {
line-height: 20px;
}
.title_span {
font-size: 16px;
font-weight: bold;
position: absolute;
left: -1px;
top: 11px;
color: #1867b0;
}
.title {
font-size: 13px;
font-weight: bold;
flex: 1;
overflow: hidden;
white-space: nowrap;
}
.cus_overflow {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.showMore {
color: #1867b0;
}
.cus_popup {
width: 70%;
height: 50%;
/*border-radius: 10px;*/
padding: 10px 14px;
font-size: 15px;
/*background-color: #E5E7E9;
background-image: url("https://www.transparenttextures.com/patterns/green-cup.png");*/
}
.cus_icon {
z-index: 10000;
color: white;
font-size: 35px;
position: fixed;
top: 81%;
left: 44%;
}
.userPopup {
height: 80%;
background-color: #f6f7f9;
font-size: 14px;
}
.van-row div {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.firstName {
width: 45px;
background-color: lightgrey;
border-radius: 45px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: white;
}
.content {
height: 84%;
overflow: auto;
}
.van-dialog__header {
padding-top: 8px;
}
.van-dialog__confirm {
color: #1867b0;
}
.van-field__label {
width: 5em;
}
.cus_cell {
padding: 4px 0px;
font-size: 12px;
}
.van-checkbox-group {
max-height: 260px;
overflow-y: auto;
margin-top: 6px;
}
.unit {
display: inline-block;
max-width: 160px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: absolute;
}
.cus_button {
/*border-top-right-radius: 16px;*/
/*border-bottom-left-radius: 16px;*/
height: 26px;
border-radius: 10px;
}
.van-dropdown-menu__item {
flex: auto;
}
.audit_icon {
font-size: 24px;
position: absolute;
font-weight: bolder;
right: 0;
top: 10px;
}
.van-cell__title {
font-size: 16px;
}
</style>
<div id="app" v-cloak>
<m-page-loading v-if="mLoading"></m-page-loading>
<!--top栏-->
<van-nav-bar
title="我的预约"
left-arrow
placeholder
fixed
@click-left="history.go(-1)"
safe-area-inset-top
></van-nav-bar>
<!--筛选框-->
<div class="search-fixed">
<van-search
v-model="pageForm.searchKeyword"
shape="round"
maxlength="10"
@search="doSearch"
placeholder="请输入场地名称、场地地点进行查询"
>
</van-search>
<van-dropdown-menu>
<van-dropdown-item :title="pageForm.time" ref="item" @open="">
<van-cell center title="查询全部">
<template #right-icon>
<van-switch v-model="pageForm.timeSwitch" size="24" active-color="#246fb4"></van-switch>
</template>
</van-cell>
<van-datetime-picker v-show="pageForm.timeSwitch === false"
v-model="time" cancel-button-text=" " confirm-button-text=" "
type="year-month"
title="选择年月"
:formatter="timeFormatter"
></van-datetime-picker>
<div style="padding: 5px 16px;margin-top: 6px">
<van-button type="danger" color="#246fb4" block round @click="onConfirm" style="height: 36px">
确认
</van-button>
</div>
</van-dropdown-item>
<van-dropdown-item v-model="pageForm.typeId" :options="typeList"
@change="doSearch"></van-dropdown-item>
</van-dropdown-menu>
</div>
<!--列表-->
<div style="margin-top: 116px">
<van-list
v-model="loading"
:finished="finished" :immediate-check="false"
:finished-text="tableData.length>0?'没有更多了':''"
@load="onLoad">
<div class="van-doc-card" v-for="o in tableData">
<div @click="openView(o.id, o.modulename)">
<div style="display: flex; justify-content: space-between">
<div style="width: 74%">
<div class="van-ellipsis title">
<span class="title_span">|</span>
<span>{{o.name}}</span>
</div>
<div style="color: grey">{{o.address}}</div>
</div>
<div style="color: #1867b0;">
{{o.meetingtypename}}
</div>
</div>
<van-divider></van-divider>
<div style="margin-top: 10px">
<van-row>
<van-col span="24">
<span style="color: grey">预约天数:</span>
<span>{{o.days}}</span>
</van-col>
</van-row>
<van-row>
<van-col span="24">
<span style="color: grey; float: left">预约时间:</span>
<span v-for="(item,index) in o.concat_day.split(',')">
<div :style="index !== 0 ? 'text-indent: 5em' : ''">{{getTime(o, item)}}</div>
</span>
</van-col>
</van-row>
<van-row>
<van-col span="24">
<span style="color: grey">审核状态:</span>
<span v-if="[0].includes(o.stateaudittype)"
style="color: #e6a23c">{{o.statename}}</span>
<span v-if="o.stateaudittype==3" style="color: #67c23a">{{o.statename}}</span>
<span v-if="o.stateaudittype==1" style="color: #f56c6c">{{o.statename}}</span>
</van-col>
</van-row>
<van-row v-if="o.stateaudittype == '1'">
<van-col span="24">
<span style="color: grey">审核意见:</span>
<span>{{JSON.parse(o.auditlist).find(x => x.auditState === false).auditOption}}</span>
</van-col>
</van-row>
</div>
<div style="display: flex; justify-content: flex-end; margin-top: 4px">
<div>
<van-button @click.stop="rollback(o)" class="cus_button"
type="primary" size="small" color="#1867b0"
style="margin-right: 8px; width: auto;">撤销预约
</van-button>
<van-button @click.stop="backOption(o)" class="cus_button"
type="primary" size="small" color="#1867b0"
style="margin-right: 8px; width: auto;">反馈意见
</van-button>
</div>
</div>
</div>
</div>
</van-list>
<van-empty
v-if="mLoading==false&&tableData.length==0"
class="custom-image"
image="/none.svg"
description="暂无数据"
></van-empty>
</div>
<van-dialog v-model="show" title="反馈意见" show-cancel-button @confirm="backDo">
<van-field
v-model="option"
rows="4"
label="反馈意见:"
autosize
type="textarea"
maxlength="50"
placeholder="请输入反馈意见"
show-word-limit
></van-field>
</van-dialog>
</div>
<script>
<!--# include("/platform/activity/includeJs/activityUtil.js"){} #-->
const siteTypeUtil = new typeUtil()
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
time: new Date(),
option: '',
show: false,
list: ['a', 'b'],
typeList: [],
timeList: [],
info: {},
}
},
methods: {
onConfirm() {
if (this.pageForm.timeSwitch === true) {
this.timeList = [{text: '全部', value: '全部'}]
} else {
this.timeList = [{
text: moment(this.time).format('YYYY-MM'),
value: moment(this.time).format('YYYY-MM')
}]
}
this.$set(this.pageForm, "time", this.timeList[0].value)
this.$refs.item.toggle()
this.doSearch()
},
timeFormatter(type, val) {
if (type === 'year') {
return val + ``;
}
if (type === 'month') {
return val + ``;
}
return val;
},
async rollback(o) {
const self = this
const res = await $.post("/platform/activity/site/reserve/isCanRollBack", {id: o.id});
if (res === true) {
vant.Toast('此预约状态下不能进行撤回操作!')
return
}
vant.Dialog.confirm({
title: '温馨提示',
message: '您是否要撤销此预约?',
}).then(async () => {
const resp = await $.post('/mobile/activity/site/info/rollback', {
id: o.id
})
vant.Toast(resp.msg)
if (resp.code === 0) {
self.doSearch()
}
}).catch(() => {
});
},
backOption(o) {
this.info = o
this.option = ''
this.show = true
},
async backDo() {
if (this.option === '') {
vant.Toast('请填写反馈意见')
return
}
const res = await $.post('/mobile/activity/site/info/backOption', {
id: this.info.id,
option: this.option
})
if (res.code === 0) {
this.doSearch()
vant.Toast(res.msg)
} else {
vant.Toast('操作失败')
}
},
getTime(o, day) {
const week = new Date(day).getDay()
const arr = ['日', '一', '二', '三', '四', '五', '六']
return moment(day).format('MM月DD日') + ' 周' + arr[week] + ' ' + o.start_time + '-' + o.end_time
},
doSearch() {
this.pageForm.pageNumber = 1
this.tableData = []
this.finished = false
this.onLoad()
},
async onLoad() {
this.loading = true
$.post('/mobile/activity/site/info/myReserve', this.pageForm).then(res => {
if (res.code === 0) {
this.tableData = this.tableData.concat(res.data.list)
if (this.tableData.length === res.data.totalCount) {
this.finished = true
} else {
this.pageForm.pageNumber++
}
}
this.loading = false
})
},
},
async created() {
this.typeList = await siteTypeUtil.getAllType()
this.typeList.unshift({text: '全部场地类型'})
if (this.typeList && this.typeList.length > 0) {
this.$set(this.pageForm, "typeId", this.typeList[0].value)
}
//this.timeList.unshift({text: moment().format('YYYY-MM'), value: moment().format('YYYY-MM')})
this.timeList = [{text: '全部', value: '全部'}]
this.$set(this.pageForm, "time", this.timeList[0].value)
this.$set(this.pageForm, "timeSwitch", true)
this.onLoad()
}
})
</script>
<!--#
}
#-->
@@ -1,467 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.my_calendar {
width: 100%;
height: 100px;
background-color: #0e78c5;
display: flex;
align-items: center;
color: white;
}
.day {
background-color: #14497e;
display: inline-block;
text-align: center;
padding: 5px 6px;
line-height: 22px;
border-radius: 4px;
margin-right: 6px;
font-size: 14px;
}
.time {
width: 72%;
text-align: center;
}
.state {
width: 80px;
height: 36px;
text-align: center;
background-color: #f2f2f2;
border-radius: 2px;
color: #929292;
}
.container {
padding: 10px 0px;
background-color: white;
width: 95%;
margin: 0 auto;
border-radius: 6px;
margin-top: 10px;
}
tr {
line-height: 36px;
}
.van-action-sheet__content {
padding: 10px;
font-size: 15px;
}
.title {
margin: 10px 0px;
color: grey;
}
.top-calendar {
height: 70px;
max-height: 70px;
position: sticky;
top: 0;
left: 0;
width: 100%;
max-width: 100%;
display: flex;
align-items: center;
background-color: #0e78c5;
}
.calendar-left {
width: calc(100% - 20px);
overflow-x: auto;
display: flex;
height: 90%;
}
.calendar-left-day {
min-width: 65px;
height: 100%;
margin: 0 5px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #FFF;
}
.left-day-active {
background-color: #0000cc;
}
.day-info-month {
}
.day-info-week {
margin-bottom: 5px;
}
.calendar-right {
width: 30px;
max-width: 30px;
text-align: center;
height: 60%;
border-left: 1px solid #fff3f3;
display: flex;
align-items: center;
justify-content: center;
margin-left: 5px;
}
.top_pop .van-popup {
top: 46px;
}
.van-action-sheet {
max-height: 90%;
}
</style>
<div id="app" v-cloak>
<!--top栏-->
<van-nav-bar
:title="site.name"
left-arrow
placeholder
fixed
@click-left="history.go(-1)"
safe-area-inset-top
></van-nav-bar>
<div class="top-calendar">
<div class="calendar-left">
<div class="calendar-left-day" :class="moment(item).unix() == selectDate.unix() ? 'left-day-active':''"
@click="dayClick(item)"
v-for="item in weekList">
<div class="day-info-week">
{{getWeekTextByDate(item)}}
</div>
<div class="day-info-month">
{{moment(item).format('MM-DD')}}
</div>
</div>
</div>
<div class="calendar-right">
<van-icon size="16" color="white" name="arrow-down" @click="calendarVisible=true"></van-icon>
<van-calendar class="top_pop" v-model="calendarVisible" color="#246fb4" position="top" @confirm="onConfirm"
:default-date="selectDate.toDate()"
:formatter="calendarFormatter"
title="选择开始日期"></van-calendar>
</div>
</div>
<div class="container">
<table>
<tr v-for="item in timeData">
<td class="time">{{item.start_time + '-' + item.end_time}}</td>
<td>
<div v-if="isCanRe(item)===3" class="state" style="background-color: #0e78c5;color: #fff3f3">
已预约
</div>
<div v-if="isCanRe(item) === 2" class="state" style="background-color: #fff4f2; color: #cc5a45">约满
</div>
<div @click="chooseTime(item)" v-if="isCanRe(item) === 1" class="state"
style="background-color: #e8ffef; color: #52986a">
<span v-if="!times.map(o => o.fullDay).includes(selectDate.format('YYYY-MM-DD') + ' ' + item.start_time + '-' + item.end_time)">可预约</span>
<span v-else>
<van-icon name="passed" size="26" style="line-height: 36px;position: unset"></van-icon>
</span>
</div>
<div v-if="isCanRe(item) === 0" class="state">已过期</div>
</td>
</tr>
</table>
</div>
<div style="position: fixed; bottom: 0; width: 100%">
<van-button @click="reserve" type="primary" color="#246fb4" style="width: 100%">确定预约</van-button>
</div>
<van-action-sheet v-model="show" title="确认预约信息">
<van-form @submit="reserveDo">
<van-cell title="预约人">{{person}}</van-cell>
<van-cell title="性别">${@shiro.getPrincipalProperty('sex')}</van-cell>
<van-cell title="工号">${@shiro.getPrincipalProperty('loginname')}</van-cell>
<van-cell title="所属单位">{{unit}}</van-cell>
<van-cell title="联系电话">{{phone}}</van-cell>
<van-cell title="预约时间">
<div v-for="time in times">
<van-tag closeable size="medium" type="primary" @close="close(time.fullDay)">
{{time.fullDay}}
</van-tag>
</div>
</van-cell>
<van-cell title="预约地点">{{site.name}}</van-cell>
<van-field
v-model="message"
rows="1"
autosize
label="预约事由"
type="textarea"
maxlength="50"
required
placeholder="请输入预约事由"
show-word-limit
:rules="[{required:true,message:'请填写预约事由'}]"
></van-field>
<van-field
v-model="joinUser"
rows="2"
autosize
label="参加人员"
type="textarea"
maxlength="50"
placeholder="请输入参加人员"
show-word-limit
></van-field>
</van-form>
<div style="margin: 20px 0px; display: flex; justify-content: space-between;padding: 0px 22px;">
<van-button @click="message = '';show = false" color="#246fb4" style="width: 47%" size="small" plain
type="info">关闭
</van-button>
<van-button @click="reserveDo" color="#246fb4" style="width: 47%" size="small" type="info">确认</van-button>
</div>
</van-action-sheet>
</div>
<script>
moment.locale('zh_cn');
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return decodeURI(r[2]);
return null;
}
<!--# include("/platform/activity/includeJs/activityUtil.js"){} #-->
const siteTypeUtil = new typeUtil()
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
person: "${@shiro.getPrincipalProperty('username')}",
unit: "${@shiro.getPrincipalProperty('unit').getName()}",
phone: "${@shiro.getPrincipalProperty('mobile')}",
message: '',
show: false,
site_id: '',
site: {},
timeData: [],
times: [],
weekList: [],
joinUser: '',
calendarVisible: false,
selectDate: null,
//已经预约的记录
alreadyReserveRecord: [],
holidays: ['2022-06-03', '2022-06-04', '2022-06-05', '2022-09-10', '2022-09-11', '2022-09-12',
'2022-10-01', '2022-10-02', '2022-10-03', '2022-10-04', '2022-10-05', '2022-10-06', '2022-10-07',],
}
},
computed: {
getWeekTextByDate() {
return (date) => {
const weekNum = moment(date).day()
switch (weekNum) {
case 0:
return '周日'
case 1:
return '周一'
case 2:
return '周二'
case 3:
return '周三'
case 4:
return '周四'
case 5:
return '周五'
case 6:
return '周六'
}
}
},
calendarFormatter() {
return (day) => {
// 休息日不能选择
if (this.site.workday === true) {
let week = day.date.getDay()
if (week === 0 || week === 6) {
day.type = 'disabled'
}
}
return day
}
}
},
methods: {
close(f) {
if (this.times.length === 1) {
vant.Toast('必须保留一个时间段')
return
}
const index = this.times.findIndex(v => v.fullDay === f)
this.times.splice(index, 1)
},
onConfirm(date) {
this.selectDate = moment(date)
this.setWeekList(this.selectDate)
this.calendarVisible = false
},
//这里要排除掉休息日
setWeekList(startDate) {
const wk = []
wk.push(moment(startDate))
let count = 1
while (wk.length < 7) {
const addDate = moment(startDate).add(count, 'd')
//这里不是休息日才能加到数组里
if (addDate.day() !== 0 && addDate.day() !== 6 && !this.holidays.includes(moment(addDate).format('YYYY-MM-DD'))) {
wk.push(addDate)
}
count++
}
this.weekList = wk
},
dayClick(date) {
this.selectDate = date
this.getReserve()
},
reserve() {
if (this.times.length === 0) {
vant.Toast('请选择要预约的时段')
return
}
this.show = true
},
async reserveDo() {
// const resp = await $.post('/mobile/activity/site/info/reserveDo', {
// siteId: this.site_id,
// times: JSON.stringify(this.times),
// message: this.message,
// joinUser: this.joinUser,
// })
// if (resp.code === 0) {
// vant.Toast('预约成功')
// if (resp.code === 0) {
// this.show = false
// this.times = []
// this.message = null
// await this.getMyReservation()
// await this.getReserve()
// await this.onLoad()
// }
// } else {
// vant.Toast('预约失败')
// }
},
chooseTime(item) {
const cloneItem = clone(item)
const map = this.times.map(o => o.fullDay)
const index = map.indexOf(this.selectDate.format('YYYY-MM-DD') + ' ' + cloneItem.start_time + '-' + cloneItem.end_time)
if (index > -1) {
this.times.splice(index, 1)
} else {
cloneItem.day = this.selectDate.format('YYYY-MM-DD')
cloneItem.fullDay = cloneItem.day + ' ' + cloneItem.start_time + '-' + cloneItem.end_time
this.times.push(cloneItem)
}
},
isCanRe(item) {
const now = new Date()
const end = moment().format('YYYY-MM-DD') + ' ' + item.end_time + ':00'
const itemFullTime = this.selectDate.format('YYYY-MM-DD') + " " + item.start_time + "-" + item.end_time
if (this.alreadyReserveRecord.includes(itemFullTime)) {
return 3
}
if (now.getTime() >= new Date(end).getTime() && this.selectDate.format('YYYY-MM-DD') === moment().format('YYYY-MM-DD')) {
return 0
} else {
if (this.site.multiple) {
return 1
} else {
return item.hasReserve === true ? 2 : 1
}
}
},
async onLoad() {
this.loading = true
$.post('/mobile/activity/site/info/getDetail', {id: this.site_id}).then(res => {
if (res.code === 0) {
this.site = res.data
}
this.loading = false
})
},
async getReserve() {
const resp = await $.post('/mobile/activity/site/info/getReserve', {
siteId: this.site_id,
day: moment(this.selectDate).format('YYYY-MM-DD'),
})
if (resp.code === 0) {
resp.data.forEach(item => {
item.isClick = true
})
this.timeData = resp.data
}
},
async getMyReservation() {
const resp = await $.post('/mobile/activity/site/info/getMyReservation', {
site_id: this.site_id
})
if (resp.code === 0) {
this.alreadyReserveRecord = resp.data.map(v => v.reserve_day + " " + v.start_time + "-" + v.end_time)
}
},
//获取最新的一个工作日设为当前时间
getLatestWorkDay() {
//1.首先判断今天是不是工作日
const weekNum = moment().day()
let selectDate = null
if (weekNum === 0) {
//周日
selectDate = moment().add(1, 'd')
} else if (weekNum === 6) {
//周六
selectDate = moment().add(2, 'd')
} else {
selectDate = moment()
}
return selectDate
}
},
async created() {
this.site_id = getQueryString('id')
this.selectDate = this.getLatestWorkDay()
this.setWeekList(this.selectDate)
await this.getReserve()
await this.onLoad()
await this.getMyReservation()
}
})
</script>
<!--#
}
#-->
@@ -1,126 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<div id="app">
<van-nav-bar title="职工之家场地预约校工会审核" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<site_h5_info :id="id">
<template #audit>
<div class="van-cell-group__title mt10">
<div class="van-sidebar-item van-sidebar-item--select">
校工会审核
</div>
</div>
<van-form>
<van-field readonly
value="${@shiro.getPrincipalProperty('username')}"
name="username"
label="审核人员"
></van-field>
<van-field :value="moment().format('YYYY-MM-DD')"
label="审核时间"
readonly></van-field>
<van-field v-model="formData.schoolOption"
rows="1"
required
autosize
label="审核意见"
type="textarea"
placeholder="请输入审核意见"
></van-field>
<!-- <van-field label="签字" required style="flex-flow: column">-->
<!-- <template #label>-->
<!-- <div class="mb10">签&emsp;&emsp;字</div>-->
<!-- </template>-->
<!-- <template #input>-->
<!-- <mobile-sign ref="signature" :my_sign.sync="formData.sign"></mobile-sign>-->
<!-- </template>-->
<!-- </van-field>-->
<van-row gutter="20" style="margin-top: 30px;padding: 0 25px">
<van-col span="12">
<van-button :color="themeColor" plain block @click="doAudit(false)">拒 绝
</van-button>
</van-col>
<!-- <van-col span="8">-->
<!-- <van-button color="red" block plain @click="doAudit(2)">返回修改-->
<!-- </van-button>-->
<!-- </van-col>-->
<van-col span="12">
<van-button :color="themeColor" block @click="doAudit(true)">通 过
</van-button>
</van-col>
</van-row>
</van-form>
</template>
</site_h5_info>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
components: {
'site_h5_info': httpVueLoader('/components/activity/site/SiteH5Info.vue'),
'mobile-sign': httpVueLoader('/components/sign/mobileSign.vue'),
},
data() {
return {
id: GetQueryString("id"),
formData: {}
}
},
methods: {
async doAudit(pass) {
if (this.formData.schoolOption == null || this.formData.schoolOption === '') {
this.$toast('请填写审核意见')
return
}
this.$dialog.confirm({
title: '提示',
message: '您确定要' + (pass ? '通过' : '拒绝') + '吗?',
}).then(async () => {
const loading = this.$toast.loading({
message: '提交中...',
forbidClick: true,
})
const {
data,
code,
msg
} = await $.post('/platform/activity/site/review/doProcess',
{
id: this.id,
schoolOption: this.formData.schoolOption,
isPass: pass
}
)
loading.clear()
if (code === 0) {
this.$toast.success(msg)
setTimeout(() => {
window.history.back()
}, 500)
} else {
this.$toast.fail(msg)
}
}).catch(() => {
})
}
},
created() {
}
})
</script>
<!--#
}
#-->
@@ -1,214 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
#app {
background: #ececec;
}
.table-list {
margin-top: 64px;
}
.table-item {
margin: 16px;
background: #fff;
border-radius: 10px;
padding: 16px;
font-size: 14px;
color: #5b5a5a;
position: relative;
}
.table-item .header-title {
font-size: 18px;
font-weight: bold;
width: calc(100% - 100px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.table-item .header-title-extra {
position: absolute;
right: 10px;
top: 10px;
}
.cell {
display: flex;
padding: 2px;
flex-wrap: nowrap;
}
.cell .title {
}
.cell .content {
}
.extra {
padding: 10px 0 0 0;
display: flex;
justify-content: flex-end;
gap: 10px;
}
.van-dropdown-menu__bar .van-dropdown-menu__item {
flex: 1;
}
</style>
<div id="app" v-cloak>
<div>
<van-nav-bar title="职工之家场地预约校工会审核" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<div class="search-fixed">
<van-dropdown-menu active-color="#1989fa">
<van-dropdown-item :title="pageForm.time" ref="dropItemYearMonth">
<van-datetime-picker
v-model="currentDate"
type="year-month"
:max-date="maxDate"
title="选择年月"
@confirm="onConfirmDate"
@cancel="onCancelDate"
></van-datetime-picker>
</van-dropdown-item>
<van-dropdown-item v-model="pageForm.isAudit" :options="auditOptions"
@change="doSearch"></van-dropdown-item>
</van-dropdown-menu>
</div>
<div class="table-list">
<van-list v-model="loading"
:finished="finished"
:finished-text="tableData.length>0?'没有更多了':''"
@load="pageData">
<div v-for="item in tableData" :key="item.id" class="table-item">
<div>
<div class="header-title">
{{item.reserve_cause}}
</div>
<van-tag class="header-title-extra" :type="tagType(item.reserve_state)">
{{item.state_name}}
</van-tag>
<div class="cell">
<div class="title">预约场地:</div>
<div class="content">{{item.site_name}}</div>
</div>
<div class="cell">
<div class="title">开始时间:</div>
<div class="content">{{item.reserve_start_time}}</div>
</div>
<div class="cell">
<div class="title">结束时间:</div>
<div class="content">{{item.reserve_end_time}}</div>
</div>
<div class="cell">
<div class="title">预约人姓名:</div>
<div class="content">{{item.reserve_person_username}}</div>
</div>
<div class="cell">
<div class="title">预约人工号:</div>
<div class="content">{{item.reserve_person_loginname}}</div>
</div>
<div class="cell">
<div class="title">预约人部门:</div>
<div class="content">{{item.reserve_person_unitname}}</div>
</div>
<div class="cell">
<div class="title">预约人工会:</div>
<div class="content">{{item.reserve_person_unionname}}</div>
</div>
<div class="extra">
<van-button size="small" type="info" @click="openView(item.id)">查看详情</van-button>
<van-button size="small" type="info" @click="openAudit(item.id)"
v-if="item.reserve_state===6118">审核预约
</van-button>
</div>
</div>
</div>
</van-list>
</div>
<van-empty v-if="tableData.length==0" class="custom-image"
image="/none.svg"
description="暂无数据">
</van-empty>
</div>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
tableData: [],
pageForm: {
isAudit: false,
time: moment().format('YYYY-MM')
},
pageDataUrl: '/platform/activity/site/review/pageData',
maxDate: new Date(),
currentDate: new Date(),
auditOptions: [
{text: '全部', value: null},
{text: '已审核', value: true},
{text: '未审核', value: false},
]
}
},
computed: {
tagType() {
return (reserveState) => {
if (reserveState === 6138) {
return 'success';
} else if (reserveState === 6128) {
return 'danger';
}
return 'primary';
};
},
},
methods: {
async openAudit(id) {
window.location.href = loc() + '/audit?id=' + id
},
openView(id) {
window.location.href = '/mobile/activity/site/mine/detail?id=' + id
},
onCancelDate() {
this.$refs.dropItemYearMonth.toggle();
},
onConfirmDate(val) {
this.pageForm.time = moment(val).format('YYYY-MM')
this.$refs.dropItemYearMonth.toggle()
this.doSearch()
}
},
created() {
}
})
window.addEventListener('pageshow', e => {
if (e.persisted || (window.performance && window.performance.navigation.type === 2)) {
vue.doSearch()
}
})
</script>
<!--#
}
#-->
@@ -1,126 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<div id="app">
<van-nav-bar title="职工之家场地预约分工会审核" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<site_h5_info :id="id">
<template #audit>
<div class="van-cell-group__title mt10">
<div class="van-sidebar-item van-sidebar-item--select">
分工会审核
</div>
</div>
<van-form>
<van-field readonly
value="${@shiro.getPrincipalProperty('username')}"
name="username"
label="审核人员"
></van-field>
<van-field :value="moment().format('YYYY-MM-DD')"
label="审核时间"
readonly></van-field>
<van-field v-model="formData.unionOption"
rows="1"
required
autosize
label="审核意见"
type="textarea"
placeholder="请输入审核意见"
></van-field>
<!-- <van-field label="签字" required style="flex-flow: column">-->
<!-- <template #label>-->
<!-- <div class="mb10">签&emsp;&emsp;字</div>-->
<!-- </template>-->
<!-- <template #input>-->
<!-- <mobile-sign ref="signature" :my_sign.sync="formData.sign"></mobile-sign>-->
<!-- </template>-->
<!-- </van-field>-->
<van-row gutter="20" style="margin-top: 30px;padding: 0 25px">
<van-col span="12">
<van-button :color="themeColor" plain block @click="doAudit(false)">拒 绝
</van-button>
</van-col>
<!-- <van-col span="8">-->
<!-- <van-button color="red" block plain @click="doAudit(2)">返回修改-->
<!-- </van-button>-->
<!-- </van-col>-->
<van-col span="12">
<van-button :color="themeColor" block @click="doAudit(true)">通 过
</van-button>
</van-col>
</van-row>
</van-form>
</template>
</site_h5_info>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
components: {
'site_h5_info': httpVueLoader('/components/activity/site/SiteH5Info.vue'),
'mobile-sign': httpVueLoader('/components/sign/mobileSign.vue'),
},
data() {
return {
id: GetQueryString("id"),
formData: {}
}
},
methods: {
async doAudit(pass) {
if (this.formData.unionOption == null || this.formData.unionOption === '') {
this.$toast('请填写审核意见')
return
}
this.$dialog.confirm({
title: '提示',
message: '您确定要' + (pass ? '通过' : '拒绝') + '吗?',
}).then(async () => {
const loading = this.$toast.loading({
message: '提交中...',
forbidClick: true,
})
const {
data,
code,
msg
} = await $.post('/platform/activity/site/unionProcess/doProcess',
{
id: this.id,
unionOption: this.formData.unionOption,
isPass: pass
}
)
loading.clear()
if (code === 0) {
this.$toast.success(msg)
setTimeout(() => {
window.history.back()
}, 500)
} else {
this.$toast.fail(msg)
}
}).catch(() => {
})
}
},
created() {
}
})
</script>
<!--#
}
#-->
@@ -1,214 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
#app {
background: #ececec;
}
.table-list {
margin-top: 64px;
}
.table-item {
margin: 16px;
background: #fff;
border-radius: 10px;
padding: 16px;
font-size: 14px;
color: #5b5a5a;
position: relative;
}
.table-item .header-title {
font-size: 18px;
font-weight: bold;
width: calc(100% - 100px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.table-item .header-title-extra {
position: absolute;
right: 10px;
top: 10px;
}
.cell {
display: flex;
padding: 2px;
flex-wrap: nowrap;
}
.cell .title {
}
.cell .content {
}
.extra {
padding: 10px 0 0 0;
display: flex;
justify-content: flex-end;
gap: 10px;
}
.van-dropdown-menu__bar .van-dropdown-menu__item{
flex: 1;
}
</style>
<div id="app" v-cloak>
<div>
<van-nav-bar title="职工之家场地预约分工会审核" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<div class="search-fixed">
<van-dropdown-menu active-color="rgb(0, 78, 100)">
<van-dropdown-item :title="pageForm.time" ref="dropItemYearMonth">
<van-datetime-picker
v-model="currentDate"
type="year-month"
:max-date="maxDate"
title="选择年月"
@confirm="onConfirmDate"
@cancel="onCancelDate"
></van-datetime-picker>
</van-dropdown-item>
<van-dropdown-item v-model="pageForm.isAudit" :options="auditOptions"
@change="doSearch"></van-dropdown-item>
</van-dropdown-menu>
</div>
<div class="table-list">
<van-list v-model="loading"
:finished="finished"
:finished-text="tableData.length>0?'没有更多了':''"
@load="pageData">
<div v-for="item in tableData" :key="item.id" class="table-item">
<div>
<div class="header-title">
{{item.reserve_cause}}
</div>
<van-tag class="header-title-extra" :type="tagType(item.reserve_state)">
{{item.state_name}}
</van-tag>
<div class="cell">
<div class="title">预约场地:</div>
<div class="content">{{item.site_name}}</div>
</div>
<div class="cell">
<div class="title">开始时间:</div>
<div class="content">{{item.reserve_start_time}}</div>
</div>
<div class="cell">
<div class="title">结束时间:</div>
<div class="content">{{item.reserve_end_time}}</div>
</div>
<div class="cell">
<div class="title">预约人姓名:</div>
<div class="content">{{item.reserve_person_username}}</div>
</div>
<div class="cell">
<div class="title">预约人工号:</div>
<div class="content">{{item.reserve_person_loginname}}</div>
</div>
<div class="cell">
<div class="title">预约人部门:</div>
<div class="content">{{item.reserve_person_unitname}}</div>
</div>
<div class="cell">
<div class="title">预约人工会:</div>
<div class="content">{{item.reserve_person_unionname}}</div>
</div>
<div class="extra">
<van-button size="small" type="info" @click="openView(item.id)">查看详情</van-button>
<van-button size="small" type="info" @click="openAudit(item.id)"
v-if="item.reserve_state===6098">审核预约
</van-button>
</div>
</div>
</div>
</van-list>
</div>
<van-empty v-if="tableData.length==0" class="custom-image"
image="/none.svg"
description="暂无数据">
</van-empty>
</div>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
tableData: [],
pageForm: {
isAudit: false,
time: moment().format('YYYY-MM')
},
pageDataUrl: '/platform/activity/site/unionProcess/pageData',
maxDate: new Date(),
currentDate: new Date(),
auditOptions: [
{text: '全部', value: null},
{text: '已审核', value: true},
{text: '未审核', value: false},
]
}
},
computed: {
tagType() {
return (reserveState) => {
if (reserveState === 6138) {
return 'success';
} else if ([6108, 6128].includes(reserveState)) {
return 'danger';
}
return 'primary';
};
},
},
methods: {
async openAudit(id) {
window.location.href = loc() + '/audit?id=' + id
},
openView(id) {
window.location.href = '/mobile/activity/site/mine/detail?id=' + id
},
onCancelDate() {
this.$refs.dropItemYearMonth.toggle();
},
onConfirmDate(val) {
this.pageForm.time = moment(val).format('YYYY-MM')
this.$refs.dropItemYearMonth.toggle()
this.doSearch()
}
},
created() {
// this.pageData()
}
})
window.addEventListener('pageshow', e => {
if (e.persisted || (window.performance && window.performance.navigation.type === 2)) {
vue.doSearch()
}
})
</script>
<!--#
}
#-->
@@ -1,130 +0,0 @@
const self_mixin = {
data() {
return {
//已报名人数
hasRegUserNum: 0,
unionId: null,
unionLimitNum: 0,
isRegisterFull: false
}
},
methods: {
async getActivityInfo() {
const resp = await $.get('/mobile/activity/unionActivity/findOne', {id: this.activityId})
if (resp.code === 0) {
resp.data.location = JSON.parse(resp.data.location)
resp.data.unionUserNumberLimit = JSON.parse(resp.data.unionUserNumberLimit)
this.o = resp.data
this.unionId = "${@shiro.getPrincipalProperty('unit').getUnionid()}"
if (!this.unionId) {
this.$toast.fail('您的所属工会信息缺失,请联系管理员')
return
}
if (this.o.userNumberLimit === 2) {
const unionLimit = resp.data.unionUserNumberLimit.find(v => v.id === this.unionId)
this.unionLimitNum = unionLimit.limitNum
}
await this.getHasRegUserNum()
this.$nextTick(() => {
// document.getElementsByClassName('activity_img_back')[0].style.backgroundImage = "url(" + FILE_DOMAIN + this.o.cover + ")"
if (this.o.needSign) {
this.initMap()
}
})
}
},
async getHasRegUserNum() {
const resp = await $.get('/mobile/activity/unionActivity/getHasRegUserNum', {activityId: this.activityId})
this.hasRegUserNum = resp.data
if (this.o.signUpMethod === 1) {
if (this.o.userNumberLimit === 1) {
if (this.hasRegUserNum === this.o.totalUserNumberLimit) {
this.isRegisterFull = true
}
}
}
},
initMap() {
let marker = null
let circle = null
this.$nextTick(() => {
let map = new AMap.Map("signMap", {
zoomEnable: true,
dragEnable: false,
resizeEnable: true,
center: [114.402582, 30.521378],
zoom: 16
});
if (this.o.location && Array.isArray(this.o.location)) {
const lng = parseFloat(this.o.location[0])
const lat = parseFloat(this.o.location[1])
marker = new AMap.Marker({
position: [lng, lat],
offset: new AMap.Pixel(-13, -30)
})
map.add(marker)
// marker.setMap(map);
// map.setZoomAndCenter(18, [lng, lat])
circle = new AMap.Circle({
center: new AMap.LngLat(lng, lat), // 圆心位置
radius: this.o.rangeMeter, //半径
strokeColor: "#F33", //线颜色
strokeOpacity: 1, //线透明度
strokeWeight: 1, //线粗细度
fillColor: "#ee2200", //填充颜色
fillOpacity: 0.35 //填充透明度
})
map.add(circle)
map.setFitView()
}
if (window.location.pathname === '/mobile/activity/myActivity/goSign' && !this.isSign) {
map.plugin('AMap.Geolocation', function () {
geolocation = new AMap.Geolocation({
enableHighAccuracy: true,//是否使用高精度定位,默认:true
timeout: 10000, //超过10秒后停止定位,默认:无穷大
maximumAge: 0, //定位结果缓存0毫秒,默认:0
convert: true, //自动偏移坐标,偏移后的坐标为高德坐标,默认:true
showButton: true, //显示定位按钮,默认:true
buttonPosition: 'LB', //定位按钮停靠位置,默认:'LB',左下角
buttonOffset: new AMap.Pixel(10, 20),//定位按钮与设置的停靠位置的偏移量,默认:Pixel(10, 20)
showMarker: true, //定位成功后在定位到的位置显示点标记,默认:true
showCircle: false, //定位成功后用圆圈表示定位精度范围,默认:true
panToLocation: true, //定位成功后将定位到的位置作为地图中心点,默认:true
zoomToAccuracy: true //定位成功后调整地图视野范围使定位位置及精度范围视野内可见,默认:false
});
map.addControl(geolocation)
geolocation.getCurrentPosition()
AMap.event.addListener(geolocation, 'error', (err) => {
alert(JSON.stringify(err))
}); //返回定位出错信息
});
}
})
},
getMapDistance(paramObj) {
let lng1 = paramObj.lng1
let lat1 = paramObj.lat1
let lng2 = paramObj.lng2
let lat2 = paramObj.lat2
let radLat1 = lat1 * Math.PI / 180.0;
let radLat2 = lat2 * Math.PI / 180.0;
let a = radLat1 - radLat2;
let b = lng1 * Math.PI / 180.0 - lng2 * Math.PI / 180.0;
let s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) +
Math.cos(radLat1) * Math.cos(radLat2) * Math.pow(Math.sin(b / 2), 2)));
s = s * 6378.137;// EARTH_RADIUS;
s = Math.round(s * 10000) / 10000;
s = s * 1000
return s.toFixed(2)
}
}
}
@@ -1,215 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.list-card {
margin-bottom: 10px;
}
.activity_card {
padding: 15px;
background: #fff;
margin: 10px;
border-radius: 5px;
}
.activity_card .van-image, .activity_card .van-image img {
border-radius: 5px;
}
.activity_card .activity_content {
margin-top: 10px;
}
.activity_card .activity_content .activity_name {
line-height: 25px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.activity_card .activity_content .activity_bottom {
line-height: 25px;
display: flex;
}
.activity_card .activity_content .activity_bottom .left {
line-height: 25px;
overflow: hidden;
width: calc(100% - 80px);
font-size: 12px;
color: #c4bebe;
white-space: nowrap;
display: flex;
align-items: center;
}
.activity_card .activity_content .activity_bottom .right {
line-height: 25px;
overflow: hidden;
width: 80px;
max-width: 80px;
text-align: right;
}
</style>
<div id="app" v-cloak>
<van-nav-bar title="活动列表" left-arrow placeholder fixed
@click-left="location.replace('/mobile/index')"></van-nav-bar>
<div style="margin: 10px auto 60px auto">
<van-list v-model="loading" :finished="finished" :finished-text="tableData.length>0?'没有更多了':''"
@load="pageData">
<div v-for="o in tableData" class="list-card" @click="openReg(o)">
<div class="activity_card">
<van-image
fit="cover"
width="100%"
height="200"
:src="FILE_DOMAIN + '/fileStreamPreview?id=' + o.cover"
></van-image>
<div class="activity_content">
<div class="activity_name van-ellipsis">
<van-icon name="fire" color="red"></van-icon>
<div style="margin-left: 10px;width: calc(100% - 26px);text-overflow: ellipsis;overflow: hidden;white-space: nowrap">
{{o.name}}
</div>
</div>
<div class="activity_bottom">
<div class="left" style="width: 100%">
<van-icon name="clock" size="1em"></van-icon>
<span style="margin-left: 10px;">
<!-- {{moment(o.startTime).format('YYYY/MM/DD HH:mm')}} 至-->
<!-- {{moment(o.endTime).format('YYYY/MM/DD HH:mm')}}-->
报名时间:{{o.applyStartTime}}至{{o.applyEndTime}}
</span>
</div>
<!-- <div class="right">-->
<!-- <span v-if="moment(o.applyEndTime).valueOf() > moment().valueOf() && moment().valueOf() > moment(o.applyStartTime).valueOf()"-->
<!-- style="color: forestgreen">-->
<!-- 报名中-->
<!-- </span>-->
<!-- <span v-else-if="moment(o.applyEndTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.startTime).valueOf()"-->
<!-- style="color: #ee1919">-->
<!-- 报名结束-->
<!-- </span>-->
<!-- <span v-else-if="moment(o.startTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.endTime).valueOf()"-->
<!-- style="color: forestgreen">-->
<!-- 活动进行中-->
<!-- </span>-->
<!-- <span v-else-if="moment().valueOf() > moment(o.endTime).valueOf()"-->
<!-- style="color: #ee1919">-->
<!-- 活动结束-->
<!-- </span>-->
<!-- </div>-->
</div>
<div class="activity_bottom">
<div class="left">
<van-icon name="clock" size="1em"></van-icon>
<span style="margin-left: 10px;">
活动时间:{{o.startTime}}
<!-- {{moment(o.activityStartTime).format('YYYY/MM/DD HH:mm')}} 至-->
<!-- {{moment(o.activityEndTime).format('YYYY/MM/DD HH:mm')}}-->
</span>
</div>
<div class="right">
<span v-if="moment(o.applyStartTime).valueOf() > moment().valueOf()" style="color: forestgreen">
未开始报名
</span>
<span v-else-if="moment(o.applyEndTime).valueOf() > moment().valueOf() && moment().valueOf() > moment(o.applyStartTime).valueOf()"
style="color: forestgreen">
报名中
</span>
<span v-else-if="moment(o.applyEndTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.startTime).valueOf()"
style="color: #ee1919">
报名结束
</span>
<span v-else-if="moment(o.startTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.endTime).valueOf()"
style="color: forestgreen">
活动进行中
</span>
<span v-else-if="moment().valueOf() > moment(o.endTime).valueOf()"
style="color: #ee1919">
活动结束
</span>
</div>
</div>
</div>
</div>
</div>
</van-list>
</div>
<van-empty v-if="mLoading==false&&tableData.length==0" class="custom-image" image="/none.svg"
description="暂无数据">
</van-empty>
<div>
<van-tabbar v-model="tabBarIndex" :active-color="themeColor">
<van-tabbar-item icon="home-o" url="/mobile/activity/unionActivity">全部活动</van-tabbar-item>
<van-tabbar-item icon="friends-o" url="/mobile/activity/myActivity">我的活动</van-tabbar-item>
</van-tabbar>
</div>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
pageDataUrl: '/mobile/activity/myActivity',
pageForm: {
year: ''
},
tabBarIndex: 1
}
},
methods: {
yearChange() {
this.pageForm.pageNumber = 1
this.pageData()
},
async pageData() {
this.mLoading = true
const resp = await $.post('/mobile/activity/myActivity/pageData', this.pageForm)
if (resp.code === 0) {
if (resp.data.list.length === 0) {
this.tableData = []
} else {
this.tableData = this.tableData.concat(resp.data.list)
}
if (this.tableData.length === resp.data.totalCount) {
this.finished = true
} else {
this.pageForm.pageNumber++
}
}
this.loading = false;
this.mLoading = false
},
openReg(o) {
// window.location.href = '/mobile/activity/unionActivity/goReg?id=' + o.id + '&signUpMethod=1'
if (o.projectTypeCode === '50004') {
window.location.href = '/mobile/activity/myActivity/goMyProject?id=' + o.id
} else {
window.location.href = '/mobile/activity/myActivity/goSign?id=' + o.id
}
}
},
created() {
this.pageForm.year = new Date().getFullYear()
}
})
</script>
<!--#
}
#-->
@@ -1,283 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.list-card {
margin-bottom: 10px;
}
.activity_card {
padding: 15px;
background: #fff;
margin: 10px;
border-radius: 5px;
}
.activity_card .van-image, .activity_card .van-image img {
border-radius: 5px;
}
.activity_card .activity_content {
margin-top: 10px;
}
.activity_card .activity_content .activity_name {
line-height: 25px;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.activity_card .activity_content .activity_bottom {
line-height: 25px;
display: flex;
}
.activity_card .activity_content .activity_bottom .left {
line-height: 25px;
overflow: hidden;
width: calc(100% - 80px);
font-size: 12px;
color: #c4bebe;
white-space: nowrap;
display: flex;
align-items: center;
}
.activity_card .activity_content .activity_bottom .right {
line-height: 25px;
overflow: hidden;
width: 80px;
max-width: 80px;
text-align: right;
}
</style>
<div id="app" v-cloak>
<van-nav-bar title="活动列表" left-arrow placeholder fixed
@click-left="history.go(-1)"></van-nav-bar>
<div class="search-fixed">
<van-dropdown-menu active-color="#1989fa">
<van-dropdown-item v-model="pageForm.year" :options="yearList"
@change="formChange"></van-dropdown-item>
<van-dropdown-item v-model="pageForm.activityStatus" :options="activityStatusList"
@change="formChange"></van-dropdown-item>
<van-dropdown-item v-model="pageForm.activityLevel" :options="activityLevelList"
@change="formChange"></van-dropdown-item>
</van-dropdown-menu>
</div>
<div style="margin: 60px auto 80px auto">
<van-list v-model="loading" :finished="finished"
:finished-text="tableData.length>0?'没有更多了':''"
@load="pageData">
<div v-for="o in tableData" class="list-card" @click="openReg(o)">
<div class="activity_card">
<van-image
fit="cover"
width="100%"
height="200"
:src="FILE_DOMAIN + '/fileStreamPreview?id=' + o.cover"
></van-image>
<div class="activity_content">
<div class="activity_name van-ellipsis">
<van-icon name="fire" color="red"></van-icon>
<div style="margin-left: 10px;width: calc(100% - 26px);text-overflow: ellipsis;overflow: hidden;white-space: nowrap">
{{o.name}}
</div>
</div>
<div class="activity_bottom">
<div class="left" style="width: 100%">
<van-icon name="clock" size="1em"></van-icon>
<span style="margin-left: 10px;">
报名时间:{{o.applyStartTime}}至{{o.applyEndTime}}
<!-- {{moment(o.activityStartTime).format('YYYY/MM/DD HH:mm')}} 至-->
<!-- {{moment(o.activityEndTime).format('YYYY/MM/DD HH:mm')}}-->
</span>
</div>
<!-- <div class="right">-->
<!-- <span v-if="moment(o.applyEndTime).valueOf() > moment().valueOf() && moment().valueOf() > moment(o.applyStartTime).valueOf()"-->
<!-- style="color: forestgreen">-->
<!-- 报名中-->
<!-- </span>-->
<!-- <span v-else-if="moment(o.applyEndTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.startTime).valueOf()"-->
<!-- style="color: #ee1919">-->
<!-- 报名结束-->
<!-- </span>-->
<!-- <span v-else-if="moment(o.startTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.endTime).valueOf()"-->
<!-- style="color: forestgreen">-->
<!-- 活动进行中-->
<!-- </span>-->
<!-- <span v-else-if="moment().valueOf() > moment(o.endTime).valueOf()"-->
<!-- style="color: #ee1919">-->
<!-- 活动结束-->
<!-- </span>-->
<!-- </div>-->
</div>
<div class="activity_bottom">
<div class="left">
<van-icon name="clock" size="1em"></van-icon>
<span style="margin-left: 10px;">
活动时间:{{o.startTime}}
<!-- {{moment(o.activityStartTime).format('YYYY/MM/DD HH:mm')}} 至-->
<!-- {{moment(o.activityEndTime).format('YYYY/MM/DD HH:mm')}}-->
</span>
</div>
<div class="right">
<span v-if="moment(o.applyStartTime).valueOf() > moment().valueOf()"
style="color: forestgreen">
未开始报名
</span>
<span v-else-if="moment(o.applyEndTime).valueOf() > moment().valueOf() && moment().valueOf() > moment(o.applyStartTime).valueOf()"
style="color: forestgreen">
报名中
</span>
<span v-else-if="moment(o.applyEndTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.startTime).valueOf()"
style="color: #ee1919">
报名结束
</span>
<span v-else-if="moment(o.startTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.endTime).valueOf()"
style="color: forestgreen">
活动进行中
</span>
<span v-else-if="moment().valueOf() > moment(o.endTime).valueOf()"
style="color: #ee1919">
活动结束
</span>
</div>
</div>
<!-- <div class="activity_content" style="font-size: 12px; color: #c4bebe;">-->
<!-- <div class="left">-->
<!-- <van-icon name="clock" size="1em"></van-icon>-->
<!-- <span style="margin-left: 5px;">-->
<!-- {{moment(o.startTime).format('YYYY/MM/DD HH:mm')}} 至-->
<!-- {{moment(o.endTime).format('YYYY/MM/DD HH:mm')}}-->
<!-- </span>-->
<!-- </div>-->
<!-- </div>-->
</div>
</div>
</div>
</van-list>
</div>
<van-empty v-if="mLoading==false&&tableData.length==0" class="custom-image" image="/none.svg"
description="暂无数据">
</van-empty>
<div>
<van-tabbar v-model="tabBarIndex" :active-color="themeColor">
<van-tabbar-item icon="home-o" url="/mobile/activity/unionActivity">全部活动
</van-tabbar-item>
<van-tabbar-item icon="friends-o" url="/mobile/activity/myActivity">我的活动
</van-tabbar-item>
</van-tabbar>
</div>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins],
data() {
return {
pageDataUrl: '/mobile/activity/unionActivity/pageData',
pageForm: {
year: '',
activityStatus: null
},
tabBarIndex: 0,
activityLevelList: [],
activityStatusList: [
{text: '全部', value: 1},
{text: '未开始', value: 5},
{text: '报名中', value: 2},
{text: '进行中', value: 3},
{text: '已结束', value: 4}
]
}
},
methods: {
formChange() {
this.pageForm.pageNumber = 1
this.tableData = []
this.pageData()
},
async pageData() {
this.mLoading = true
const resp = await $.post('/mobile/activity/unionActivity/pageData', this.pageForm)
if (resp.code === 0) {
if (resp.data.list.length === 0) {
this.tableData = []
} else {
this.tableData = this.tableData.concat(resp.data.list)
/* this.tableData.forEach(v => {
if (v.cover) {
const cover = JSON.parse(v.cover)
v.cover = cover[0].filepath
}
})*/
}
if (this.tableData.length === resp.data.totalCount) {
this.finished = true
} else {
this.pageForm.pageNumber++
}
}
this.loading = false;
this.mLoading = false
},
//跳转页面
openReg(o) {
console.log(o)
if (moment(o.applyStartTime).valueOf() > moment().valueOf()) {
this.$toast('活动未开始报名')
return;
}
if (o.projectTypeCode === '50004') {
window.location.href = '/mobile/activity/Sports/list/activityEventList?id=' + o.id
} else {
window.location.href = '/mobile/activity/unionActivity/goReg?id=' + o.id + '&signUpMethod=' + o.signUpMethod
}
},
async init() {
this.$set(this.pageForm, "activityStatus", 1)
this.$set(this.pageForm, "year", new Date().getFullYear())
const {data} = await $.get("/platform/activity/basic/basic/settings/getActivityTwoLevelType", {code: 40000})
this.activityLevelList = []
this.activityLevelList.push({value: null, text: "全部类别"})
data.forEach(v => {
this.activityLevelList.push({value: v.code, text: v.name})
})
this.$set(this.pageForm, "activityLevel", this.activityLevelList[0].value)
}
},
async created() {
this.init()
}
})
window.addEventListener('pageshow', e => {
if (e.persisted || (window.performance && window.performance.navigation.type === 2)) {
vue.init()
}
})
</script>
<!--#
}
#-->
@@ -1,110 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.activity_img_back {
background-repeat: no-repeat;
background-size: cover;
height: 200px;
width: 100%;
}
</style>
<div id="app" v-cloak>
<van-nav-bar title="活动详情" left-arrow placeholder fixed @click-left="history.back()"></van-nav-bar>
<!--#include("/mobile/activity/unionActivity/common/activityInfo.html"){}#-->
<div style="margin: 20px 20px 10px 20px" v-if="o.needSign">
<van-button
:disabled="moment().valueOf() > moment(o.endTime).valueOf() || moment().valueOf() < moment(o.startTime).valueOf() || isSign"
@click="doSign()" style="border-radius: 10px" block type="info"
:color="themeColor">
{{isSign?'签到成功':'立即签到'}}
</van-button>
</div>
</div>
<script>
<!--#include("/mobile/activity/unionActivity/common/initMap.js"){}#-->
</script>
<script>
let geolocation = null
var vue = new Vue({
el: '#app',
mixins: [mobileMixins, self_mixin],
data() {
return {
activityId: '',
o: {},
isSign: null
}
},
methods: {
async getSignStatus() {
const resp = await $.post('/mobile/activity/unionActivity/isSign', {activityId: this.activityId})
if (resp.code === 0) {
this.isSign = resp.data
}
},
async doSign() {
geolocation.getCurrentPosition(async (status, result) => {
if (status !== 'complete') {
this.$toast.fail('定位失败!')
return
}
console.log(status)
console.log(result)
const lat = result.position.lat
const lng = result.position.lng
const params = {
lat1: lat, lng1: lng, lat2: this.o.location[1], lng2: this.o.location[0]
}
const distance = this.getMapDistance(params)
console.log(distance)
console.log(this.o.rangeMeter)
if (distance > this.o.rangeMeter) {
this.$toast('距离活动打卡点还有' + distance + '米')
return
}
const confirm = await this.$dialog.confirm({
title: '提示',
message: '您确认要签到吗?',
})
const loading = this.$toast.loading({
message: '签到中...',
forbidClick: true,
overlay: true,
duration: 0
})
if (confirm === 'confirm') {
const resp = await $.post('/mobile/activity/unionActivity/singleSignUp', {activityId: this.activityId})
if (resp.code === 0) {
await this.getSignStatus()
loading.close()
this.$toast.success(resp.msg)
}
}
})
}
},
created() {
const id = GetQueryString("id")
if (id) {
this.activityId = id
this.getActivityInfo()
this.getSignStatus()
}
}
})
</script>
<!--#
}
#-->
@@ -1,180 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.activity_img_back {
background-repeat: no-repeat;
background-size: cover;
/*height: 200px;*/
width: 100%;
}
.activity_name .van-cell__title{
width: 100px;
flex: unset;
}
.activity_name .van-cell__value{
width: calc(100% - 100px);
flex: unset;
}
</style>
<div id="app" v-cloak>
<van-nav-bar title="个人报名" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<!--#include("/mobile/activity/unionActivity/common/activityInfo.html"){}#-->
<div style="margin: 20px 20px 10px 20px"
v-if="moment(o.applyStartTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.applyEndTime).valueOf()">
<van-button v-if="!isRegister && !isRegisterFull" @click="doSave()"
style="border-radius: 10px" block
type="info"
:color="themeColor">
立即报名
</van-button>
<van-button v-else-if="!isRegister && isRegisterFull" @click="doSave()"
style="border-radius: 10px" block
disabled
type="info"
:color="themeColor">
名额已满
</van-button>
<van-button v-else-if="isRegister && moment().valueOf() < moment(o.applyEndTime).valueOf()"
@click="doCancel"
style="border-radius: 10px" block type="info"
color="red">
取消报名
</van-button>
</div>
<div style="margin: 20px 20px 10px 20px"
v-if="isRegister && moment().valueOf() < moment(o.endTime).valueOf() && moment().valueOf() > moment(o.startTime).valueOf()">
<van-button
:disabled="moment().valueOf() > moment(o.endTime).valueOf() || moment().valueOf() < moment(o.startTime).valueOf() || isSign"
@click="doSign()" style="border-radius: 10px" block type="info"
:color="themeColor">
{{isSign?'签到成功':'立即签到'}}
</van-button>
</div>
</div>
<script>
<!--#include("/mobile/activity/unionActivity/common/initMap.js"){}#-->
</script>
<script>
var vue = new Vue({
el: '#app',
mixins: [mobileMixins, self_mixin],
data() {
return {
activityId: '',
o: {},
tagCloseable: true,
isRegister: false,
isSign: false
}
},
methods: {
async isRegisterForMe() {
const resp = await $.get('/mobile/activity/unionActivity/isRegisterForMe', {activityId: this.activityId})
if (resp.code === 0) {
this.isRegister = resp.data
}
},
async doSave() {
let message = ''
if (this.o.needSign) {
message = '报名后若未参加,将有可能影响到其它活动的报名,同时活动开启了现场签到!'
}
const confirm = await this.$dialog.confirm({
title: '提示',
message: '您确认要报名吗?' + message,
})
if (confirm === 'confirm') {
const loading = this.$toast.loading({
message: '报名中...',
forbidClick: true,
overlay: true,
duration: 0
})
await this.getHasRegUserNum()
const resp = await $.post('/mobile/activity/unionActivity/doSingleRegister', {activityId: this.activityId})
loading.close()
if (resp.code === 0) {
this.$toast.success(resp.msg)
setTimeout(() => {
window.history.back()
}, 1000)
} else {
this.$toast.fail(resp.msg)
}
}
},
async doCancel() {
const confirm = await this.$dialog.confirm({
title: '提示',
message: '您确认要取消报名吗?',
})
const loading = this.$toast.loading({
message: '取消中...',
forbidClick: true,
overlay: true,
duration: 0
})
if (confirm === 'confirm') {
const resp = await $.post('/mobile/activity/unionActivity/doSingleCancelRegister', {activityId: this.activityId})
loading.close()
if (resp.code === 0) {
this.$toast.success(resp.msg)
setTimeout(() => {
window.history.back()
}, 1000)
} else {
this.$toast.fail(resp.msg)
}
}
},
async getSignStatus() {
const resp = await $.post('/mobile/activity/unionActivity/isSign', {activityId: this.activityId})
if (resp.code === 0) {
this.isSign = resp.data
}
},
async doSign() {
const confirm = await this.$dialog.confirm({
title: '提示',
message: '您确认要签到吗?',
})
if (confirm === 'confirm') {
const resp = await $.post('/mobile/activity/unionActivity/singleSignUp', {activityId: this.activityId})
if (resp.code === 0) {
await this.getSignStatus()
this.$toast.success(resp.msg)
}
}
}
},
created() {
const id = GetQueryString("id")
if (id) {
this.activityId = id
this.getActivityInfo()
this.isRegisterForMe()
this.getSignStatus()
if (moment(this.o.applyStartTime).valueOf() < moment().valueOf() && moment().valueOf() > moment(this.o.applyEndTime).valueOf()) {
this.$toast.fail("不在活动范围内")
}
}
}
})
</script>
<!--#
}
#-->
@@ -1,367 +0,0 @@
<!--#
layout("/mobile/platform.html"){
#-->
<style>
.activity_img_back {
background-repeat: no-repeat;
background-size: cover;
height: 200px;
width: 100%;
}
.regCell .van-cell__label .van-tag {
margin-right: 10px;
margin-bottom: 10px;
}
.userActionPopup {
height: 80%;
}
.userActionPopup .van-cell__value {
text-align: center;
}
.userActionPopup .addBtn {
width: 24px;
}
.userActionPopup .van-action-sheet__item {
position: relative;
}
.userActionPopup .userSelSuccess {
position: absolute;
right: 20px;
}
.van-search__action {
background-color: #edf0ff
}
.activity_name .van-cell__title{
width: 100px;
flex: unset;
}
.activity_name .van-cell__value{
width: calc(100% - 100px);
flex: unset;
}
</style>
<div id="app" v-cloak>
<van-nav-bar :title="title" left-arrow placeholder fixed
@click-left="history.back()"></van-nav-bar>
<!--#include("/mobile/activity/unionActivity/common/activityInfo.html"){}#-->
<van-cell-group inset class="mt5">
<van-cell title="报名人员" class="regCell">
<template #title>
报名人员({{registerList.length}}人)
</template>
<template #label>
<div>
<span v-if="o.userNumberLimit===1">
本活动限制总报名人数:({{o.totalUserNumberLimit}})人
</span>
<span v-else-if="o.userNumberLimit===2">
当前分工会报名限额 <span style="color: orange">{{o.limitUnion.limitNum}})人</span>
</span>
</div>
<div class="mt5" v-loading="tagCloseable">
<div v-if="registerList && registerList.length>0" style="max-height: 300px;overflow-y: scroll">
<template v-for="item in registerList">
<div style="display: flex;align-items: center">
<!-- <van-tag type="primary" :closeable="tagCloseable" size="medium"-->
<!-- :color="themeColor"-->
<!-- @close="removeRegUser(item)">-->
<!-- {{item.userName}}-->
<!-- </van-tag>-->
<div style="min-width: 100px;max-width: 100px;font-size: 14px;color: #000000">
{{item.userName}}
</div>
<van-field v-model="item.notes" label="" maxlength="20"
:readonly="!tagCloseable"
placeholder="如未能到现场请填写备注原因"></van-field>
<van-button icon="delete" type="danger" size="small" @click="removeRegUser(item)"
v-if="tagCloseable"
></van-button>
</div>
</template>
</div>
<div v-else>
<div style="text-align: center;margin-top: 20px;">
无报名人员
</div>
</div>
</div>
<div class="mt5" style="text-align: right" v-if="moment(o.applyStartTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.applyEndTime).valueOf()">
<van-button v-if="tagCloseable" size="mini" type="info"
@click="openUserActionSheet" :color="themeColor">选择报名人员
</van-button>
</div>
</template>
</van-cell>
</van-cell-group>
<van-action-sheet v-model="userActionSheet" title="选择报名人员" class="userActionPopup">
<van-search v-model="searchKey" @search="onSearchUser" show-action
placeholder="请输入姓名搜索">
<template #action>
<div @click="onSearchUser(searchKey)">搜索</div>
</template>
</van-search>
<!-- <div class="van-hairline&#45;&#45;bottom">-->
<!-- 点击列表中的人员添加到活动人员中-->
<!-- </div>-->
<template v-if="searchLoading">
<van-loading size="24px" vertical>搜索中...</van-loading>
</template>
<div class="van-action-sheet__content mt5"
style="height: calc(100% - 107px);overflow-y: scroll"
v-else-if="searchUserList && searchUserList.length>0">
<template>
<template v-for="item in searchUserList"
v-if="!registerList.map(v=>v.id).includes(item.id)">
<button @click="searchUserAdd(item)"
class="van-action-sheet__item van-hairline--bottom">
<span class="van-action-sheet__name">{{item.userName}}{{item.loginName}}</span>
</button>
</template>
<!--<van-empty description="没有更多了" style="position:absolute;height: 70%"
v-else></van-empty>-->
</template>
</div>
<van-empty description="暂无数据" style="position:absolute;height: 70%"
v-else-if="searchUserList.length===0"></van-empty>
</van-action-sheet>
<div style="margin: 20px 20px 10px 20px"
v-if="moment(o.applyStartTime).valueOf() < moment().valueOf() && moment().valueOf() < moment(o.applyEndTime).valueOf()">
<van-button v-if="tagCloseable" @click="doSave()" style="border-radius: 10px" block
type="info"
:color="themeColor">
提 交
</van-button>
<van-button v-else="!tagCloseable" @click="tagCloseable = true" style="border-radius: 10px"
block type="info"
:color="themeColor">
修 改
</van-button>
</div>
<!-- <div style="margin: 20px 20px 10px 20px" v-if="tagCloseable">-->
<!-- <van-button-->
<!-- :disabled="moment().valueOf() > moment(o.endTime).valueOf() || moment().valueOf() < moment(o.startTime).valueOf()"-->
<!-- @click="doSign()" style="border-radius: 10px" block type="info"-->
<!-- :color="themeColor">-->
<!-- 立即签到-->
<!-- </van-button>-->
<!-- </div>-->
</div>
<script>
<!--#include("/mobile/activity/unionActivity/common/initMap.js"){}#-->
var vue = new Vue({
el: '#app',
mixins: [mobileMixins, self_mixin],
data() {
return {
title: "",
userId: "${@shiro.getPrincipalProperty('id')}",
userName: "${@shiro.getPrincipalProperty('username')}",
activityId: '',
o: {},
registerList: [],
addRegisterList: [],
userActionSheet: false,
searchKey: '',
searchUserList: [],
tagCloseable: true,
searchLoading: false
}
},
methods: {
async getRegisterUser() {
const resp = await $.get('/mobile/activity/myActivity/selectRegisterList', {activityId: this.activityId})
if (resp.code === 0) {
if (this.o.signUpMethod === 3) {
this.registerList = resp.data.filter(v => v.applyUserId === this.userId)
} else {
this.registerList = resp.data
}
this.addRegisterList = resp.data
if (this.registerList.length > 0) {
this.tagCloseable = false
}
}
},
openUserActionSheet() {
this.searchKey = ''
this.searchUserList = []
this.userActionSheet = true
this.onSearchUser(null)
},
async onSearchUser(val) {
// if (!val) {
// this.$toast.fail("请输入搜索条件")
// return
// }
this.searchLoading = true
const resp = await $.get('/mobile/activity/unionActivity/searchNoRegisterUser', {
activityId: this.activityId,
searchKey: val
})
if (resp.code === 0) {
this.searchLoading = false
this.searchUserList = resp.data.list
} else {
this.$toast.fail(resp.msg)
}
},
searchUserAdd(item) {
const {id, userName} = item
this.registerList.push({id, userName})
this.$toast('添加成功')
},
async removeRegUser(item) {
if (this.userId === item.id) {
this.$toast.fail("自己不能删除")
return
}
const confirm = await this.$dialog.confirm({
title: '提示',
message: '您确认要移除吗?',
})
if (confirm === 'confirm') {
const index = this.registerList.findIndex(v => v.id === item.id)
this.registerList.splice(index, 1)
}
},
//保存
async doSave() {
if (this.registerList.length === 0) {
this.$toast('请添加报名人员后再提交!')
return
}
if (this.o.signUpMethod === 3) {
if (this.registerList.length !== this.o.teamNum) {
vant.Dialog.alert({
title: '温馨提示',
message: '此活动是双人报名模式您需要报名' + this.o.teamNum + '人!',
}).then(() => {
});
return
}
if (!this.registerList.map(v => v.id).includes(this.userId)) {
vant.Dialog.alert({
title: '温馨提示',
message: '此活动是组队模式请您找' + this.o.teamNum + '朋友一起报名!',
}).then(() => {
});
return
}
// await this.getRegisterUser()
const resp = await $.get('/mobile/activity/myActivity/selectRegisterList', {activityId: this.activityId})
this.addRegisterList = resp.data
let arr = []
if (this.addRegisterList && this.addRegisterList.length > 0) {
this.addRegisterList.forEach(v => {
this.registerList.forEach(r => {
if (v.id === r.id && v.applyUserId !== this.userId) {
arr.push(r.userName)
}
})
})
}
if (arr && arr.length > 0) {
vant.Dialog.alert({
title: '温馨提示',
message: '【' + arr.toString() + '】已成功报名您无需再报名!',
}).then(() => {
});
return
}
/* if (this.addRegisterList.map(v => v.id).includes(this.userId)) {
vant.Dialog.alert({
title: '温馨提示',
message: '您已报名无需再报名!',
}).then(() => {
});
return
}*/
}
let message = ''
if (this.o.needSign) {
message = '此活动开启了签到,需要您活动当天前往签到点位核实活动报名人员后进行签到!'
}
const confirm = await this.$dialog.confirm({
title: '提示',
message: message + '您确认要报名吗?',
})
if (confirm === 'confirm') {
const loading = this.$toast.loading({
message: '报名中...',
forbidClick: true,
overlay: true,
duration: 0
})
const params = {
activityId: this.activityId,
personIds: JSON.stringify(this.registerList.map(v => v.id)),
persons: JSON.stringify(this.registerList)
}
const resp = await $.post('/mobile/activity/unionActivity/doSaveUnionRegister', params)
loading.close()
if (resp.code === 0) {
await this.getRegisterUser()
await this.getHasRegUserNum()
this.$toast.success(resp.msg)
} else {
this.$toast.fail(resp.msg)
}
}
}
},
async created() {
const id = GetQueryString("id")
if (id) {
this.activityId = id
await this.getActivityInfo()
await this.getRegisterUser()
if (this.o.signUpMethod === 3 && this.registerList.length === 0) {
this.registerList.push({id: this.userId, userName: this.userName})
}
this.title = (this.o.signUpMethod === 2 ? '分工会报名' : '组队报名')
if (moment(this.o.applyStartTime).valueOf() < moment().valueOf() && moment().valueOf() > moment(this.o.applyEndTime).valueOf()) {
this.$toast.fail("不在活动范围内")
}
}
}
})
</script>
<!--#
}
#-->