123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- <template>
- <!-- 教研室详情 -->
- <view class="activityDetail">
- <statusBar :item="navbar"></statusBar>
- <!-- 顶部 -->
- <view class="backPic" v-for="(item,index) in actItemList" :key="index + 'a' ">
- <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">
- {{ item.acName }}
- </view>
- <view class="col fz-font">
- 活动日期:<text>{{ item.begin_at}}</text>
- </view>
- <view class="col fz-font">
- 招募人数:<text>0/{{ item.pers }}</text>
- </view>
- <view class="col fz-font">
- 活动地址:<text>{{ item.address }}</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" v-for="(item,index) in actItemList" :key="index + 'b' ">
- <image
- :src="item.avatar == null ? 'http://43.139.158.220:5007/img/static/mine/Avatar_default.png' : item.avatar"
- mode="aspectFill"></image>
- <view class="creName btn-font">
- {{ item.username }}
- </view>
- </view>
- </view>
- <!-- 活动详情 -->
- <view class="" style="padding: 0 30rpx;">
- <detailBlock :actItemList='actItemList' :item='judge'></detailBlock>
- </view>
- <!-- 当前成员 -->
- <view style="padding: 0 30rpx; display: none;">
- <view class="member">
- <view class="memberTop">
- <view class="btn-font">报名情况(已报名0人)</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-if="perNum == []" v-for="(item,index) in perNum">
- <image :src="item.img"></image>
- <view class="perName fz-font">
- {{item.Name}}
- </view>
- </view> -->
- <view class="per">
- <!-- <image :src="item.img"></image> -->
- <view class="perName fz-font">
- 暂无人员
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 申请加入 -->
- <view class="btnBlock" v-show="btnShow">
- <button class="btn" @click="gotoAdd">立即报名</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- navbar: {
- title: '活动详情',
- btn: 1
- },
- btnShow: true, //控制按钮显示隐藏
- judge: {
- isShow: 1,
- info: ''
- },
- actItemList: [],
- perNum: []
- // 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() {
- // console.log(e.currentTarget.dataset['index'], 123);
- // let edata = e.currentTarget.dataset['index'];
- const routes = getCurrentPages();
- const ty = routes[1].options.ty ? routes[1].options.ty : routes[2].options.ty;
- const clickedAcId = this.actItemList[0].acId;
- console.log(clickedAcId);
- uni.navigateTo({
- url: '/pages/hd/hd?acId=' + clickedAcId + '&ty=' + ty
- })
- },
- getActivity() {
- // 获取当前页面的URL
- const routes = getCurrentPages();
- console.log(routes);
- // const acId = routes[1].options.acId ? routes[1].options.acId : routes[2].options.acId;
- // const ty = routes[1].options.ty ? routes[1].options.ty : routes[2].options.ty;
- // if (routes[2]) {
- // this.isShow = routes[2].options.isShow ?false : true
- // }
- // this.isShow = routes[2].options.isShow
- // console.log(this.isShow);
- let acId, ty, isShow;
- if (routes.length > 1) {
- acId = routes[1].options.acId ? routes[1].options.acId : routes[2].options.acId;
- ty = routes[1].options.ty ? routes[1].options.ty : routes[2].options.ty;
- isShow = routes[2] ? (routes[2].options.isShow ? false : true) : true;
- }
- this.btnShow = isShow;
-
- let data = {
- acId: acId,
- ty: ty
- }
- this.$request('/selectActivityID', "POST", data).then(res => {
- console.log(res[0]);
- // this.activeList=[...this.activeList,...res[0]]
- this.actItemList = res[0]
- })
- },
- },
- onShow() {
- this.getActivity()
- }
- }
- </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>
|