mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-22 05:29:37 +08:00
53 lines
2.3 KiB
Plaintext
53 lines
2.3 KiB
Plaintext
<view class="page">
|
|
<scroll-view scroll-y="true" style="background:white;height:100%">
|
|
<view style="padding:2% 4%;background:white;display:flex;border-bottom:1rpx solid #E5E5E5;" bindtap="navCropper">
|
|
<view style="font-size:28rpx;width:24%;line-height: 100rpx;">头像</view>
|
|
<view style="font-size:28rpx;width:76%;text-align:right">
|
|
<image src="{{memberInfo.avatar? memberInfo.avatar:'/images/t.jpg'}}" mode="widthFix"
|
|
style="width:100rpx;height:100rpx;border-radius:10rpx;">
|
|
</image>
|
|
</view>
|
|
</view>
|
|
<view class="listBox">
|
|
<view style="width:24%;">企业名称</view>
|
|
<view style="width:76%;text-align:right;color:#888888">{{memberInfo.userName}}</view>
|
|
</view>
|
|
<view class="listBox">
|
|
<view style="width:24%;">企业简介</view>
|
|
<view style="width:76%;text-align:right;color:#888888">{{cursor}}/500</view>
|
|
<view style="width:100%;">
|
|
<textarea style="height:150rpx;line-height:20rpx;" bindinput="bindTextAreaBlur" placeholder="输入内容"
|
|
maxlength='500'></textarea>
|
|
</view>
|
|
</view>
|
|
<view class="listBox">
|
|
<view style="width:24%;">企业服务</view>
|
|
<view style="width:76%;text-align:right;color:#888888">{{cursor}}/500</view>
|
|
<view style="width:100%;">
|
|
<textarea style="height:150rpx;line-height:20rpx;" bindinput="bindTextAreaBlur" placeholder="输入内容"
|
|
maxlength='500'></textarea>
|
|
</view>
|
|
</view>
|
|
<view class="listBox">
|
|
<view style="width:24%;">公司</view>
|
|
<view style="width:70%;text-align:right;color:#888888">{{memberInfo.customer.name? memberInfo.customer.name:'无'}}
|
|
</view>
|
|
<view style="width:6%;text-align:right">
|
|
<text class="iconfont iconyou" style="font-size:28rpx;color:#B2B2B2"></text>
|
|
</view>
|
|
</view>
|
|
<view class="listBox">
|
|
<view style="width:100%;padding-bottom:30rpx">联系方式</view>
|
|
<view style="width:24%;">电话</view>
|
|
<view style="width:76%;text-align:right;color:#888888">
|
|
<input type="text" placeholder="请输入联系电话" />
|
|
</view>
|
|
</view>
|
|
<view class="listBox">
|
|
<view style="width:24%;">电子邮箱</view>
|
|
<view style="width:76%;text-align:right;color:#888888">
|
|
<input type="text" placeholder="请输入电子邮箱" />
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view> |