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.
49 lines
2.1 KiB
49 lines
2.1 KiB
<!--pages/demandHall/contact/index.wxml--> |
|
<view class="contact-page"> |
|
<view class="company-card-box acea-row-nowrap"> |
|
<image src="{{resourcesDetail.enterprise.enterpriseLogo}}" class="company-logo"></image> |
|
<view class="info"> |
|
<view class="company-name line1">{{resourcesDetail.title}}</view> |
|
<view class="tags-box"> |
|
<view class="tag-item">网站建设</view> |
|
</view> |
|
<view class="slogan">{{resourcesDetail.enterprise.enterpriseName}}</view> |
|
</view> |
|
</view> |
|
<view class="tips acea-row row-middle"> |
|
<view class="t-icon">!</view> |
|
<text>请明确您的需求!</text> |
|
</view> |
|
<view class="needs-list" wx:if="{{resourcesList.length > 0}}"> |
|
<view class="need-item" wx:for="{{resourcesList}}" 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="n-title-box acea-row row-between row-middle"> |
|
<view class="">我需要公司官网设计-网红餐饮网红餐饮</view> |
|
<view class="colO">发布中</view> |
|
</view> |
|
<view class="n-tags acea-row"> |
|
<view class="n-tag-item">场地租赁</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="n-title-box acea-row row-between row-middle"> |
|
<view class="">我需要公司官网设计-网红餐饮网红餐饮</view> |
|
<view class="colO">发布中</view> |
|
</view> |
|
<view class="n-tags acea-row"> |
|
<view class="n-tag-item">场地租赁</view> |
|
</view> |
|
</view> --> |
|
</view> |
|
<view class="area-box" wx:if="{{resourcesList.length == 0}}"> |
|
<textarea placeholder="请输入您的申请内容" value="{{content}}" bindinput="inpChange"></textarea> |
|
</view> |
|
<view class="submit-btn" bindtap="submit">提交申请</view> |
|
</view>
|
|
|