12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="supportBox">
- <image class="supportBox_slogan" src="@/static/ZW/slogan_1.png" mode="aspectFit"></image>
- </view>
- </template>
- <script>
- export default {
- name: "technical-support",
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .supportBox {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 36rpx;
- .supportBox_slogan {
- width: 380rpx;
- height: 51rpx;
- }
- }
- </style>
|