You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
163 lines
3.3 KiB
163 lines
3.3 KiB
<template>
|
|
<view class="container">
|
|
<u-search @search="search" @clickIcon="clickIcon" shape="square" placeholder="请输入搜索内容"
|
|
placeholderColor="#2a98ff" v-model="keyword" searchIcon="/static/img/search.png" searchIconSize="14"
|
|
:showAction="false" height="40" margin="40rpx 24rpx 24rpx 24rpx" bgColor="#FFFFFF"></u-search>
|
|
|
|
<view class="main">
|
|
<view class="ztone" v-for="(item,index) in ztList" :key="index" @click="godetail(item.id)">
|
|
<image style="width: 150rpx;height: 150rpx;border-radius: 28rpx;flex: 1;" :src="item.img" mode="">
|
|
</image>
|
|
<view class="rightpart">
|
|
<view class="splace">
|
|
{{item.splace}}
|
|
</view>
|
|
<view class="titlepart">
|
|
<text class="title">{{item.title}}</text>
|
|
<image style="width: 32rpx;height: 44rpx;" src="@/static/img/Icon.png" mode="aspectFill">
|
|
</image>
|
|
</view>
|
|
<view class="ms">
|
|
{{item.ms}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
ref
|
|
} from 'vue';
|
|
|
|
|
|
|
|
// 响应式数据
|
|
const keyword = ref('');
|
|
|
|
|
|
const search = (val) => {
|
|
console.log(val);
|
|
}
|
|
|
|
const clickIcon = () => {
|
|
console.log(keyword.value);
|
|
}
|
|
|
|
const ztList = ref([{
|
|
id: 0,
|
|
img: '/static/img/image.png',
|
|
title: '这是一个标题',
|
|
time: '2025-04-16',
|
|
splace: '内蒙古数心科技',
|
|
ms: '描述描述描述描述描述描述'
|
|
},
|
|
{
|
|
id: 1,
|
|
img: '/static/img/image.png',
|
|
title: '这是一个标题',
|
|
time: '2025-04-16',
|
|
splace: '内蒙古数心科技',
|
|
ms: '描述描述描述描述描述描述'
|
|
}
|
|
])
|
|
|
|
const godetail = (id) => {
|
|
uni.navigateTo({
|
|
url: '/pages/index/shoppage/jrbDetail?id=' + id
|
|
})
|
|
}
|
|
|
|
onMounted(() => {
|
|
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.container {
|
|
background: linear-gradient(0deg, #F1F3F9 72%, rgba(129, 179, 222, 0.5) 88%);
|
|
height: 100vh;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
|
|
.main {
|
|
margin-top: 10rpx;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0 24rpx;
|
|
box-sizing: border-box;
|
|
max-height: 79vh;
|
|
overflow-y: auto;
|
|
|
|
.ztone {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 210rpx;
|
|
margin-top: 30rpx;
|
|
padding: 30rpx;
|
|
border-radius: 20rpx;
|
|
background: #FFFFFF;
|
|
box-sizing: border-box;
|
|
border: 2rpx solid rgba(0, 127, 255, 0.12);
|
|
|
|
.rightpart {
|
|
width: 100%;
|
|
margin-left: 40rpx;
|
|
flex: 3;
|
|
display: grid;
|
|
|
|
.titlepart {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
.title {
|
|
font-family: Poppins;
|
|
font-size: 24rpx;
|
|
font-weight: 600;
|
|
line-height: 34rpx;
|
|
letter-spacing: normal;
|
|
/* 外部/Colors/Dark/Base 1 */
|
|
color: #161719;
|
|
margin-top: 13rpx;
|
|
}
|
|
}
|
|
|
|
.splace {
|
|
font-family: Poppins;
|
|
font-size: 24rpx;
|
|
font-weight: normal;
|
|
line-height: 34rpx;
|
|
letter-spacing: normal;
|
|
/* 外部/Colors/Dark/Base 1 */
|
|
color: #161719;
|
|
}
|
|
|
|
.ms {
|
|
margin-top: 13rpx;
|
|
font-family: Poppins;
|
|
font-size: 20rpx;
|
|
font-weight: normal;
|
|
line-height: 28rpx;
|
|
letter-spacing: normal;
|
|
/* 外部/Colors/Light/Base 3 */
|
|
color: #91919F;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.hdzq {
|
|
width: 182rpx;
|
|
height: 80rpx;
|
|
position: fixed;
|
|
right: 0;
|
|
top: 70%;
|
|
margin-right: -14rpx;
|
|
}
|
|
</style>
|