talk_appAmin/pages/activity/info.vue

368 lines
11 KiB
Vue
Raw Normal View History

2024-06-01 15:04:14 +08:00
<template class="content">
<view class="fixed-header">
<!-- 顶部导航栏 -->
<up-navbar leftText="" title="" :placeholder="true" :safeAreaInsetTop="true" @leftClick="leftClick">
<template #center>
<div class="navbarcenter"><span>活动详情</span></div>
</template>
</up-navbar>
</view>
<view style="height: 100vh; overflow: auto;">
<view class="avtivityInfo">
<view>
<view class="cards">
2024-06-05 16:57:58 +08:00
<view class="title"> {{ actiInfoList.acTitle }}</view>
2024-06-01 15:04:14 +08:00
<view class="time">活动时间{{ actiInfoList.startTime }} - {{ actiInfoList.endTime }}</view>
2024-06-05 16:57:58 +08:00
<view class="addrs">活动地点{{ actiInfoList.addres }}</view>
2024-06-01 15:04:14 +08:00
</view>
2024-06-05 16:57:58 +08:00
<view class="cardz">
<!-- <up-parse :content="processContent(actiInfoList.acContent)" :tagStyle="style"></up-parse> -->
<view v-if="textopen" v-html="actiInfoList.acContent" class="acContentstyle"></view>
<up-text size="15" color="#000000" lineHeight="23" v-else :text="actiInfoList.acContent"></up-text>
2024-06-05 16:57:58 +08:00
</view>
<view class="cardx" v-for="(item, index) in toimage(actiInfoList.file)" :key="index">
2024-06-05 16:57:58 +08:00
<image :src="item" class="image"></image>
2024-06-01 15:04:14 +08:00
</view>
</view>
</view>
<view class="dictAuto">
<view v-if="actiInfoList.state === '0'">
<view class="state3"
v-if="activityAttendInfo.attendState === '0' || activityAttendInfo.attendState === '1'">
<up-button color="#F1F1F1" size="large" shape="circle"><span class="btnText">未参加</span></up-button>
</view>
<view class="state3" v-else-if="activityAttendInfo.attendState === '2'">
<up-button color="#F1F1F1" size="large" shape="circle"><span class="btnText">已参加</span></up-button>
</view>
</view>
<view v-else-if="actiInfoList.state === '2'">
<view class="state1" v-if="activityAttendInfo.attendState === '0'">
<up-button color="#C0F0EC" size="large" shape="circle" @click="goSing(1)"><span
class="btnText">立即报名</span></up-button>
</view>
<view class="state2" v-else-if="activityAttendInfo.attendState === '1'">
<up-button color="#FDE2E2" size="large" shape="circle" @click="goQrcode(1)"><span
class="btnText">扫码签到</span></up-button>
</view>
<view class="state2" v-else-if="activityAttendInfo.attendState === '2'">
<up-button color="#FDE2E2" size="large" shape="circle"><span class="btnText">已签到</span></up-button>
</view>
</view>
<view v-else-if="actiInfoList.state === '1'">
<view class="state1" v-if="activityAttendInfo.attendState === '0'">
<up-button color="#C0F0EC" size="large" shape="circle" @click="goSing(1)"><span
class="btnText">立即报名</span></up-button>
</view>
<view class="state1" v-else-if="activityAttendInfo.attendState === '1'">
<up-button color="#C0F0EC" size="large" shape="circle" @click="goSing(0)"><span
class="btnText">取消报名</span></up-button>
</view>
2024-06-01 15:04:14 +08:00
</view>
</view>
</view>
<view class="infox">
2024-06-05 19:52:43 +08:00
<view class="infoavatar">
<up-avatar size="60rpx" :src="QNDomain + actiInfoList.avatarInfo" />
2024-06-05 19:52:43 +08:00
<view style="margin-left: 24rpx;">
<view class="launchName">{{ actiInfoList.nickName }}</view>
<view class="launchAddres">{{ actiInfoList.infoSchool }}</view>
</view>
2024-06-01 15:04:14 +08:00
</view>
<view class="elroll">已报名{{ actiInfoList.elroll }}</view>
</view>
<view class="infox2">
2024-06-05 16:57:58 +08:00
<up-modal :show="open" :title="title" width="600rpx" :content='content' confirmText="签到" cancelText="取消"
confirmColor="#3477FC" showCancelButton closeOnClickOverlay @confirm="confirm" @cancel="cancel"></up-modal>
2024-06-01 15:04:14 +08:00
</view>
</template>
2024-06-01 15:04:14 +08:00
<script setup>
import { getTakePartsInfoByacId, gotoQrcode, gotoSing1, gotoSing2 } from "@/api/activityInfo/activityTakeInfo";
2024-06-05 16:57:58 +08:00
import { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/activityInfo/info";
import { getDicts } from "@/api/system/dict/data";
import { onShow, onLoad } from '@dcloudio/uni-app';
import { ref, reactive, getCurrentInstance, toRefs, computed } from 'vue';
2024-06-01 15:04:14 +08:00
import { useStore } from 'vuex';
2024-06-01 15:04:14 +08:00
const { proxy } = getCurrentInstance();
const iconConfig = proxy.iconConfig;
2024-06-05 16:57:58 +08:00
const style = ref({
p: 'font-weight: 400;font-size: 24rpx;color: #000000 !important;',
});
const activityState = ref([]); // 字典 activity_state 活动状态
const takePartState = ref([]); // 字典 take_part_state 活动参与状态
const open = ref(false);
2024-06-05 16:57:58 +08:00
const title = ref('确认签到');
const content = ref('请您确认活动签到,祝您玩的愉快!');
2024-06-01 15:04:14 +08:00
const bgColor = ref('');
const store = useStore();
const QNDomain = store.state.user.QNDomain;
2024-06-05 16:57:58 +08:00
const actiInfoList = ref({});
const activityAttendInfo = ref({});
const qrcodeInfo = ref();
function getAvatar() {
return QNDomain + actiInfoList.value.avatarInfo;
}
function isHTML(str) {
const htmlRegex = /<[^>]*>/;
return htmlRegex.test(str);
2024-06-05 19:52:43 +08:00
}
const textopen = ref(false)
2024-06-01 15:04:14 +08:00
onLoad((options) => {
const _id = options.id;
getInfo(_id).then(response => {
actiInfoList.value = response.data;
textopen.value = isHTML(actiInfoList.value.acContent);
console.log("actiInfoList:", actiInfoList.value);
});
2024-06-05 19:52:43 +08:00
getDicts('activity_state').then(e => {
activityState.value = e.data;
});
getDicts('take_part_state').then(e => {
takePartState.value = e.data;
});
checkStatus(options.id);
});
2024-06-05 19:52:43 +08:00
const checkStatus = (id) => {
getTakePartsInfoByacId(id).then(e => {
activityAttendInfo.value = e.data;
console.log("个人信息:", activityAttendInfo.value)
});
};
2024-06-01 15:04:14 +08:00
const leftClick = () => {
proxy.$tab.navigateBack(1);
};
const toimage = (url) => {
if (typeof url === 'string') {
let info = url.split(",");
let processedInfo = info.map(item => QNDomain + item);
console.log("processedInfo", processedInfo);
return processedInfo;
}
return null;
};
function cancel() {
open.value = !open.value;
2024-06-01 15:04:14 +08:00
}
const getDictLabelByValue = (state) => {
const dict = activityState.value.find((dict) => dict.dictValue === state);
return dict ? dict : '未知状态';
};
const goSing = (e) => {
if (e === 0) {
//取消报名
gotoSing2(activityAttendInfo.value.id).then(e => {
proxy.$modal.msgSuccess("取消报名成功!");
actiInfoList.value.elroll -= 1
})
}
if (e === 1) {
//报名
gotoSing1(activityAttendInfo.value.id).then(e => {
proxy.$modal.msgSuccess("报名成功!");
actiInfoList.value.elroll += 1
})
}
//简单刷新一下数据
checkStatus(actiInfoList.value.id);
}
const goQrcode = () => {
2024-06-05 16:57:58 +08:00
uni.scanCode({
onlyFromCamera: true,
success: (res) => {
console.log('扫描二维码成功,结果:', res);
2024-06-05 16:57:58 +08:00
toqrcode(res);
2024-06-05 16:57:58 +08:00
},
error: (res) => {
console.log('扫描二维码出现错误');
2024-06-05 16:57:58 +08:00
}
});
2024-06-05 16:57:58 +08:00
}
2024-06-05 16:57:58 +08:00
function confirm() {
open.value = !open.value;
activityAttendInfo.value.qrcodeInfo = JSON.stringify(qrcodeInfo.value)
gotoQrcode(activityAttendInfo.value).then(e => {
proxy.$modal.msgSuccess("签到成功!");
//简单刷新一下数据
checkStatus(actiInfoList.value.id);
})
2024-06-02 11:10:25 +08:00
}
const toqrcode = (e) => {
qrcodeInfo.value = JSON.parse(e.result);
if (actiInfoList.value.id !== qrcodeInfo.value.id) {
proxy.$modal.msgError('二维码不匹配!')
return;
} else {
open.value = !open.value;
console.log("信息:", qrcodeInfo.value);
}
2024-06-02 11:10:25 +08:00
2024-06-05 19:52:43 +08:00
};
2024-06-01 15:04:14 +08:00
</script>
<style lang="scss">
.navbarcenter {
font-weight: 400;
width: 148rpx;
height: 37rpx;
font-size: 36rpx;
text-align: left;
color: #000000;
}
.avtivityInfo {
width: 686rpx;
margin: 44rpx auto;
.cards {
.title {
font-weight: 400 !important;
font-size: 32rpx;
text-align: left;
color: #000000 !important;
}
.time {
margin-top: 28rpx;
font-weight: 400;
font-size: 24rpx;
text-align: left;
color: #999999 !important;
}
.addrs {
margin-top: 12rpx;
font-weight: 400;
font-size: 24rpx;
text-align: left;
color: #999999 !important;
}
}
.cardz {
margin-top: 48rpx;
font-weight: 400;
width: 674rpx;
font-size: 24rpx;
text-align: left;
color: #000000 !important;
}
.cardx {
.image {
width: 686rpx;
height: 720rpx;
}
}
}
.dictAuto {
margin: 4rpx auto;
2024-06-01 20:10:34 +08:00
margin-bottom: 400rpx;
2024-06-05 16:57:58 +08:00
2024-06-01 15:04:14 +08:00
.state1 {
width: 686rpx;
height: 80rpx;
margin: 0 auto;
2024-06-05 19:52:43 +08:00
.btnText {
font-weight: 400;
width: 120rpx;
font-size: 30rpx;
color: #00CCBE !important;
}
}
2024-06-05 19:52:43 +08:00
.state2 {
width: 686rpx;
height: 80rpx;
margin: 0 auto;
.btnText {
font-weight: 400;
width: 120rpx;
font-size: 30rpx;
color: #FFABAB !important;
2024-06-05 19:52:43 +08:00
}
}
2024-06-05 19:52:43 +08:00
.state3 {
width: 686rpx;
height: 80rpx;
margin: 0 auto;
2024-06-01 15:04:14 +08:00
.btnText {
font-weight: 400;
width: 120rpx;
2024-06-05 16:57:58 +08:00
font-size: 30rpx;
color: #7E7E7E !important;
2024-06-01 15:04:14 +08:00
}
}
}
.infox {
display: flex;
justify-content: space-between;
align-items: center;
height: 88rpx;
padding-left: 32rpx;
padding-right: 32rpx;
2024-06-05 16:57:58 +08:00
position: fixed;
/* 固定位置 */
left: 0;
/* 左对齐 */
right: 0;
/* 右对齐 */
bottom: 68rpx;
/* 底部对齐 */
border-top: 1px solid #ccc;
/* 上边框 */
background-color: white;
/* 背景色设置为白色,防止透明背景导致内容重叠可见 */
z-index: 10;
.infoavatar {
2024-06-05 19:52:43 +08:00
display: flex;
}
2024-06-01 15:04:14 +08:00
}
2024-06-05 16:57:58 +08:00
.infox2 {
position: fixed;
/* 固定位置 */
left: 0;
/* 左对齐 */
right: 0;
/* 右对齐 */
bottom: 0;
/* 底部对齐 */
2024-06-01 15:04:14 +08:00
height: 68rpx;
width: 100%;
background-color: #f6f6f6;
2024-06-05 16:57:58 +08:00
z-index: 10002;
/* 确保在最上层 */
2024-06-01 15:04:14 +08:00
}
.acContentstyle {
color: #000000 !important;
font-weight: 400;
font-size: 24rpx;
text-align: left;
line-height: 46rpx;
}
2024-06-01 15:04:14 +08:00
</style>