1234567891011121314151617181920212223242526272829 |
- <template>
- <view style="padding: 20px; line-height: 30px;">
- <view class="tt1">北京云帆互联科技有限公司</view>
- <view class="desc tt2" style="margin-top: 20px;">公司地址:北京市朝阳区东十里堡路1号未来时大厦4层</view>
- <view class="desc tt2">电子邮箱:626264481@qq.com</view>
- <view class="desc tt2">联系电话:18710213152</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
-
- .desc{
- color: #666;
- }
- </style>
|