31 lines
961 B
JavaScript
Raw Normal View History

2025-07-15 16:18:34 +08:00
"use strict";
const common_vendor = require("../../common/vendor.js");
2025-10-29 13:53:05 +08:00
const common_assets = require("../../common/assets.js");
2025-07-15 16:18:34 +08:00
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
__name: "hs-empty",
props: {
mode: null,
text: null,
height: null,
iconSize: null,
2025-10-29 13:53:05 +08:00
textSize: null,
baseStyle: null
2025-07-15 16:18:34 +08:00
},
setup(__props) {
const props = __props;
const baseStyle = {
2025-10-29 13:53:05 +08:00
height: props.height || "40vh",
...props.baseStyle
2025-07-15 16:18:34 +08:00
};
return (_ctx, _cache) => {
return {
2025-10-29 13:53:05 +08:00
a: common_assets._imports_0$1,
b: common_vendor.t((props == null ? void 0 : props.text) || "暂无数据"),
c: common_vendor.s(baseStyle)
2025-07-15 16:18:34 +08:00
};
};
}
});
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-9e2a467e"], ["__file", "/Users/zsq/Sources/github/2025property-pay/pay-customer/src/components/hs-empty/hs-empty.vue"]]);
wx.createComponent(Component);