talk_appAmin/pages/work/My_activity/My_activity_info.vue

405 lines
7.6 KiB
Vue
Raw Normal View History

<template>
<view class="">
<!-- 审核的信息 -->
<view class="shenghe_item">
<!-- 审核的文章标题 -->
<view class="shenghe_title">
<h4>社团招新|广纳新人文学社</h4>
<p>活动时间2024.06.01 12:00 - 2024.06.01 14:00</p>
<p>活动地点天津电子信息职业技术学院操场东面</p>
</view>
<!-- 活动内容 -->
<view class="text_msg">
<p>社团招新是各大高校社区或其他组织为了吸引新成员注入新鲜血液而举办的活动以下是社团招新的一些关键要点和通常的步骤
1.确定招新目标和需求:社团需要明确自己想要吸引什么样的新成员以及这些新成员能为社团带来什么这有助于社团更有针对性地制定招新计划和策略
2.制定招新计划:包括招新时间地点方式等例如可以在新生入学时举办招新活动卖或者在校园内的显眼位置设立招新摊位
3.宣传和推广:社团需要通过各种渠道进行宣传如校园广播海报社交媒体等以吸引潜在的新成员宣传内容应突出社团的特色和优势让更多人了解和关注
4.举办招新活动:在招新期间社团可以组织各种有趣的活动如现场表演游戏互动展览展示等以展示社团的风采和实力同时吸引更多人参与社团招新是各大高校社区或其他组织为了吸引新成员注入新鲜血液而举办的活动以下是社团招新的一些关键要点和通常的步骤
</p>
</view>
<view class="image_box">
</view>
<!-- 二维码区域 -->
<view class="qr_area">
<image src="../../../static/images/icon/qr.png" mode=""></image>
<h4>签到二维码</h4>
</view>
<view>
</view>
<!-- 审核未通过的提示框 -->
<view class="tishi_box" v-if="page_type==3">
<h2>审核未通过</h2>
<p>未通过原因存在敏感词SB</p>
</view>
</view>
<footer>
<view class="footer_top">
<!-- 左侧报名用户头像 -->
<view class="user_imgs">
<image v-for="(item,index) in 3" src="../../../static/images/icon/tu4-1.jpg" mode=""
:style="'transform: translateX('+(index)*(28)+'rpx);'"></image>
<view class="" :style="'transform: translateX('+3*(28)+'rpx);'">
更多
</view>
</view>
<!-- 右侧报名人数 -->
<view class="user_nums">
<p>已报名123</p>
</view>
<!-- 左侧报名用户头像 -->
<view class="user_imgs">
<image v-for="(item,index) in 3" src="../../../static/images/icon/tu4-1.jpg" mode=""
:style="'transform: translateX('+(index)*(28)+'rpx);'"></image>
<view class="" :style="'transform: translateX('+3*(28)+'rpx);'">
更多
</view>
</view>
<!-- 右侧报名人数 -->
<view class="user_nums">
<p>已报名123</p>
</view>
</view>
<view class="footer_bottom">
</view>
</footer>
</view>
</template>
<script setup>
import {
ref
} from 'vue';
var value2 = ref('')
//判断文章状态根据 1 2 3 v-if判断
var page_type = ref(1)
// 创建响应式数据
const show = ref(false);
// 定义方法 弹出打开
function open() {
// 打开逻辑,比如设置 show 为 true
show.value = true;
// console.log('open');
}
//弹出关闭
function close() {
// 关闭逻辑,设置 show 为 false
show.value = false;
// console.log('close');
}
// 未通过弹窗的确定点击事件
function UNpass() {
console.log(value2.value);
//close函数 在上传不通过原因当中上传文本
close()
}
</script>
<style lang="scss" scoped>
page {
background-color: #fff;
}
.shenghe_item {
width: 750rpx;
background: #ffffff;
padding: 30rpx 32rpx 216rpx 32rpx;
position: relative;
}
.pass_unpass {
position: absolute;
right: 0;
}
.pass {
width: 263rpx;
height: 200rpx;
}
.unpass {
width: 230rpx;
height: 200rpx;
}
.user_header {
width: 100%;
display: flex;
justify-content: space-between;
height: 84rpx;
.user_img {
width: 84rpx;
height: 84rpx;
margin-right: 19rpx;
image {
width: 84rpx;
height: 84rpx;
border-radius: 50%;
}
}
.user_msg {
h4 {
font-weight: 600;
width: 186rpx;
height: 31rpx;
font-size: 30rpx;
text-align: left;
color: #000000 100%;
margin-bottom: 18rpx;
}
p {
height: 30rpx;
font-size: 30rpx;
color: #999999;
}
}
.text_style {
right: 0;
font-weight: 400;
width: 84rpx;
height: 28rpx;
font-size: 28rpx;
text-align: left;
color: #6AA2FF;
}
}
.user_header>view {
display: flex;
}
.shenghe_title {
h4 {
font-weight: 400;
width: 100%;
font-size: 32rpx;
text-align: left;
color: #000000;
margin-top: 32rpx;
margin-bottom: 28rpx;
}
}
.shenghe_title p {
font-weight: 400;
width: 545rpx;
height: 24rpx;
font-size: 24rpx;
color: #999999;
margin-bottom: 12rpx;
}
.text_msg {
font-size: 24rpx;
margin-top: 48rpx;
}
.image_box {
width: 686rpx;
height: 720rpx;
border-radius: 24rpx 24rpx 24rpx 24rpx;
background: #caf6f5;
margin-top: 48rpx;
}
footer {
position: fixed;
bottom: 0px;
border-top: 4rpx solid #f6f6f6;
}
.footer_top {
width: 750rpx;
height: 88rpx;
background: #ffffff;
display: flex;
align-items: center;
justify-content: space-between;
padding-left: 32rpx;
padding-right: 32rpx;
}
.user_imgs {
position: relative;
padding-right: 20rpx;
image {
position: absolute;
width: 60rpx;
height: 60rpx;
border-radius: 50%;
}
view {
width: 60rpx;
height: 60rpx;
background: #f4f5f6;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #999999;
font-size: 18rpx;
}
}
.user_nums {
p {
width: 161rpx;
color: #999999;
font-size: 24rpx;
}
}
.footer_bottom {
width: 750rpx;
height: 68rpx;
background: #f6f6f6;
}
.footer_btn {
width: 300rpx;
height: 60rpx;
border-radius: 30rpx 30rpx 30rpx 30rpx;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 28rpx;
font-weight: 600;
}
.footer_btn_left {
background: #6aa2ff;
}
.footer_btn_right {
background: #fa3939;
}
.popup {
width: 600rpx;
height: 470rpx;
border-radius: 24rpx 24rpx 24rpx 24rpx;
background: #ffffff;
}
.popup {}
.popup h4 {
font-weight: 600;
text-align: center;
height: 31rpx;
font-size: 30rpx;
color: #000000 100%;
margin-top: 32rpx;
}
.input_area {
width: 552rpx;
height: 246rpx;
border-radius: 16rpx 16rpx 16rpx 16rpx;
background: #f4f5f6;
margin: 31rpx auto;
}
.popup_btns {
width: 100%;
display: flex;
align-items: center;
justify-content: space-around;
}
.popup_btn {
width: 180rpx;
height: 50rpx;
border-radius: 16rpx 16rpx 16rpx 16rpx;
display: flex;
align-items: center;
justify-content: space-around;
font-weight: 600;
font-size: 24rpx;
margin-top: 48rpx;
color: #FFFFFF;
}
.popup_btns_left {
background-color: #6AA2FF;
}
.popup_btns_right {
background-color: #FA3939;
}
.tishi_box {
width: 686rpx;
height: 134rpx;
border-radius: 24rpx 24rpx 24rpx 24rpx;
background: #ffffff;
box-shadow: 0rpx 0rpx 20rpx #ececed;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #FA3939;
}
.tishi_box h2 {
font-size: 36rpx;
}
.tishi_box p {
font-size: 24rpx;
margin-top: 16rpx;
}
.qr_area {
text-align: center;
width: 200rpx;
margin: 60rpx auto;
image {
width: 200rpx;
height: 200rpx;
margin-bottom: 24rpx;
}
}
</style>