1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view class="service">
- <image class="icon" src="../../static/service.png" mode=""></image>
- <view class="notice">
- 在线时间 9:00-18:00
- </view>
- <button class="btn" type="default" @click="jump">在线客服</button>
- </view>
- </template>
- <script>
- export default {
- methods: {
- jump() {
- uni.navigateTo({
- url:'./chatRoom'
- })
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .service {
- display: flex;
- flex-direction: column;
- align-items: center;
- .icon {
- width: 460rpx;
- height: 410rpx;
- margin-top: 290rpx;
- }
- .notice {
- font-size: 32rpx;
- color: #0F0F0F;
- font-weight: 400;
- margin-top: 50rpx;
- }
- .btn{
- margin-top: 110rpx;
- width: 560rpx;
- height: 96rpx;
- line-height: 96rpx;
- border-radius: 48rpx;
- color: #fff;
- font-size: 32rpx;
- font-weight: bold;
- background: $uni-color-primary;
- }
- }
- </style>
|