no message
Showing
17 changed files
with
386 additions
and
127 deletions
-
Please register or sign in to post a comment
... | ... | @@ -6,7 +6,7 @@ Component({ |
// 这里定义了innerText属性,属性值可以在组件使用时指定 | ||
innerText: { | ||
type: String, | ||
value: 'default value', | ||
value: '这里空空如也~', | ||
}, | ||
emptyVisible: { | ||
type: Boolean, | ||
... | ... |
<view class="empty-tips" > | ||
<view class="tips"> | ||
<span class="iconfont iconempty"></span> | ||
<view class="tips">这里空空如也~</view> | ||
<view class="tips">{{innerText}}</view> | ||
</view> | ||
</view> | ||
... | ... |
... | ... | @@ -18,6 +18,10 @@ Component({ |
innerButton: { | ||
type: String, | ||
value: '确定', | ||
}, | ||
item: { | ||
type: Object, | ||
value: {} | ||
} | ||
}, | ||
data: { | ||
... | ... |
... | ... | @@ -95,6 +95,7 @@ |
</view> | ||
</view> | ||
<empty-tips wx:if="{{dataList.length <= 0}}"></empty-tips> | ||
</view> | ||
</view> | ||
<van-popup show="{{ authorizeVisible }}"> | ||
... | ... |
... | ... | @@ -69,6 +69,10 @@ $contentWidth:690px; |
@include cb(120px, 60px); | ||
margin-right: 20px; | ||
} | ||
.disable{ | ||
background-color: #999999; | ||
} | ||
} | ||
} | ||
} | ||
... | ... |