删除无用文件

This commit is contained in:
cbb
2025-12-29 16:40:38 +08:00
parent 56fd844b75
commit e3e409b8b8
10 changed files with 292 additions and 10 deletions

View File

@@ -0,0 +1,67 @@
<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>