Files
ylst-h5/src/views/Market/Index.vue
陈昱达 1f0ffa679b feat(survey): 问卷列表页面添加搜索功能
- 在问卷列表页面添加搜索框
- 优化页面布局,调整搜索框位置- 更新样式,确保搜索框与页面其他元素协调
2025-03-18 11:34:42 +08:00

39 lines
888 B
Vue

<template>
<div class="container">
<div v-for="item in 10" :key="item" class="template">
<img src="https://picsum.photos/131/128" width="110" height="100" alt="" />
<span>报名/签到模板</span>
<span style="color: rgb(127, 127, 127)">报名签到 | 引用 {{ item }} | 创建人: {{ '张三' }}</span>
</div>
</div>
</template>
<script setup lang="ts"></script>
<style scoped lang="scss">
.container {
display: flex;
flex-flow: row wrap;
// background-color: white;
justify-content: space-around;
.template {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: calc(204px / 1.17);
height: calc(193px / 1.3);
margin: 2px;
border-radius: 6px;
background-color: white;
box-shadow: 4px 4px 3px 2px #e0e0e0;
* {
font-size: 10px;
}
}
}
</style>