|
|
|
@ -86,7 +86,7 @@
|
|
|
|
|
v-model="content"
|
|
|
|
|
placeholder="粘贴你的辩论记录,AI将为你分析优缺点并提供改进建议"
|
|
|
|
|
auto-height
|
|
|
|
|
maxlength="5000"
|
|
|
|
|
maxlength="50000"
|
|
|
|
|
/>
|
|
|
|
|
<button class="send-button-embedded" @click="sendMessage()">
|
|
|
|
|
<image
|
|
|
|
@ -138,7 +138,7 @@ export default {
|
|
|
|
|
mounted() {
|
|
|
|
|
const pinia = this.$pinia;
|
|
|
|
|
const store = useDebateStore(pinia);
|
|
|
|
|
if(store.selectedDebate.content)this.content = store.selectedDebate.content;
|
|
|
|
|
if(store.selectedDebate)this.content = store.selectedDebate;
|
|
|
|
|
|
|
|
|
|
this.getHistoryList();
|
|
|
|
|
this.conversationId = useReviewStore().conversationId;
|
|
|
|
|