hookehuyr

新增活动卡片组件

1 +<!--
2 + * @Date: 2022-09-20 15:39:37
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2022-09-20 16:26:24
5 + * @FilePath: /swx/src/components/activity-card.vue
6 + * @Description: 文件描述
7 +-->
8 +<template>
9 + <view style="background-color: #FFFFFF; border-radius: 0.83rem;">
10 + <view style="padding: 0.8rem; border-bottom: 1px solid #F2F2F2;">
11 + <van-row>
12 + <van-col span="10">
13 + <van-image width="100%" height="5rem" fit="cover" src="https://img.yzcdn.cn/vant/cat.jpeg" style="" />
14 + </van-col>
15 + <van-col span="14">
16 + <view>智慧没有烦恼</view>
17 + </van-col>
18 + </van-row>
19 + </view>
20 + <view style="">
21 + <van-row>
22 + <van-col span="19">
23 + <text>浏览:2996</text>
24 + <text>报名:4/无限</text>
25 + <text>岗位:3</text>
26 + </van-col>
27 + <van-col span="5">
28 + <view>我要报名</view>
29 + </van-col>
30 + </van-row>
31 + </view>
32 + </view>
33 +</template>
34 +
35 +<script setup>
36 +import { ref } from 'vue'
37 +
38 +</script>
39 +
40 +<style lang="less">
41 +.van-image__img {
42 + border-radius: 0.25rem;
43 +}
44 +</style>