10.17下班提交

This commit is contained in:
zoujiandong
2025-10-17 17:54:03 +08:00
parent ea320f4e54
commit 4816054b96
11 changed files with 44 additions and 20 deletions
+18 -4
View File
@@ -131,19 +131,21 @@
<!-- 专长 -->
<view class="row" @click="onEditSpecialty">
<view class="label"><text>专长</text></view>
<view class="value with-arrow">
<view class="value with-arrow intro">
<text>{{ getSpecialtyText() }}</text>
<uni-icons type="right" size="18" color="#bbb" />
</view>
<uni-icons type="right" size="18" color="#bbb" />
</view>
<!-- 个人简介 -->
<view class="row" @click="onEdit('intro',form.intro)">
<view class="label"><text>个人简介</text></view>
<view class="value with-arrow">
<view class="value with-arrow intro">
<text>{{ form.intro || '暂无简介' }}</text>
<uni-icons type="right" size="18" color="#bbb" />
</view>
<uni-icons type="right" size="18" color="#bbb" />
</view>
</scroll-view>
@@ -815,8 +817,20 @@ const confirmSpecialties = () => {
color: #666;
font-size: 30rpx;
}
.intro{
flex: 1;
max-width:80%;
display: flex;
align-items: center;
justify-content: flex-end;
}
.with-arrow text {
margin-right: 14rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.value-avatar {
gap: 14rpx;