123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- "use strict";
- const uni_modules_uniIcons_components_uniIcons_icons = require("./icons.js");
- const common_vendor = require("../../../../common/vendor.js");
- const getVal = (val) => {
- const reg = /^[0-9]*$/g;
- return typeof val === "number" || reg.test(val) ? val + "px" : val;
- };
- const _sfc_main = {
- name: "UniIcons",
- emits: ["click"],
- props: {
- type: {
- type: String,
- default: ""
- },
- color: {
- type: String,
- default: "#333333"
- },
- size: {
- type: [Number, String],
- default: 16
- },
- customPrefix: {
- type: String,
- default: ""
- }
- },
- data() {
- return {
- icons: uni_modules_uniIcons_components_uniIcons_icons.icons.glyphs
- };
- },
- computed: {
- unicode() {
- let code = this.icons.find((v) => v.font_class === this.type);
- if (code) {
- return unescape(`%u${code.unicode}`);
- }
- return "";
- },
- iconSize() {
- return getVal(this.size);
- }
- },
- methods: {
- _onClick() {
- this.$emit("click");
- }
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: $props.color,
- b: $options.iconSize,
- c: common_vendor.n("uniui-" + $props.type),
- d: common_vendor.n($props.customPrefix),
- e: common_vendor.n($props.customPrefix ? $props.type : ""),
- f: common_vendor.o((...args) => $options._onClick && $options._onClick(...args))
- };
- }
- const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/Users/RuHu.Xu/Desktop/mall-newfeifan-zx-app/uni_modules/uni-icons/components/uni-icons/uni-icons.vue"]]);
- wx.createComponent(Component);
|