正在显示
2 个修改的文件
包含
2 行增加
和
2 行删除
... | ... | @@ -217,7 +217,7 @@ Page({ |
217 | 217 | } |
218 | 218 | } |
219 | 219 | if (!title) continue; |
220 | - if (!title || (value != 0 && !value)) continue; | |
220 | + // if (!title || (value != 0 && !value)) continue; | |
221 | 221 | // if (mapping_keys.indexOf(titleData['key']) == -1 && (value == '0' || value == 0)) continue; |
222 | 222 | details.push({ |
223 | 223 | title: title, | ... | ... |
... | ... | @@ -57,7 +57,7 @@ |
57 | 57 | <view class='divide_line_f5f5f5' style='margin:30rpx 0'></view> |
58 | 58 | </view> |
59 | 59 | <view wx:if="{{item.isshow}}" wx:for="{{item.detals}}" wx:for-item='detal'> |
60 | - <view hidden="{{!item.zeroShow&&(detal.value=='0'||detal.value==0)}}" > | |
60 | + <view hidden="{{!item.zeroShow&&(!detal.value||detal.value=='0'||detal.value==0)}}" > | |
61 | 61 | <text class='text_999_28'>{{detal.title}}</text> |
62 | 62 | <text class='text_999_28' style='color:#333;text-align:right;float: right'>{{detal.value}}</text> |
63 | 63 | </view> | ... | ... |
请
注册
或
登录
后发表评论