123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <template>
- <view class="stores-wrapper">
- <view class="store">
- <view class="store-logo"><image src="../../static/error/missing-face.png" mode=""></image><text class="store-name">子臣餐饮台州店</text></view>
- <view class="store-addr store-base">地区:<text>市府大道144号</text></view>
- <view class="store-addr store-base">电话:<text>13202514250</text></view>
- <view class="store-addr store-base">距离:<text>11.2Km</text></view>
- <view class="store-lv ">门店</view>
- <view class="store-can">支持自取</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- storeList: []
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- background-color: #f8f6f6;
- height: 100%;
- }
- .stores-wrapper {
- padding-top: 20rpx;
- .store {
- width: 710rpx;
- height: 231rpx;
- background: #FFFFFF;
- box-shadow: 0px 0px 20rpx 0rpx rgba(50, 50, 52, 0.06);
- border-radius: 10rpx;
- // margin-bottom: 15rpx;
- margin: 0 auto 15rpx;
- position: relative;
- padding: 25rpx 0 0 20rpx;
- .store-logo {
- height: 65rpx;
- font-size: 32rpx;
- font-weight: bold;
- color: #333333;
- line-height: 65rpx;
- margin-bottom: 20rpx;
- position: relative;
- image {
- width: 65rpx;
- height: 65rpx;
- }
- .store-name {
- display: inline-block;
- padding-left: 12rpx;
- position: absolute;
- top: 0;
- }
- }
- .store-base {
- height: 37rpx;
- line-height: 37rpx;
- font-size: 24rpx;
- font-weight: bold;
- color: #333333;
- text {
- font-weight: normal;
- }
- }
- .store-lv {
- width: 60rpx;
- height: 40rpx;
- background: linear-gradient(-90deg, #DCB876 0%, #EECD92 100%);
- border-radius: 5rpx;
- text-align: center;
- line-height: 40rpx;
- color: #fff;
- font-size: 23rpx;
- position: absolute;
- right: 20rpx;
- top:38rpx;
- }
- .store-can {
- width: 113rpx;
- height: 44rpx;
- border: 2px solid #901B21;
- border-radius: 5rpx;
- font-size: 23rpx;
- text-align: center;
- line-height: 44rpx;
- font-weight: 500;
- color: #901B21;
- position: absolute;
- right: 20rpx;
- bottom: 25rpx;
- }
- }
- }
- </style>
|