my.vue 590 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="page">
  3. <view class="flex-row use">
  4. <view class="avatar">
  5. <image :src="'/static/logo.png'"></image>
  6. </view>
  7. <view class="flex-col justify-around useMsg">
  8. <view class="flex-row">
  9. <text class="name">张辉</text>
  10. <view class="tag">拓客经理</view>
  11. </view>
  12. <view>
  13. <text class="phone">电话:17365000111</text>
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. }
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. @import './index.rpx.css';
  31. </style>