feat: add voice transcription feedback workflow
This commit is contained in:
@@ -12,12 +12,12 @@
|
||||
</view>
|
||||
|
||||
<view class="feedback-form surface">
|
||||
<picker class="feedback-field" mode="selector" range="{{profileOptions}}" value="{{selectedProfileIndex}}" disabled="{{loading}}" bindchange="onProfileChange">
|
||||
<picker class="feedback-field" mode="selector" range="{{profileOptions}}" value="{{selectedProfileIndex}}" disabled="{{loading || recording || voiceBusy}}" bindchange="onProfileChange">
|
||||
<text class="form-label">学生档案</text>
|
||||
<text class="form-value">{{loading ? '正在加载...' : profileOptions[selectedProfileIndex]}}</text>
|
||||
</picker>
|
||||
|
||||
<picker class="feedback-field" mode="date" value="{{draft.feedbackDate}}" bindchange="onDateChange">
|
||||
<picker class="feedback-field" mode="date" value="{{draft.feedbackDate}}" disabled="{{recording || voiceBusy}}" bindchange="onDateChange">
|
||||
<text class="form-label">反馈日期</text>
|
||||
<text class="form-value">{{draft.feedbackDate}}</text>
|
||||
</picker>
|
||||
@@ -31,12 +31,30 @@
|
||||
class="feedback-textarea"
|
||||
value="{{draft.content}}"
|
||||
maxlength="2000"
|
||||
disabled="{{recording || voiceBusy}}"
|
||||
placeholder="记录课堂完成情况、进步与后续建议"
|
||||
bindinput="onContentInput"
|
||||
/>
|
||||
|
||||
<view class="voice-input-row">
|
||||
<button
|
||||
class="voice-button {{recording ? 'voice-button-recording' : ''}}"
|
||||
disabled="{{saving || voiceBusy}}"
|
||||
bindtap="toggleRecording"
|
||||
aria-label="{{recording ? '结束录音' : '开始录音'}}"
|
||||
>
|
||||
<text class="voice-button-icon">{{recording ? '■' : '●'}}</text>
|
||||
<text>{{recording ? '结束录音' : '语音录入'}}</text>
|
||||
</button>
|
||||
<view class="voice-state {{voiceActionable ? 'voice-state-actionable' : ''}}" bindtap="openVoiceDetails">
|
||||
<text class="voice-status">{{voiceStatus}}</text>
|
||||
<text wx:if="{{recording}}" class="recording-time">{{recordingTime}}</text>
|
||||
<text wx:elif="{{voiceActionable}}" class="voice-state-arrow">›</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<button class="save-feedback primary-button" loading="{{saving}}" disabled="{{saving}}" bindtap="saveFeedback">保存反馈</button>
|
||||
<button class="save-feedback primary-button" loading="{{saving || generating}}" disabled="{{saving || generating || recording || voiceBusy || (session && session.processingSegmentCount > 0)}}" bindtap="saveFeedback">{{primaryActionText}}</button>
|
||||
</view>
|
||||
|
||||
<view wx:if="{{!loading && profiles.length === 0}}" class="profiles-hint">
|
||||
|
||||
Reference in New Issue
Block a user