123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- <template>
- <!-- 教研室详情 -->
- <view class="activityDetail">
- <statusBar :item="navbar"></statusBar>
- <!-- 顶部 -->
- <view class="backPic">
- <image src="http://43.139.158.220:5007/img/static/yym/Rectangle 40.png" mode="aspectFill"></image>
- <view style="padding: 0 30rpx;margin-bottom: 20px;">
- <view class="card">
- <view class="cardTop three-font">
- 创业意识与商机识别
- </view>
- <view class="col fz-font">
- 活动日期:<text>5.12~5.13</text>
- </view>
- <view class="col fz-font">
- 招募人数:<text>23/50</text>
- </view>
- <view class="col fz-font">
- 活动地址:<text>龙岗将军帽路一号深圳技师学院</text>
- <uni-icons type="location" color="#0056a8"
- style="position: absolute;right: 10px;top: 0;width: 32rpx;height: 45rpx;"></uni-icons>
- </view>
- </view>
- </view>
- </view>
- <!-- 创建者用户名 -->
- <view style="padding: 0 30rpx;">
- <view class="creator">
- <image src="https://file.icve.com.cn/file_doc_public/86/519/15A81C36346AC850A5F0FD456F759D1A.jpg" mode="aspectFill"></image>
- <view class="creName btn-font">
- 曾秀臻
- </view>
- </view>
- </view>
- <!-- 活动详情 -->
- <view class="" style="padding: 0 30rpx;">
- <detailBlock :item='judge'></detailBlock>
- </view>
- <!-- 当前成员 -->
- <view style="padding: 0 30rpx;">
- <view class="member">
- <view class="memberTop">
- <view class="btn-font">报名情况(已报名23人)</view>
- <view class="fz-font" style="color: rgba(0, 0, 0, 0.4);display: flex;align-items: center;" @click="perList">
- <text>查看更多</text>
- <image src="http://43.139.158.220:5007/img/static/mine/arrow-right.png" style="width: 32rpx;height: 32rpx;" mode="aspectFill"></image>
- <!-- <uni-icons type="right"></uni-icons> -->
- </view>
- </view>
- <view class="pers">
- <view class="per" v-for="(item,index) in perNum">
- <image :src="item.img"></image>
- <view class="perName fz-font">
- {{item.Name}}
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 申请加入 -->
- <view class="btnBlock">
- <button class="btn" @click="gotoAdd">立即报名</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- navbar: {
- title: '活动详情',
- btn: 1
- },
- judge: {
- isShow: 1,
- info:'你对创业感兴趣吗?想初步了解创业吗?你是否对确定创业方向和创业机会有选择的困惑呢?在创新创业的大氛围下,课堂上常常强调要以项目为中心,你却苦于迟迟无法最终确定具体的项目?那么,《创业意识与商机识别》这门课程可以帮助你。'
- },
- perNum: [{
- Name: '陈芬',img:'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (3).png'
- },
- {
- Name: '贺豪杰',img:'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (4).png'
- },
- {
- Name: '张孝迪',img:'http://43.139.158.220:5007/img/static/yym/Ellipse 4.png'
- },
- {
- Name: '马冬梅',img:'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (2).png'
- },
- {
- Name: '康雯妍',img:'http://43.139.158.220:5007/img/static/yym/Ellipse 4 (1).png'
- },
- {
- Name: '张燕琴',img:'http://43.139.158.220:5007/img/static/mine/Avatar.png'
- }]
- };
- },
- methods: {
- perList() {
- uni.navigateTo({
- url: '/pages/dy/dy'
- })
- },
- gotoAdd() {
- uni.navigateTo({
- url: '/pages/hd/hd'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .activityDetail {
- padding-bottom: 80px;
- .backPic {
- width: 750rpx;
- position: relative;
- image {
- width: 100%;
- display: block;
- }
- .card {
- position: absolute;
- width: 690rpx;
- // height: 150px;
- bottom: -20px;
- left: 50%;
- // padding: 30rpx 16px;
- padding: 30rpx;
- border-radius: 10px;
- background-color: #ffffff;
- transform: translate(-50%, 0);
- .cardTop {
- // display: flex;
- // justify-content: center;
- // padding-bottom: 5px;
- margin-bottom: 5px;
- // font-size: 18px;
- font-weight: bold;
- display: -webkit-box;
- word-break: break-all;
- text-overflow: ellipsis;
- overflow: hidden;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- /*设置 需要显示的行数*/
- .title {
- font-weight: bold;
- }
- }
- .col {
- position: relative;
- margin-bottom: 10rpx;
- color: #999999;
- padding-right: 40px;
- // font-size: 14px;
- width: 100%;
- display: -webkit-box;
- word-break: break-all;
- text-overflow: ellipsis;
- overflow: hidden;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- /*设置 需要显示的行数*/
- text {
- color: #333333;
- }
- }
- .tag {
- display: flex;
- }
- }
- // background-image: url(http://43.139.158.220:5007/img/static/resource/jqr.png);
- }
- .creator {
- display: flex;
- // padding: 10px 30px;
- padding: 30rpx 20rpx;
- background-color: #ffffff;
- align-items: center;
- margin-top: 30px;
- margin-bottom: 20rpx;
- border-radius: 10px;
- image {
- width: 96rpx;
- height: 96rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .creName {
- font-weight: bold;
- }
- }
- .member {
- background-color: #ffffff;
- margin-top: 20rpx;
- padding: 30rpx;
- border-radius: 10px;
- margin-bottom: 30rpx;
- .memberTop {
- display: flex;
- justify-content: space-between;
- margin-bottom: 10px;
- }
- .pers {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .per {
- // display: inline-block;
- display: flex;
- flex-direction: column;
- // justify-content: center;
- align-items: center;
- image {
- width: 72rpx;
- height: 72rpx;
- border-radius: 50%;
- }
- .perName {
- // font-size: 14px;
- text-align: center;
- }
- }
- }
- }
- .btnBlock {
- position: fixed;
- bottom: 0;
- width: 750rpx;
- background-color: #ffffff;
- // padding: 20px 0;
- padding: 2vh 0;
- .btn {
- width: 432rpx;
- height: 88rpx;
- font-weight: 500;
- display: flex;
- justify-content: center;
- align-items: center;
- margin: auto;
- background-color: #0056a8;
- color: #ffffff;
- }
- }
- }
- </style>
|