| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="service-wrap" style="width: 89rpx; height: 158rpx;">
- <button class="u-reset-button" open-type="contact">
- <image src="/static/app/service.png" mode="aspectFit"></image>
- </button>
- </view>
- </template>
- <script>
- import { mapActions, mapState, mapGetters } from 'vuex';
- export default {
- name:"c-service",
- data() {
- return {
-
- };
- },
- props: {
-
- },
- computed: {
-
- },
- mounted() {
-
- },
- methods: {
-
- },
- }
- </script>
- <style lang="scss" scoped>
- .service-wrap{
- position: fixed;
- right: 10px;
- bottom: 100px;
- z-index: 100;
- }
- </style>
|