hookehuyr

新增活动卡片组件

<!--
* @Date: 2022-09-20 15:39:37
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-09-20 16:26:24
* @FilePath: /swx/src/components/activity-card.vue
* @Description: 文件描述
-->
<template>
<view style="background-color: #FFFFFF; border-radius: 0.83rem;">
<view style="padding: 0.8rem; border-bottom: 1px solid #F2F2F2;">
<van-row>
<van-col span="10">
<van-image width="100%" height="5rem" fit="cover" src="https://img.yzcdn.cn/vant/cat.jpeg" style="" />
</van-col>
<van-col span="14">
<view>智慧没有烦恼</view>
</van-col>
</van-row>
</view>
<view style="">
<van-row>
<van-col span="19">
<text>浏览:2996</text>
<text>报名:4/无限</text>
<text>岗位:3</text>
</van-col>
<van-col span="5">
<view>我要报名</view>
</van-col>
</van-row>
</view>
</view>
</template>
<script setup>
import { ref } from 'vue'
</script>
<style lang="less">
.van-image__img {
border-radius: 0.25rem;
}
</style>