feat: add quick actions bar UI to template

This commit is contained in:
Your Name 2026-04-01 11:34:04 +08:00
parent 7a86325bd0
commit 707c585aa4

View File

@ -171,6 +171,18 @@
</view> </view>
</view> </view>
<!-- 快捷按钮栏 -->
<view class="quick-actions-bar">
<view
v-for="(action, index) in quickActions"
:key="index"
class="quick-action-btn"
@click="handleQuickAction(action)"
>
<text>{{ action.label }}</text>
</view>
</view>
<view class="input-container"> <view class="input-container">
<input <input
v-model="inputMessage" v-model="inputMessage"