roamfuding-xcx/pages/nearbystores/index.vue

109 lines
2.1 KiB
Vue
Raw Permalink Normal View History

2025-11-08 11:21:57 +08:00
<template>
<view class="page">
<u-navbar :is-back="false" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
height='8'></u-navbar>
<image src="https://api.ccttiot.com/smartmeter/img/static/uS8TEdeETwvOdHDswc9c" mode="" class="imgbj"></image>
<view class="title">
共享茶室
</view>
<view class="serchshop">
<view class="dingwei">
<image src="https://api.ccttiot.com/smartmeter/img/static/uSDeC51wazjnZ9cFQx6l" mode="" class="dwimg"></image>
宁德
<image src="https://api.ccttiot.com/smartmeter/img/static/u0FZH7ZLG168c7W0FUMk" mode="" class="xlimg"></image>
</view>
<view class="search">
<input type="text" placeholder="搜索门店"/>
<u-icon name="search"></u-icon>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss">
page {
background: #fff;
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
.page {
width: 750rpx;
padding-left: 34rpx;
padding-right: 34rpx;
box-sizing: border-box;
position: fixed;
top: 0;
left: 0;
.serchshop{
display: flex;
margin-top: 40rpx;
align-items: center;
justify-content: space-between;
.search{
width: 468rpx;
height: 72rpx;
line-height: 72rpx;
background: #FFFFFF;
border-radius: 6rpx 6rpx 6rpx 6rpx;
position: relative;
input{
margin-left: 94rpx;
height: 72rpx;
line-height: 72rpx;
}
::v-deep .uicon-search{
position: absolute;
top: 24rpx !important;
left: 26rpx !important;
}
}
.dingwei{
display: flex;
font-weight: 600;
font-size: 32rpx;
color: #48893B;
align-items: center;
.dwimg{
width: 40rpx;
height: 40rpx;
margin-right: 12rpx;
}
.xlimg{
width: 26rpx;
height: 14rpx;
margin-left: 12rpx;
}
}
}
.title {
font-weight: 600;
font-size: 36rpx;
color: #226914;
line-height: 50rpx;
}
.imgbj{
width: 750rpx;
height: 610rpx;
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
}
</style>