服务调整
This commit is contained in:
@@ -1,26 +1,28 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<view class="status">
|
||||
<view class="top">
|
||||
<view class="top-name">
|
||||
ZH大家庭
|
||||
</view>
|
||||
<view class="top-card">
|
||||
会员卡
|
||||
</view>
|
||||
</view>
|
||||
<view class="site">
|
||||
<view class="site-name">
|
||||
<u-icon name="map" style="margin-right: 10rpx;"></u-icon>
|
||||
全国
|
||||
</view>
|
||||
<view class="site-number">
|
||||
共<text>{{ total }}</text>家
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<u-sticky>
|
||||
<view class="status">
|
||||
<view class="top">
|
||||
<view class="top-name">
|
||||
ZH大家庭
|
||||
</view>
|
||||
<view class="top-card">
|
||||
会员卡
|
||||
</view>
|
||||
</view>
|
||||
<view class="site">
|
||||
<view class="site-name">
|
||||
<u-icon name="map" style="margin-right: 10rpx;"></u-icon>
|
||||
全国
|
||||
</view>
|
||||
<view class="site-number">
|
||||
共<text>{{ total }}</text>家
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-sticky>
|
||||
<view class="list">
|
||||
<view class="label" v-for="(item, index) in lists" @click="$Router.push({name: 'serviceDetails', params: {id: item.hall_id, title: item.title + ' ' + item.subtitle}})">
|
||||
<view class="label" v-for="(item, index) in lists" :key="index" @click="$Router.push({name: 'serviceDetails', params: {id: item.hall_id, title: item.title + ' ' + item.subtitle}})">
|
||||
<view class="labelImg">
|
||||
<image :src="item.cover" mode="aspectFill"></image>
|
||||
</view>
|
||||
@@ -94,21 +96,17 @@
|
||||
}
|
||||
|
||||
.status {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
height: 180rpx;
|
||||
background-color: white;
|
||||
padding: $padding;
|
||||
padding: 0 $padding $padding;
|
||||
box-sizing: border-box;
|
||||
border-bottom: $border-color 2rpx solid;
|
||||
.top {
|
||||
display: flex;
|
||||
margin-bottom: $margin;
|
||||
@extend .ios-top;
|
||||
.top-name {
|
||||
font-size: $title-size + 6;
|
||||
font-weight: bold;
|
||||
}
|
||||
.top-card {
|
||||
font-size: $title-size-m;
|
||||
|
||||
Reference in New Issue
Block a user