loadmore.wxs 450 B

123456789101112131415
  1. var isShowLoading = function (isLoading, isRefresh) {
  2. return isLoading || isRefresh
  3. }
  4. var isShowMore = function (isLoading, isRefresh, isEmpty, isComplete) {
  5. return !isLoading && !isRefresh && !isEmpty && isComplete
  6. }
  7. var isShowEmpty = function (isLoading, isRefresh, isEmpty) {
  8. return !isLoading && !isRefresh && isEmpty
  9. }
  10. module.exports = {
  11. isShowLoading: isShowLoading,
  12. isShowMore: isShowMore,
  13. isShowEmpty: isShowEmpty,
  14. }