| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <template>
- <view class="content">
- <view class="service-header">
- <view class="tips">欢迎来到奥莱优品</view>
- <view class="title">需要一点帮助?</view>
- <view class="tips">售前、售后问题,随时为您解答</view>
- </view>
- <scroll-view class="service-body" scroll-y scroll-with-animation>
- <view class="body-list">
- <view class="title">
- <view class="title-tips">Message center</view>
- <view class="name">聊天列表</view>
- </view>
- <view class="list-service">
- <view class="service-item">
- <view class="avatar"><image src="/static/logo.jpg"></image></view>
- <view class="info">
- <view class="name">桃奢妍奥莱城</view>
- <view class="desc">[订单消息]</view>
- </view>
- <view class="time">今天</view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .content{
- position: fixed;
- z-index: 1;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background-color: #ededed;
- display: flex;
- flex-direction: column;
- }
- .service-header{
- background-color: $main-color;
- padding: 20rpx;
- .tips{
- color: $main-sub-color;
- font-size: 28rpx;line-height: 48rpx;
- }
- .title{
- font-size: 46rpx;
- color: #fff;
- font-weight: 900;
- margin: 10rpx 0;
- }
- }
- .service-body{
- height: 0;
- flex: 1;
- .body-list{
- width: 95%;
- margin: 20rpx auto;
- .title {
- .title-tips{
- color: $main-color;
- font-weight: 700;
- font-size: 24rpx;
- text-transform: uppercase;
- }
- .name {
- font-size: 38rpx;
- color: #333;
- font-weight: 900;
- }
- }
- .list-service {
- .service-item{
- display: flex;
- align-items: center;
- background-color: #fff;
- border-radius: 20rpx;
- margin-top: 20rpx;
- padding: 20rpx;
- gap: 20rpx;
- image {
- width: 100rpx;
- height: 100rpx;
- border-radius: 10rpx;
- border: 2rpx solid #f8f8f8;
- }
- .name {
- font-size: 32rpx;
- font-weight: 600;
- color: #333;
- }
- .desc {
- color: $main-text-color;
- font-size: 26rpx;
- margin-top: 10rpx;
- }
- .time {
- margin-left: auto;
- margin-right: 0;
- color: $main-text-color;
- font-size: 26rpx;
- }
- }
- }
- }
- }
- </style>
|