68 lines
1.5 KiB
Vue
68 lines
1.5 KiB
Vue
<script setup></script>
|
||
|
||
<template>
|
||
<view class="customer-service-index">
|
||
<view class="item-box">
|
||
<image
|
||
src="/static/images/my-index/customer-img.png"
|
||
mode="heightFix"
|
||
class="avatar"
|
||
></image>
|
||
<text class="tisp">Hi~有什么可以帮到你?</text>
|
||
<button>第三方客服</button>
|
||
<button>APP客服</button>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<style lang="scss" scoped>
|
||
.customer-service-index {
|
||
height: 100%;
|
||
padding: 0 24rpx;
|
||
.item-box {
|
||
margin-top: 10vh;
|
||
width: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
font-family: PingFang SC, PingFang SC;
|
||
|
||
text-align: left;
|
||
font-style: normal;
|
||
text-transform: none;
|
||
.avatar {
|
||
height: 192rpx;
|
||
}
|
||
.tisp {
|
||
margin: 32rpx 0 112rpx;
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #999999;
|
||
}
|
||
button + button {
|
||
margin-top: 32rpx;
|
||
}
|
||
button {
|
||
width: 100%;
|
||
height: 84rpx;
|
||
line-height: 84rpx;
|
||
font-weight: bold;
|
||
font-size: 32rpx;
|
||
color: #ffffff;
|
||
background: linear-gradient(0deg, #00d993 0%, #00d9c5 100%);
|
||
border-radius: 16rpx;
|
||
box-sizing: border-box;
|
||
&:last-child {
|
||
background: #ffffff;
|
||
color: #00d993;
|
||
border: 2rpx solid #00d993;
|
||
}
|
||
|
||
&::after {
|
||
display: none;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style>
|