|
@@ -3,7 +3,7 @@
|
|
<view class="content">
|
|
<view class="content">
|
|
<scroll-view scroll-y="true" :show-scrollbar="false" :scroll-top="scroll_top" style="top: 0%;width: 80vw; height:65%;position: absolute;">
|
|
<scroll-view scroll-y="true" :show-scrollbar="false" :scroll-top="scroll_top" style="top: 0%;width: 80vw; height:65%;position: absolute;">
|
|
<view class="scroll-view-text">
|
|
<view class="scroll-view-text">
|
|
- <view style="margin-left: 13%; display: flex; align-items: center;justify-content: center;width: 100%; user-select: text;" v-for="(msgIndex,index) in recvMsgQueue ">
|
|
|
|
|
|
+ <view style="margin-left: 13%; display: flex; align-items: center;justify-content: center;width: 100%; user-select: text;" v-for="(msgIndex,index) in recvMsgQueue " :key="index">
|
|
<!-- ai 的消息结构体 -->
|
|
<!-- ai 的消息结构体 -->
|
|
<view v-if="isAItell(recvMsgQueue[index].who_msg)" style="width: 100%;height: 100%;margin-bottom: 1%;">
|
|
<view v-if="isAItell(recvMsgQueue[index].who_msg)" style="width: 100%;height: 100%;margin-bottom: 1%;">
|
|
<text style=" font-size: 10rpx;color: #B34FFF;font-size: 10rpx;margin-left: 2%;background: linear-gradient(90deg, #24BF74 10%, #FAEE07 90%);-webkit-background-clip: text;-webkit-text-fill-color: transparent;">
|
|
<text style=" font-size: 10rpx;color: #B34FFF;font-size: 10rpx;margin-left: 2%;background: linear-gradient(90deg, #24BF74 10%, #FAEE07 90%);-webkit-background-clip: text;-webkit-text-fill-color: transparent;">
|
|
@@ -119,7 +119,7 @@
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<scroll-view scroll-y="true" style="height:500upx;">
|
|
<scroll-view scroll-y="true" style="height:500upx;">
|
|
- <view @click="selectImg(import_list[j])" style="display: flex;align-items: center;justify-content: center;" v-for="(itemx,j) in import_list">
|
|
|
|
|
|
+ <view @click="selectImg(import_list[j])" style="display: flex;align-items: center;justify-content: center;" v-for="(itemx,j) in import_list" :key="j">
|
|
<image style="width: 150upx;height: 150upx;margin-top: 5%;" :src="import_list[j]"></image>
|
|
<image style="width: 150upx;height: 150upx;margin-top: 5%;" :src="import_list[j]"></image>
|
|
</view>
|
|
</view>
|
|
|
|
|