feat:分享链接的问题

This commit is contained in:
2026-08-31 16:14:31 +08:00
parent 364b2b32f2
commit e9f07e8ede
5 changed files with 132 additions and 17 deletions
+22 -3
View File
@@ -41,9 +41,7 @@
@click="jumpInfo(pItem)"></up-image>
<view class="content_info">
<view class="shopping_content_info_title" @click="jumpInfo(pItem)">{{ pItem.name }}</view>
<view class="content_info_description">
{{ pItem.goodsSpece }}
</view>
<view class="content_info_description">{{ pItem.goodsSpece }}</view>
<view class="shopping_info_amount">
<view>
<view style="color: #7934f6">
@@ -530,6 +528,27 @@ export default {
color: #272727;
}
.content_info_description {
font-size: 24rpx;
color: #999999;
margin-top: 6rpx;
overflow: hidden;
text-overflow: ellipsis;
/* #ifndef APP-NVUE */
display: -webkit-box;
/* autoprefixer: off */
-webkit-box-orient: vertical;
/* autoprefixer: on */
-webkit-line-clamp: 2;
line-clamp: 2;
box-orient: vertical;
/* #endif */
/* #ifdef APP-NVUE */
lines: 2;
/* #endif */
word-break: break-all;
}
.shopping_info_amount {
display: flex;
justify-content: space-between;