| 1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view class="page">
- <view class="flex-row use">
- <view class="avatar">
- <image :src="'/static/logo.png'"></image>
- </view>
- <view class="flex-col justify-around useMsg">
- <view class="flex-row">
- <text class="name">张辉</text>
- <view class="tag">拓客经理</view>
- </view>
- <view>
- <text class="phone">电话:17365000111</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- @import './index.rpx.css';
- </style>
|