| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view>
- <view style="height: 136rpx;"></view>
- <view class="sc-box ddflex">
- <image class="sc-header" src="../../static/images/userimg.png"></image>
- <view class="sc-name">
- <view>杜平</view>
- <view class="sc-tag">高级组经理</view>
- </view>
- <view class="sc-line"></view>
- <view class="sc-contact">
- <image src="/static/images/wxChat.png"></image>
- <view>聊一聊</view>
- </view>
- <view class="sc-btn flex">进入我的微页</view>
- </view>
- </view>
- </template>
- <script>
- const app = getApp();
- const req = require("../../utils/request.js");
- export default {
- data() {
- return {
- };
- },
- components: {},
- props: {
- },
- watch: {},
- mounted() {
- },
- methods: {
- }
- };
- </script>
- <style>
- @import "./index.css";
- </style>
|