添加页面, 组件, 图标

This commit is contained in:
zhengw
2026-01-30 16:29:23 +08:00
parent 85483c7ca2
commit 3c7d7860b1
48 changed files with 1442 additions and 258 deletions

View File

@@ -0,0 +1,6 @@
{
"component": true,
"usingComponents": {
"t-empty": "tdesign-miniprogram/empty/empty"
}
}

View File

@@ -0,0 +1,24 @@
// pages/components/empty-plugin/empty-plugin.ts
Component({
/**
* 组件的属性列表
*/
properties: {
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
}
})

View File

@@ -0,0 +1 @@
<t-empty icon="no-result" description="暂无数据" style="margin-top: 24rpx;margin-bottom: 24rpx;" />