1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <template>
- <view class="content">
- <u-navbar :is-back="false" title="">
- <view class="slot-wrap">
- <view class="search-wrap">
- <u-search placeholder="日照香炉生紫烟" :show-action="false"></u-search>
- </view>
- <view class="navbar-right">
- <span>取消</span>
- </view>
- </view>
- </u-navbar>
- <view class="search">
- <view class="search-result">
- <u-icon name="bus" custom-prefix="custom-icon" size="30" color="#888888"></u-icon>
- <view class="search-result-text">
- <span>9</span><p>路 方向 宿架转盘</p>
- </view>
- </view>
- <view class="search-result">
- <u-icon name="bus" custom-prefix="custom-icon" size="30" color="#888888"></u-icon>
- <view class="search-result-text">
- <span>9</span><p>路 方向 六中</p>
- </view>
- </view>
- <view class="search-result">
- <u-icon name="zhanpai1" custom-prefix="custom-icon" size="30" color="#888888"></u-icon>
- <view class="search-result-text">
- <span>九</span><p>路 方向 九龙渊公园</p>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import api from './index.js'
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- page{
- background-color: #f7f7f7;
- }
- </style>
- <style scoped lang="scss">
- .slot-wrap {
- display: flex;
- align-items: center;
- flex: 1;
- }
- .navbar-right {
- display: flex;
- margin-right: 20rpx;
- }
- .navbar-left{
- display: flex;
- align-items: center;
- margin-left: 20rpx;
- span{
- margin-right: 6rpx;
- font-size: 14px;
- }
- }
- .search-wrap {
- margin: 0 20rpx;
- flex: 1;
- }
- .search{
- padding:0 20rpx;
- background-color: #fff;
- .search-result{
- border-bottom: 1px solid #f7f7f7;
- padding:20rpx ;
- display: flex;
- align-items: center;
- .search-result-text{
- display: flex;
- align-items: center;
- margin-left: 20rpx;
- span{
- color:#ff7826
- }
- }
- }
- }
- </style>
|