|
@@ -9,7 +9,7 @@
|
|
|
<van-tab title="所有信息">
|
|
|
<!-- 宫格 -->
|
|
|
<view class="grid_box">
|
|
|
- <view class="grid_item" wx:key="index" wx:for="{{ftypeList}}" data-type="{{item.ftype}}" bindtap="switchScreenType">
|
|
|
+ <view class="grid_item" wx:for="{{ftypeList}}" wx:key="index" data-type="{{item.ftype}}" bindtap="switchScreenType">
|
|
|
<view class="grid_item_image" wx:if="{{ftype==item.ftype}}">
|
|
|
<image src="{{item.attinfos[1].fobsurl}}"></image>
|
|
|
</view>
|
|
@@ -20,7 +20,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 列表 -->
|
|
|
- <My_SupplyAndDemandItemBox data-index="{{index}}" bindtap="jumpForDetails" wx:for="{{productList}}" title="[{{item.ftype}}]{{item.ftitle}}" time="{{item.checkdate}}" imageList="{{item.attinfos}}" type='{{item.ftype}}' content="{{item.fcontent}}" bindstopOnShow="stopOnShow">
|
|
|
+ <My_SupplyAndDemandItemBox data-index="{{index}}" bindtap="jumpForDetails" wx:for="{{productList}}" wx:key="index" title="[{{item.ftype}}]{{item.ftitle}}" time="{{item.checkdate}}" imageList="{{item.attinfos}}" type='{{item.ftype}}' content="{{item.fcontent}}" bindstopOnShow="stopOnShow">
|
|
|
<!-- 内容信息插槽 -->
|
|
|
<view slot="dataAndBut">
|
|
|
<view class="dataAndBut">
|
|
@@ -36,14 +36,14 @@
|
|
|
</My_SupplyAndDemandItemBox>
|
|
|
</van-tab>
|
|
|
<van-tab title="正在对接">
|
|
|
- <view class="abutting-joint-box" wx:for="{{productList}}">
|
|
|
+ <view class="abutting-joint-box" wx:for="{{productList}}" wx:key="index">
|
|
|
<view class="abutting-joint-titleAndMsg">
|
|
|
<view class="abutting-joint-title u-line-1">[{{item.ftype}}]{{item.ftitle}}</view>
|
|
|
<view class="abutting-joint-msg u-line-1"><text style="color: #FF0000; opacity: .5;">[23条]</text>李老板:多少钱收?多少钱收?</view>
|
|
|
</view>
|
|
|
<view class="abutting-joint-timeAndBut">
|
|
|
<view class="abutting-joint-time">{{item.checkdate}}</view>
|
|
|
- <van-button custom-class="abutting-joint-but"><text class="abutting-joint-but-text">继续沟通</text></van-button>
|
|
|
+ <van-button custom-class="abutting-joint-but" data-item="{{item}}" catchtap="toLinkUpPage"><text class="abutting-joint-but-text">继续沟通</text></van-button>
|
|
|
</view>
|
|
|
</view>
|
|
|
</van-tab>
|
|
@@ -56,7 +56,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 列表 -->
|
|
|
- <My_SupplyAndDemandItemBox wx:for="{{productList}}" title="【{{item.ftype}}】{{item.ftitle}}" time="{{item.checkdate}}" imageList="{{item.attinfos}}" data-index="{{index}}" bindtap="jumpForDetails" type='{{item.ftype}}' content="{{item.fcontent}}" bindstopOnShow="stopOnShow">
|
|
|
+ <My_SupplyAndDemandItemBox wx:for="{{productList}}" wx:key="index" title="【{{item.ftype}}】{{item.ftitle}}" time="{{item.checkdate}}" imageList="{{item.attinfos}}" data-index="{{index}}" bindtap="jumpForDetails" type='{{item.ftype}}' content="{{item.fcontent}}" bindstopOnShow="stopOnShow">
|
|
|
<!-- 我的需求左上状态插槽 -->
|
|
|
<view slot="myState" class="myState">
|
|
|
<view class="myShowState {{item.fstatus=='正在对接'?'myNoSoldOut':''}} {{item.fstatus=='待对接'?'myNoSoldOut':''}}">
|
|
@@ -91,7 +91,7 @@
|
|
|
<view class="CommunicationOfNumber">
|
|
|
<view class="CommunicationOfNumber-title">沟通列表</view>
|
|
|
<view class="CommunicationOfNumber-list">
|
|
|
- <view wx:for="{{imdialogs}}">{{item.createdate}}<text data-item="{{item}}" catchtap="toLinkUpPage" class="text">用户:{{item.fname}}</text><text wx:if="{{item.fdatastatus==0}}">发起联系,遗憾未达成合作</text><text wx:elif='{{item.fdatastatus==2}}'>发起联系,正在对接中</text><text wx:elif='{{item.fdatastatus==1}}'>发起联系,恭喜达成合作</text></view>
|
|
|
+ <view wx:for="{{imdialogs}}" wx:key="index">{{item.createdate}}<text data-item="{{item}}" catchtap="toLinkUpPage" class="text">用户:{{item.fname}}</text><text wx:if="{{item.fdatastatus==0}}">发起联系,遗憾未达成合作</text><text wx:elif='{{item.fdatastatus==2}}'>发起联系,正在对接中</text><text wx:elif='{{item.fdatastatus==1}}'>发起联系,恭喜达成合作</text></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view style="height: 50px;"></view>
|