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.
 
 
 
 

57 lines
2.5 KiB

<!--pages/demandHall/contact/index.wxml-->
<view class="contact-page">
<view class="company-card-box acea-row-nowrap">
<image src="{{needsDetail.enterprise.enterpriseLogo}}" class="company-logo"></image>
<view class="info">
<view class="n-title-box acea-row row-between row-middle">
<view class="line1">{{needsDetail.title}}</view>
</view>
<view class="n-tags acea-row">
<view class="n-tag-item">场地租赁</view>
</view>
<view class="price">需求预算<text class="n-title-a">{{needsDetail.capital}}</text></view>
</view>
</view>
<view class="tips acea-row row-middle">
<view class="t-icon">!</view>
<text>请明确您可提供的资源!</text>
</view>
<view class="needs-list" wx:if="{{needsList.length > 0}}">
<view class="need-item" wx:for="{{needsList}}" wx:key="index" bindtap="needItemClick" data-id="{{item.id}}">
<view class="n-title {{active == item.id ? 'n-title-a' : ''}} acea-row row-middle">
<view class="dot"></view>
<text>发送资源给企业(个人)</text>
</view>
<view class="company-card-box acea-row-nowrap">
<image src="../../../images/home/company-img.png" class="company-logo"></image>
<view class="info">
<view class="company-name line1">{{item.title}}</view>
<view class="tags-box">
<view class="tag-item">网站建设</view>
</view>
<view class="slogan">{{item.enterprise.enterpriseName}}</view>
</view>
</view>
</view>
<!-- <view class="need-item">
<view class="n-title {{active == index ? 'n-title-a' : ''}} acea-row row-middle">
<view class="dot"></view>
<text>发送需求给企业(个人)</text>
</view>
<view class="company-card-box acea-row-nowrap">
<image src="../../../images/home/company-img.png" class="company-logo"></image>
<view class="info">
<view class="company-name line1">教育类学校官网校官网网站建设</view>
<view class="tags-box">
<view class="tag-item">网站建设</view>
</view>
<view class="slogan">出牛科技 武汉</view>
</view>
</view>
</view> -->
</view>
<view class="area-box" wx:if="{{needsList.length == 0}}">
<textarea placeholder="请输入您的资源信息" value="{{content}}" bindinput="inpChange"></textarea>
</view>
<view class="submit-btn" bindtap="submit">提交申请</view>
</view>