feat: 优化对话框
This commit is contained in:
parent
250a19e247
commit
ed925c5838
@ -105,10 +105,19 @@
|
|||||||
@keydown.enter="sendChatHandle($event)"
|
@keydown.enter="sendChatHandle($event)"
|
||||||
:disabled="loading"
|
:disabled="loading"
|
||||||
/>
|
/>
|
||||||
<div class="operate" v-loading="loading">
|
<div class="operate">
|
||||||
<el-button text class="sent-button" :disabled="isDisabledChart" @click="sendChatHandle">
|
<el-button
|
||||||
<img v-show="isDisabledChart" src="@/assets/icon_send.svg" alt="" />
|
text
|
||||||
<img v-show="!isDisabledChart" src="@/assets/icon_send_colorful.svg" alt="" />
|
class="sent-button"
|
||||||
|
:disabled="isDisabledChart || loading"
|
||||||
|
@click="sendChatHandle"
|
||||||
|
>
|
||||||
|
<img v-show="isDisabledChart || loading" src="@/assets/icon_send.svg" alt="" />
|
||||||
|
<img
|
||||||
|
v-show="!isDisabledChart && !loading"
|
||||||
|
src="@/assets/icon_send_colorful.svg"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user