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.
66 lines
3.0 KiB
66 lines
3.0 KiB
<!--pages/demandHall/applyDetail/index.wxml--> |
|
<view class="applyDetail-page"> |
|
<view class="top-box"> |
|
<view class="company-card-box acea-row-nowrap"> |
|
<image src="{{detail.resourceInfo.logo}}" class="company-logo"></image> |
|
<view class="info"> |
|
<view class="company-name line1">{{detail.resourceInfo.name}}</view> |
|
<view class="tags-box"> |
|
<view class="tag-item">网站建设</view> |
|
</view> |
|
<view class="slogan">{{detail.resourceInfo.content}}</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="content-box acea-row"> |
|
<view class="content-l"> |
|
<scroll-view style="height:100%;" scroll-y="true" scroll-into-view="{{toView}}"> |
|
<view class="l-item {{active == index ? 'l-item-a' : ''}}" wx:for="{{userList}}" wx:key="index" bindtap="itemClick" data-i="{{index}}" data-id="{{item.communicateId}}"> |
|
<view class="headerImg-box"> |
|
<image src="{{item.headImg}}"></image> |
|
</view> |
|
</view> |
|
</scroll-view> |
|
</view> |
|
<view class="content-r"> |
|
<view class="copany-info-box"> |
|
<view class="c-name"> |
|
<text>{{content.name}}</text> |
|
</view> |
|
<view class="apply-word">{{content.demandInfo.content}}</view> |
|
<view class="need-item" wx:if="{{content.demandInfo}}" bindtap="toNeedDetail" data-id="{{content.demandInfo.resourceId}}"> |
|
<view class="n-title-box acea-row row-between row-middle"> |
|
<view class="word line1">{{content.demandInfo.name}}</view> |
|
<view class="colO">详情</view> |
|
</view> |
|
<view class="n-tags acea-row"> |
|
<view class="n-tag-item">场地租赁</view> |
|
</view> |
|
<view class="price-box acea-row row-between row-middle"> |
|
<view>需求预算 <text class="colO">{{content.demandInfo.budget}}</text></view> |
|
<view>{{content.createTime}}</view> |
|
</view> |
|
</view> |
|
<view class="need-item" wx:if="{{content.projectListDto != null}}" bindtap="toCreateProject"> |
|
<view class="n-title-box acea-row row-between row-middle"> |
|
<view class="word line1">{{content.projectListDto.projectName}}</view> |
|
<view class="colO">详情</view> |
|
</view> |
|
<view class="n-tags acea-row"> |
|
<view class="n-tag-item">场地租赁</view> |
|
</view> |
|
<view class="price-box acea-row row-between row-middle"> |
|
<view class="desc line1">{{content.projectListDto.partner}}</view> |
|
<view>{{content.createTime}}</view> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="btn-box acea-row row-right"> |
|
<view class="btn-item bgO" bindtap="createProject" wx:if="{{content.comminuteState == 2}}">发起项目</view> |
|
<view class="btn-item bgO" bindtap="call" wx:if="{{content.comminuteState == 2}}">立即沟通</view> |
|
<view class="btn-item" wx:if="{{content.comminuteState == 1}}">忽略</view> |
|
<view class="btn-item" wx:if="{{content.comminuteState == 4}}">项目已取消</view> |
|
</view> |
|
</view> |