12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template>
- <view class="kefu">
- <view class="header-bg">
-
- </view>
- <view class="main">
- <view class="title">
- 联系客服
- </view>
- <view class="qrcode">
- <image class="image" src="" mode=""></image>
- </view>
- <view class="wxgzh" style="margin-top: 60upx;">省心直供官方微信公众号</view>
- <view class="save" style="margin-top: 50upx;"><button class="save-btn" type="default">保存二维码到手机</button></view>
- <view class="online-time" style="margin-top: 50upx;">客服在线时间:周一至周六8:30-12:00</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .kefu{
- position: relative;
- overflow: hidden;
- }
- .header-bg{
- background: $primary-color;
- height: 100upx;
- position: absolute;
- top: 0;
- width: 100%;
- }
- .main{
- text-align: center;
- background: white;
- position: relative;
- z-index: 1;
- margin: 20upx;
- border-radius: 20upx;
- height: 90vh;
- }
- .title{
- font-size: 32upx;
- // font-weight: bold;
- padding: 20upx;
- }
- .qrcode{
- margin-top: 100upx;
-
- .image{
- background: #EEEEEE;
- width: 240upx;
- height: 240upx;
- }
- }
- .save-btn{
- width: 320upx;
- font-size: 28upx;
- background: $primary-color;
- color: white;
- }
- .wxgzh,.online-time{
- font-size: 28upx;
- color: #999999;
-
- }
- </style>
|