123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <template>
- <div class="activityCheckIn">
- <div class="appFirstBox">
- <img src="https://www.idea-co-sf.com/gardenProduct/image/img1.png" class="firstImg"/>
- <div class="appTitle">
- <span class="titleName">互联网私募如何入门?</span>
- <!-- <span class="titleType">进行中</span>-->
- </div>
- <div @tap.stop="clickColl()" class="joinBox">
- <span class="joinName">2024-06-15 09:00 ~ 17:00</span>
- <span class="joinName">26人参加</span>
- </div>
- <div class="contactBox">
- <span class="contactName">活动内容</span>
- <span class="contactInfo">这是活动内容,这是活动内容,这是活动内容,这是活动内容,这是活动内容,这是活动内容。这是活动内容动内容,这是活动内容。</span>
- </div>
- </div>
- <div class="checkInLastBox">
- <span class="contactName">活动内容</span>
- <ul class="appInfoBox">
- <li class="appInfoLi">
- <span class="appInfoLiTitle">
- <span class="liName">请选择企业</span>
- </span>
- <input type="text" name="" id="" class="appInfoIpt" placeholder="请输入">
- </li>
- <li class="appInfoLi" style="border-bottom: none">
- <span class="appInfoLiTitle">
- <span class="liName">请填写姓名</span>
- </span>
- <input type="text" name="" id="" class="appInfoIpt" placeholder="请输入">
- </li>
- </ul>
- </div>
- <button class="bmBtn" @tap="toApplication">提交签到</button>
- </div>
- </template>
- <script>
- export default {
- name: "activeApplication",
- data(){
- return{
- heartSel: "https://www.idea-co-sf.com/gardenProduct/image/heartSel.png",
- heart: "https://www.idea-co-sf.com/gardenProduct/image/heart.png",
- isColl: true,
- }
- },
- methods:{
- clickColl(){
- this.isColl = !this.isColl
- },
- toApplication(){
- uni.navigateTo({
- url:'/pages/subPackages/parkActivity/applicationInfo'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .activityCheckIn{
- padding-bottom: 120rpx;
- .appFirstBox{
- margin: 24rpx 0;
- padding: 24rpx 32rpx;
- background: white;
- display: flex;
- flex-direction: column;
- .firstImg{
- width: 686rpx;
- height: 300rpx;
- }
- .appTitle{
- display: flex;
- align-items: center;
- margin: 24rpx 0;
- .titleName{
- font-size: 32rpx;
- color: rgba(24, 23, 42, 1);
- }
- .titleType{
- background: rgba(3, 101, 249, 0.20);
- font-size: 28rpx;
- color: rgba(3, 101, 249, 1);
- width: 112rpx;
- height: 48rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 2px 2px 2px 2px;
- }
- }
- .joinBox{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-bottom: 24rpx;
- .joinName{
- font-size: 28rpx;
- color: rgba(136, 136, 136, 1);
- }
- .shoucang {
- display: flex;
- align-items: center;
- font-size: 28 rpx;
- color: rgba(24, 23, 42, 1);
- .scImg {
- width: 32rpx;
- height: 28rpx;
- margin-right: 8rpx;
- }
- }
- }
- .contactBox{
- display: flex;
- flex-direction: column;
- padding:24rpx 0;
- border-top: 1px solid #E6E6E6;
- .contactInfo{
- color: #666666;
- font-size: 28rpx;
- line-height: 40rpx;
- margin-top: 16rpx;
- }
- }
- }
- .contactName{
- color: #222222;
- font-size: 32rpx;
- font-weight: 600;
- }
- .bmBtn{
- width: 654rpx;
- height: 96rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- color: white;
- background: #0365F9;
- border-radius: 8rpx;
- margin: 48rpx 48rpx 0rpx 48rpx;
- }
- .checkInLastBox{
- background: white;
- padding: 32rpx 32rpx 0 32rpx;
- }
- .appInfoBox{
- margin: 16rpx 0;
- .appInfoLi{
- padding: 32rpx 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #E6E6E6;
- .appInfoLiTitle{
- display: flex;
- align-items: center;
- .redDoll{
- color: red;
- margin-right: 5rpx;
- }
- .liName{
- color: #333333;
- font-size: 32rpx;
- }
- }
- .appInfoIpt{
- width: 400rpx;
- font-size: 32rpx;
- color: #666666;
- text-align: right;
- }
- .van-cell {
- background: #F5F7FA !important;
- border-radius: 8rpx;
- font-size: 28rpx;
- width: 686rpx;
- margin: 24rpx 0;
- }
- }
- }
- }
- </style>
|