service.vue 683 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <!-- 客服聊天 -->
  3. <view>
  4. <u-navbar title="在线客服" :safeAreaInsetTop="true" :placeholder='true'>
  5. <view class="u-nav-slot u-flex" slot="left">
  6. <u-icon name="arrow-left" size="19"></u-icon>
  7. <image src="../static/images/phone.png" style="width: 40rpx;height: 40rpx;margin-left: 44rpx;" mode="">
  8. </image>
  9. </view>
  10. </u-navbar>
  11. <view class="box">
  12. <view class=""></view>
  13. </view>
  14. <view class="bottom">
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. };
  23. }
  24. }
  25. </script>
  26. <style lang="scss">
  27. .box {
  28. width: 750rpx;
  29. height: 166rpx;
  30. background: #FFFFFF;
  31. position: fixed;
  32. bottom: 0;
  33. }
  34. </style>