94 lines
1.4 KiB
Vue
94 lines
1.4 KiB
Vue
<script>
|
|
import StaticConstant from "@/common/StaticConstant";
|
|
import Request from '@/common/request'
|
|
import ImagesConstant from "@/common/ImagesConstant";
|
|
|
|
let request = new Request()
|
|
export default {
|
|
components: {},
|
|
computed: {
|
|
ImagesConstant() {
|
|
return ImagesConstant
|
|
},
|
|
StaticConstant() {
|
|
return StaticConstant
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<view class="header">
|
|
</view>
|
|
<view class="body">
|
|
</view>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
/*搜索栏 start*/
|
|
.header {
|
|
background-color: white;
|
|
|
|
.search-view {
|
|
display: flex;
|
|
height: 100rpx;
|
|
border-top: 1px solid #f5f5f5;
|
|
border-bottom: 1px solid #f5f5f5;
|
|
}
|
|
}
|
|
|
|
:deep(.uni-searchbar) {
|
|
padding: 15rpx 10rpx !important;
|
|
}
|
|
|
|
/*搜索栏 end*/
|
|
/*中间部分 start*/
|
|
.body {
|
|
background-color: white;
|
|
|
|
.image1 {
|
|
padding: 30rpx;
|
|
}
|
|
|
|
.list {
|
|
padding: 0 30rpx;
|
|
|
|
.list-item {
|
|
border-bottom: 1px solid #f5f5f5;
|
|
display: flex;
|
|
min-height: 100rpx;
|
|
|
|
.title {
|
|
color: #666666;
|
|
font-size: 30rpx;
|
|
width: 80%;
|
|
margin: 30rpx 0;
|
|
}
|
|
|
|
.right-icon {
|
|
width: 20%;
|
|
line-height: 100rpx;
|
|
margin: auto 0;
|
|
image {
|
|
float: right;
|
|
position: static;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.list-item-end {
|
|
border-bottom: none !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*中间部分 end*/
|
|
</style>
|