This commit is contained in:
pengxiaolong
2025-05-13 19:39:53 +08:00
parent 37da6765b8
commit c006a8e63d
1232 changed files with 96963 additions and 883 deletions

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sources":["TUIKit/components/common/Loading/index.vue","../../HBuilderX/plugins/uniapp-cli-vite/uniComponent:/RDov6aG555uuL3RrLW1pbmktcHJvZ3JhbS9UVUlLaXQvY29tcG9uZW50cy9jb21tb24vTG9hZGluZy9pbmRleC52dWU"],"sourcesContent":["<template>\n <div\n class=\"tui-loading\"\n :style=\"{\n width: props.width,\n height: props.height,\n border: `2px solid ${props.color}`,\n borderTopColor: 'transparent',\n }\"\n />\n</template>\n<script setup lang=\"ts\">\nconst props = defineProps({\n width: {\n type: String,\n default: '30px',\n },\n height: {\n type: String,\n default: '30px',\n },\n color: {\n type: String,\n default: '#D9D9D9',\n },\n});\n</script>\n<style scoped lang=\"scss\">\n.tui-loading {\n width: 30px;\n height: 30px;\n border: 2px solid #d9d9d9;\n border-top-color: transparent;\n border-radius: 100%;\n animation: circle infinite 0.75s linear;\n}\n\n@keyframes circle {\n 0% {\n transform: rotate(0);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n}\n</style>\n","import Component from 'D:/项目/tk-mini-program/TUIKit/components/common/Loading/index.vue'\nwx.createComponent(Component)"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAYA,UAAM,QAAQ;;;;;;;;;;;ACXd,GAAG,gBAAgB,SAAS;"}