【bug】 bug修改
This commit is contained in:
+21
-1
@@ -18,6 +18,10 @@ Page({
|
||||
'文件通知',
|
||||
'邮寄通知',
|
||||
'催款通知',
|
||||
'项目通知',
|
||||
'开票通知',
|
||||
'缴费通知',
|
||||
'系统通知'
|
||||
],
|
||||
index: 0,
|
||||
list: [], // 消息列表
|
||||
@@ -216,10 +220,26 @@ Page({
|
||||
this.setData({
|
||||
"searchParams.titile": 7,
|
||||
})
|
||||
} else {
|
||||
} else if(e.detail.value == 3){
|
||||
this.setData({
|
||||
"searchParams.titile": 8,
|
||||
})
|
||||
}else if(e.detail.value == 4){
|
||||
this.setData({
|
||||
"searchParams.titile": 1,
|
||||
})
|
||||
}else if(e.detail.value == 5){
|
||||
this.setData({
|
||||
"searchParams.titile": 10,
|
||||
})
|
||||
}else if(e.detail.value == 6){
|
||||
this.setData({
|
||||
"searchParams.titile": 11,
|
||||
})
|
||||
}else if(e.detail.value == 7){
|
||||
this.setData({
|
||||
"searchParams.titile": 12,
|
||||
})
|
||||
}
|
||||
this.loadData()
|
||||
},
|
||||
|
||||
@@ -29,6 +29,10 @@
|
||||
<text wx:if="{{searchParams.titile}}" wx:if="{{searchParams.titile == 6}}">文件通知</text>
|
||||
<text wx:if="{{searchParams.titile}}" wx:if="{{searchParams.titile == 7}}">邮寄通知</text>
|
||||
<text wx:if="{{searchParams.titile}}" wx:if="{{searchParams.titile == 8}}">催款通知</text>
|
||||
<text wx:if="{{searchParams.titile}}" wx:if="{{searchParams.titile == 1}}">项目通知</text>
|
||||
<text wx:if="{{searchParams.titile}}" wx:if="{{searchParams.titile == 10}}">开票通知</text>
|
||||
<text wx:if="{{searchParams.titile}}" wx:if="{{searchParams.titile == 11}}">缴费通知</text>
|
||||
<text wx:if="{{searchParams.titile}}" wx:if="{{searchParams.titile == 12}}">系统通知</text>
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
|
||||
@@ -107,8 +107,8 @@
|
||||
<text style="min-width:160rpx">酒店地址</text>
|
||||
<text>{{meetingInfo.hotelAddress || ''}}</text>
|
||||
</view>
|
||||
<view wx:for="{{meetingInfo.hotelContactsList}}" wx:key='item'>
|
||||
<text>酒店联系人</text>
|
||||
<view wx:for="{{meetingInfo.hotelContactsList}}" wx:key='item' style="height:auto">
|
||||
<text style="min-width:160rpx">酒店联系人</text>
|
||||
<text>{{item.hotelContacts + (item.hotelContactsPhone ?':':'') + item.hotelContactsPhone + ' '}}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -53,13 +53,13 @@
|
||||
</view>
|
||||
<image src="../../assets/images/more.png"></image>
|
||||
</view> -->
|
||||
<view class="list-item" bindtap="mineContract">
|
||||
<!-- <view class="list-item" bindtap="mineContract">
|
||||
<view class="item-title">
|
||||
<image src="../../assets/images/contract.png"></image>
|
||||
<text>我的合同</text>
|
||||
</view>
|
||||
<image src="../../assets/images/more.png"></image>
|
||||
</view>
|
||||
</view> -->
|
||||
</view>
|
||||
</view>
|
||||
<view class="logout">
|
||||
|
||||
@@ -100,16 +100,17 @@
|
||||
|
||||
<view wx:if="{{hotelContactsList.length > 0}}">
|
||||
<text>酒店名称</text>
|
||||
<text>{{meetingDetailIngfo.hotelName}}</text>
|
||||
<text>{{meetingDetailIngfo.hotelName || ''}}</text>
|
||||
</view>
|
||||
<view wx:if="{{hotelContactsList.length > 0}}" wx:for="{{hotelContactsList}}">
|
||||
<text>酒店联系人</text>
|
||||
<text>{{item.hotelContacts}} - {{item.hotelContactsPhone}}</text>
|
||||
<text>{{item.hotelContacts}} {{item.hotelContactsPhone ? '-' : ''}} {{item.hotelContactsPhone}}</text>
|
||||
</view>
|
||||
|
||||
<view wx:if="{{hotelContactsList.length > 0}}">
|
||||
<text>酒店地址</text>
|
||||
<text class="hotel-text">{{meetingDetailIngfo.hotelAddress}}</text>
|
||||
<text class="hotel-text">{{meetingDetailIngfo.hotelAddress || ''}}</text>
|
||||
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user