index.vue 787 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view>
  3. <view style="height: 136rpx;"></view>
  4. <view class="sc-box ddflex">
  5. <image class="sc-header" src="../../static/images/userimg.png"></image>
  6. <view class="sc-name">
  7. <view>杜平</view>
  8. <view class="sc-tag">高级组经理</view>
  9. </view>
  10. <view class="sc-line"></view>
  11. <view class="sc-contact">
  12. <image src="/static/images/wxChat.png"></image>
  13. <view>聊一聊</view>
  14. </view>
  15. <view class="sc-btn flex">进入我的微页</view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. const app = getApp();
  21. const req = require("../../utils/request.js");
  22. export default {
  23. data() {
  24. return {
  25. };
  26. },
  27. components: {},
  28. props: {
  29. },
  30. watch: {},
  31. mounted() {
  32. },
  33. methods: {
  34. }
  35. };
  36. </script>
  37. <style>
  38. @import "./index.css";
  39. </style>