companyInfo.wxml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
  2. <cu-custom bgColor="bg-color" isBack="{{true}}" title="企业信息">
  3. <!-- <view slot="content">企业信息</view> -->
  4. </cu-custom>
  5. <view class="company">
  6. <view wx:if="{{companyInfo.address}}">
  7. <view>
  8. <text>{{companyInfo.name}}</text>
  9. <view bindtap="editComPanyInfo"><image src="/img/edit.png"></image></view>
  10. </view>
  11. <view>
  12. <text>联系人:</text>
  13. <text>{{companyInfo.managerName}}</text>
  14. </view>
  15. <view>
  16. <text>联系人电话:</text>
  17. <text>{{companyInfo.managerPhone}}</text>
  18. </view>
  19. <view>
  20. <text>联系人邮箱:</text>
  21. <text>{{companyInfo.managerEmail}}</text>
  22. </view>
  23. <view>
  24. <text>企业地址:</text>
  25. <text>{{companyInfo.address}}</text>
  26. </view>
  27. </view>
  28. <view wx:if="{{companyInfo.addr}}">
  29. <view style="display:block;">
  30. <text>单位名称:</text>
  31. <text>{{companyInfo.name}}</text>
  32. </view>
  33. <view>
  34. <text>单位地址:</text>
  35. <text>{{companyInfo.addr}}</text>
  36. </view>
  37. </view>
  38. </view>