Compare commits
3 Commits
cf1f08fd54
...
c9587d2006
| Author | SHA1 | Date | |
|---|---|---|---|
| c9587d2006 | |||
| 40647ead83 | |||
| f73a92ec11 |
@@ -25,6 +25,9 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
max-width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-indicator {
|
.custom-indicator {
|
||||||
@@ -32,6 +35,9 @@
|
|||||||
background: rgba(0, 0, 0, 0.5);
|
background: rgba(0, 0, 0, 0.5);
|
||||||
border-radius: $uni-border-radius-50px;
|
border-radius: $uni-border-radius-50px;
|
||||||
padding: 0 6px 4px 8px;
|
padding: 0 6px 4px 8px;
|
||||||
|
flex: 0 0 auto;
|
||||||
|
flex-shrink: 0;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-indicator-text {
|
.custom-indicator-text {
|
||||||
@@ -43,7 +49,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.thumbnail-scroll {
|
.thumbnail-scroll {
|
||||||
flex: 1;
|
flex: 1 1 auto;
|
||||||
|
min-width: 0; // 允许在flex容器中收缩以适配剩余空间
|
||||||
|
overflow: auto; // 防止超出thumbnail-box的宽度
|
||||||
height: 100%;
|
height: 100%;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
@@ -71,7 +79,7 @@
|
|||||||
height: 36px;
|
height: 36px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border: 2px solid transparent;
|
border: 1px solid #171717;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<view class="w-full">
|
<view class="w-full">
|
||||||
<template v-if="toolCall.picture && toolCall.picture.length > 0">
|
<template v-if="toolCall.picture && toolCall.picture.length > 0">
|
||||||
<ModuleTitle :title="图片详情" />
|
<ModuleTitle :title="图片详情" />
|
||||||
<ImageSwiper :images="toolCall.picture" />
|
<ImageSwiper :images="toolCall.picture" thumbnailBottom="12px" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-if="toolCall.commodityList">
|
<template v-if="toolCall.commodityList">
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="card-text border-box">
|
<view class="card-text border-box">
|
||||||
<view class="color-171717 font-size-14 line-height-20">
|
<view class="color-171717 font-size-14 line-height-20 ellipsis-1">
|
||||||
{{ item.topic }}
|
{{ item.topic }}
|
||||||
</view>
|
</view>
|
||||||
<view class="font-size-11 color-99A0AE">
|
<view class="font-size-11 color-99A0AE">
|
||||||
|
|||||||
Reference in New Issue
Block a user