first add files

This commit is contained in:
2025-08-15 14:05:08 +08:00
parent c58f74bcc0
commit b6216570d9
2451 changed files with 29056 additions and 0 deletions

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@
Page({});

View File

@@ -0,0 +1,12 @@
{
"navigationStyle": "custom",
"renderer": "skyline",
"componentFramework": "glass-easel",
"usingComponents": {
"t-navbar": "tdesign-miniprogram/navbar/navbar",
"base": "../base",
"with-title": "../with-title",
"area": "../area",
"without-popup": "../without-popup"
}
}

View File

@@ -0,0 +1,19 @@
<view class="skyline">
<t-navbar title="Picker" leftArrow />
<scroll-view scroll-y type="list" class="scroll-view">
<view class="area-picker-demo">
<view class="demo-title">Picker 选择器</view>
<view class="demo-desc">用于一组预设数据中的选择。</view>
<t-demo title="01 组件类型" desc="基础选择器">
<base />
<area />
</t-demo>
<t-demo title="02 组件样式" desc="是否带标题">
<with-title />
</t-demo>
<t-demo desc="不使用 Popup">
<without-popup />
</t-demo>
</view>
</scroll-view>
</view>