no message

This commit is contained in:
2024-01-16 22:53:42 +08:00
commit 40e5198c79
479 changed files with 52166 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
var o = require("../../common/vendor.js");
Array ||
(o.resolveComponent("uni-load-more") + o.resolveComponent("uni-icons"))(),
Math ||
(
function () {
return "../../uni_modules/uni-load-more/components/uni-load-more/uni-load-more.js";
} +
function () {
return "../../uni_modules/uni-icons/components/uni-icons/uni-icons.js";
}
)();
var n = {
__name: "index",
props: { loading: { type: Boolean, default: !1 } },
emits: ["click"],
setup: function (n, e) {
var i = e.emit,
r = function () {
i("click");
};
return function (e, i) {
return {
a: n.loading,
b: o.p({
iconType: "circle",
iconSize: 20,
status: "loading",
showText: !1,
color: "#1F68E9",
}),
c: !n.loading,
d: o.p({ type: "refreshempty", size: "24", color: "#1F68E9" }),
e: o.o(r),
};
};
},
},
e = o._export_sfc(n, [["__scopeId", "data-v-8535e783"]]);
wx.createComponent(e);

View File

@@ -0,0 +1,7 @@
{
"component": true,
"usingComponents": {
"uni-load-more": "../../uni_modules/uni-load-more/components/uni-load-more/uni-load-more",
"uni-icons": "../../uni_modules/uni-icons/components/uni-icons/uni-icons"
}
}

View File

@@ -0,0 +1,23 @@
<view
catchtap="{{e}}"
class="button data-v-8535e783"
hoverClass="default-hover-class"
hoverStayTime="100"
>
<uni-load-more
bind:__l="__l"
class="data-v-8535e783"
data-c-h="{{!a}}"
uI="8535e783-0"
uP="{{b}}"
wx:if="{{b}}"
></uni-load-more>
<uni-icons
bind:__l="__l"
class="data-v-8535e783"
data-c-h="{{!c}}"
uI="8535e783-1"
uP="{{d}}"
wx:if="{{d}}"
></uni-icons>
</view>

View File

@@ -0,0 +1,15 @@
.button.data-v-8535e783 {
align-items: center;
background-color: #fff;
border-radius: 100%;
bottom: 80rpx;
box-shadow: 0 5rpx 15rpx rgba(0, 0, 0, 0.15);
display: -webkit-flex;
display: flex;
height: 80rpx;
justify-content: center;
position: fixed;
right: 40rpx;
width: 80rpx;
z-index: 88;
}