customerService.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view style="touch-action: none;" v-show="!isSortType">
  3. <!-- #ifdef H5 || APP-PLUS -->
  4. <view class="customerService" :style="'top:'+topConfig" @touchmove.stop.prevent="setTouchMove">
  5. <navigator class="pictrue" url="/pages/extension/customer_list/chat" hover-class="none">
  6. <image :src="logoConfig"></image>
  7. </navigator>
  8. </view>
  9. <!-- #endif -->
  10. <!-- #ifdef MP -->
  11. <view class="customerService" :style="'top:'+topConfig" @touchmove.stop.prevent="setTouchMove" v-if="routineContact === '0'">
  12. <navigator class="pictrue" url="/pages/extension/customer_list/chat" hover-class="none">
  13. <image :src="logoConfig"></image>
  14. </navigator>
  15. </view>
  16. <button class="customerService-sty" :style="'top:'+topConfig" @touchmove.stop.prevent="setTouchMove" open-type='contact' v-if="routineContact === '1'">
  17. <image class="pictrue" :src="logoConfig"></image>
  18. </button>
  19. <!-- #endif -->
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. name: 'customerService',
  25. props: {
  26. dataConfig: {
  27. type: Object,
  28. default: () => {}
  29. },
  30. isSortType:{
  31. type: String | Number,
  32. default:0
  33. }
  34. },
  35. data() {
  36. return {
  37. routineContact: this.dataConfig.routine_contact_type,
  38. logoConfig: this.dataConfig.logoConfig.url,
  39. topConfig: this.dataConfig.topConfig.val?this.dataConfig.topConfig.val+'%':'30%'
  40. };
  41. },
  42. created() {},
  43. methods: {
  44. setTouchMove(e) {
  45. var that = this;
  46. if (e.touches[0].clientY < 545 && e.touches[0].clientY > 66) {
  47. that.topConfig = e.touches[0].clientY+'px'
  48. }
  49. },
  50. }
  51. }
  52. </script>
  53. <style lang="scss">
  54. .customerService,.customerService-sty {
  55. position: fixed;
  56. right: 20rpx;
  57. z-index: 40;
  58. .pictrue {
  59. width: 86rpx;
  60. height: 86rpx;
  61. border-radius: 50%;
  62. image {
  63. width: 100%;
  64. height: 100%;
  65. }
  66. }
  67. }
  68. .customerService-sty{
  69. background-color: rgba(0,0,0,0) !important;
  70. }
  71. </style>