This commit is contained in:
2025-09-14 00:21:54 +08:00
commit d40b3bbd62
766 changed files with 36275 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<view class="container">
<showbox title="群聊组件 - 参数设置">
<view style="padding: 10px; background-color: #eee;">
<group-chat-card
groupIds="{{groupChatStr}}"
bindjoingroup="handleBindJoinGroup"
binderror="handleBindError"
type="{{arr[typeIndex]}}"
>
</group-chat-card>
</view>
</showbox>
<showbox title="参数设置区域,修改群组件配置">
<box class="box">
<view class="mb-8">
群聊id支持传多个用英文逗号分割失焦后生效
</view>
<view class="_ui-input">
<textarea
type="{{type}}"
placeholder="群聊id支持传多个用英文逗号分割"
value="{{groupChatList}}"
maxlength="-1"
auto-height
bindinput="bindInputGroupChatList"
bindblur="bindBlur"
></textarea>
</view>
</box>
<box class="box">
<view class="mb-8">
群聊 type支持传 card / cell
</view>
<view class="_ui-input">
<picker
bindchange="bindPickerChange"
value="{{typeIndex}}"
range="{{arr}}"
>
<view>当前选择: {{arr[typeIndex]}}</view>
</picker>
</view>
</box>
</showbox>
</view>