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.

72 lines
1.2 KiB

<template>
<view class="map-sub">
<view class="input-box">
<view>
<image src="https://yth.scjg.ln.gov.cn/sgfs-enterprise/liaoning-app-file/file/liao-ning/icon_search.png" mode="" class="map-input-icon"></image>
</view>
<view class="map-input-search">
<input type="text" value="" style="color: #34373B;font-size: 30rpx;" placeholder="请输入关键字搜索" clear />
</view>
<view class="btn-sub">
<text class="map-input-btn">搜索</text>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
value: '',
type: 'text',
border: true
}
},
methods: {
}
}
</script>
<style scoped>
.map-sub {
/* border: 1px solid red; */
padding: 20rpx;
padding-top: 10rpx;
}
.input-box {
padding: 20rpx;
border-radius: 16rpx;
background-color: #fff;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
box-shadow: 0px 0px 10rpx 0px rgba(57, 118, 241, 0.0588);
}
.map-input-icon {
height: 30rpx;
width: 30rpx;
}
.map-input-search {
flex: 1;
padding-left: 20rpx;
}
.btn-sub {
padding-left: 30rpx;
border-left: 1px solid #D0D7E1;
}
.map-input-btn {
font-size: 30rpx;
font-weight: 500;
color: #3976F1;
}
</style>