| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="企业信息">
- <!-- <view slot="content">企业信息</view> -->
- </cu-custom>
- <view class="company">
- <view wx:if="{{companyInfo.address}}">
- <view>
- <text>{{companyInfo.name}}</text>
- <view bindtap="editComPanyInfo"><image src="/img/edit.png"></image></view>
- </view>
- <view>
- <text>联系人:</text>
- <text>{{companyInfo.managerName}}</text>
- </view>
- <view>
- <text>联系人电话:</text>
- <text>{{companyInfo.managerPhone}}</text>
- </view>
- <view>
- <text>联系人邮箱:</text>
- <text>{{companyInfo.managerEmail}}</text>
- </view>
- <view>
- <text>企业地址:</text>
- <text>{{companyInfo.address}}</text>
- </view>
- </view>
- <view wx:if="{{companyInfo.addr}}">
- <view style="display:block;">
- <text>单位名称:</text>
- <text>{{companyInfo.name}}</text>
- </view>
- <view>
- <text>单位地址:</text>
- <text>{{companyInfo.addr}}</text>
- </view>
- </view>
- </view>
|