c-service.vue 601 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="service-wrap" style="width: 89rpx; height: 158rpx;">
  3. <button class="u-reset-button" open-type="contact">
  4. <image src="/static/app/service.png" mode="aspectFit"></image>
  5. </button>
  6. </view>
  7. </template>
  8. <script>
  9. import { mapActions, mapState, mapGetters } from 'vuex';
  10. export default {
  11. name:"c-service",
  12. data() {
  13. return {
  14. };
  15. },
  16. props: {
  17. },
  18. computed: {
  19. },
  20. mounted() {
  21. },
  22. methods: {
  23. },
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .service-wrap{
  28. position: fixed;
  29. right: 10px;
  30. bottom: 100px;
  31. z-index: 100;
  32. }
  33. </style>