zhengw d36c005100 feat: 添加卡片组件并优化页面样式
- 新增card-plugin组件,包含完整的卡片结构,支持头部、内容、底部插槽
- 组件具有显示更多功能,可控制内容展开收起
- 集成t-icon组件用于显示展开收起图标
- 修复popup-plugin组件的wxml格式缩进问题
- 调整processEntry页面高度计算,从calc(100vh - 50px)改为100vh
2026-01-09 17:15:08 +08:00

表格示例(slot)

<cf-table
  maxHeight="30vh"
  columns="{{columns}}"
  useTheadSlot="1"
  useTbodySlot="1"
  data="{{data}}"
>
  <view slot="thead" class="table">
    <view class="tr" style="box-sizing: border-box;">
      <view class="th" style="width:100px;box-sizing: border-box;">th</view>
      <view class="th" style="width:200px;box-sizing: border-box;">th</view>
      <view class="th" style="width:300px;box-sizing: border-box;">th</view>
    </view>
  </view>
  <view slot="tbody" class="table">
    <view class="tr" style="box-sizing: border-box;">
      <view class="td" style="width:100px;box-sizing: border-box;">td</view>
      <view class="td" style="width:200px;box-sizing: border-box;">td</view>
      <view class="td" style="width:300px;box-sizing: border-box;">td</view>
    </view>
  </view>
</cf-table>
Description
小程序
Readme 1.8 MiB
Languages
TypeScript 84.9%
JavaScript 15.1%