注册 添加成员

This commit is contained in:
shidongli 2023-11-15 09:17:59 +08:00
parent 65ea5f116b
commit e5d514d12f
2 changed files with 6 additions and 6 deletions

View File

@ -55,7 +55,7 @@
所属区域
<view class="select" @tap='showPicker'>
<text v-if="!address">请选择所属区域</text>
<text v-else class="testitem">{{address}}</text>
<text v-else class="testitem" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">{{address}}</text>
<!-- <image src="../../static/huijiantou.png" mode=""></image> -->
</view>
</view>
@ -74,7 +74,7 @@
所在位置
<view class="selectdata" @tap='getAddress'>
<text v-if="query.locationName ==''">请选择所在位置</text>
<text class="testitem">{{query.locationName}}</text>
<text class="testitem" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">{{query.locationName}}</text>
</view>
</view>
<view class="name">
@ -814,9 +814,9 @@
border-radius: 5rpx;
display: flex;
position: relative;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
// white-space: nowrap;
// overflow: hidden;
// text-overflow: ellipsis;
.testitem {

View File

@ -102,7 +102,7 @@
所属区域
<view class="select" @tap='showPicker'>
<text v-if="!addressinfo">请选择所属区域</text>
<text v-else class="testitem">{{addressinfo}}</text>
<text v-else class="testitem" style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">{{addressinfo}}</text>
<!-- <image src="../../static/huijiantou.png" mode=""></image> -->
</view>
</view>