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.
30 lines
1.4 KiB
30 lines
1.4 KiB
<!--pages/release/index.wxml--> |
|
<view class="release-page"> |
|
<view class="auth-btn-box acea-row row-column row-middle"> |
|
<view class="auth-btn" bindtap="toCompanyAuth">企业认证<image src="../../images/back.png"></image></view> |
|
<view class="auth-btn bgG" bindtap="toPersonlAuth">个人认证<image src="../../images/back.png"></image></view> |
|
</view> |
|
<view class="posi"> |
|
<view class="tips-box"> |
|
<view class="tips acea-row row-middle"> |
|
<view class="icon">!</view> |
|
<view>请先完成认证</view> |
|
</view> |
|
<view class="tips acea-row row-middle"> |
|
<view class="icon">!</view> |
|
<view>注:完成企业认证后可以发布资源及需求,个人认证后只可发布需求</view> |
|
</view> |
|
</view> |
|
<view class="btn-box acea-row row-between"> |
|
<view class="btn {{authStatus == 2 && authType == 1 ? 'auth' : '' }}" bindtap="toResources"> |
|
<view class="tip">我能提供...</view> |
|
<image class="{{authStatus == 2 && authType == 1 ? '' : 'default' }}" src="../../images/yrz1.png"></image> |
|
</view> |
|
<view class="btn {{authStatus == 2 ? 'auth' : '' }}" bindtap="toNeeds"> |
|
<view class="tip">我有需求...</view> |
|
<image class="{{authStatus == 2 ? '' : 'default' }}" src="../../images/yrz2.png"></image> |
|
</view> |
|
</view> |
|
<view class="close" bindtap="back"><image src="../../images/fabu-close.png"></image></view> |
|
</view> |
|
</view>
|
|
|