about.vue 546 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view style="padding: 20px; line-height: 30px;">
  3. <view class="tt1">北京云帆互联科技有限公司</view>
  4. <view class="desc tt2" style="margin-top: 20px;">公司地址:北京市朝阳区东十里堡路1号未来时大厦4层</view>
  5. <view class="desc tt2">电子邮箱:626264481@qq.com</view>
  6. <view class="desc tt2">联系电话:18710213152</view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style>
  20. .desc{
  21. color: #666;
  22. }
  23. </style>