technical-support.vue 462 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="supportBox">
  3. <image class="supportBox_slogan" src="@/static/ZW/slogan_1.png" mode="aspectFit"></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: "technical-support",
  9. data() {
  10. return {
  11. };
  12. }
  13. }
  14. </script>
  15. <style lang="scss" scoped>
  16. .supportBox {
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. margin-top: 36rpx;
  21. .supportBox_slogan {
  22. width: 380rpx;
  23. height: 51rpx;
  24. }
  25. }
  26. </style>