You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
40 lines
1.5 KiB
<!--pages/home/info/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">个人中心</view>
|
|
</cu-custom>
|
|
|
|
<view class="cu-form-group margin-top" style="min-height:120rpx;margin-bottom:1rpx;padding: 20rpx 30rpx">
|
|
<text class="lg text-black">头像</text>
|
|
<wux-image width="{{50}}" height="{{50}}" wux-class="image" shape="circle" src="{{avatarUrl}}" />
|
|
</view>
|
|
<wux-cell-group>
|
|
<wux-cell title="姓名">
|
|
<view slot="footer">{{linkman}}</view>
|
|
</wux-cell>
|
|
<wux-cell title="公司名称" wx:if="{{userType == 2}}">
|
|
<view slot="footer">{{realName}}</view>
|
|
</wux-cell>
|
|
<wux-cell title="公司性质" wx:if="{{userType == 2}}">
|
|
<view slot="footer">{{identityStr}}</view>
|
|
</wux-cell>
|
|
<wux-cell title="联系电话">
|
|
<view slot="footer">{{linkPhone}}</view>
|
|
</wux-cell>
|
|
<wux-cell title="公司地址" wx:if="{{userType == 2}}">
|
|
<view slot="footer" style="width:500rpx">{{companyAddress}}</view>
|
|
</wux-cell>
|
|
</wux-cell-group>
|
|
|
|
<view class="bg-white margin-top" style="padding: 1rpx 30rpx;" wx:if="{{licenseUrl}}">
|
|
<view style="padding: 20rpx 0rpx;">
|
|
<text class="lg text-sg text-black" decode="{{true}}">营业执照</text>
|
|
</view>
|
|
<view class="grid col-3 grid-square">
|
|
<view class="bg-img" wx:if="{{licenseUrl}}" bindtap="viewImage" data-url="{{licenseUrl}}">
|
|
<image src='{{licenseUrl}}' mode='aspectFill'></image>
|
|
<view class="cu-tag bg-red" catchtap="updatalicenseUrl">
|
|
<text class="cuIcon-close"></text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|