|
@@ -3,7 +3,7 @@
|
3
|
3
|
<view class="page_tab">
|
4
|
4
|
<view class="page_tab_bar active">
|
5
|
5
|
<picker class="more_picker" @change="execFilter($event)" :value="index" :range="array" range-key="nameNum">
|
6
|
|
- <view class="more_picker_text">{{ array[index].name }}<text class="tab_num">( {{ array[index].total }} )</text></view>
|
|
6
|
+ <view class="more_picker_text">{{ array[index].name.slice(0, 15) }}<text v-if="array[index].name.length >= 15">...</text><text class="tab_num">( {{ array[index].total }} )</text></view>
|
7
|
7
|
<view class="more"></view>
|
8
|
8
|
</picker>
|
9
|
9
|
</view>
|
|
@@ -27,7 +27,7 @@
|
27
|
27
|
<view class="page_item_cont">
|
28
|
28
|
<view class="page_item_cont_T">
|
29
|
29
|
<view class="page_item_cont_title">
|
30
|
|
- <view> 检验项目 </view>
|
|
30
|
+ <view style="width: 10em;"> 检验项目 </view>
|
31
|
31
|
<view class="text_big">{{ item.specimenDesc || "无" }}</view>
|
32
|
32
|
</view>
|
33
|
33
|
<view class="page_item_cont_title">
|
|
@@ -118,7 +118,7 @@
|
118
|
118
|
let array = [{ id: 0, name: '全部', total: '', nameNum: ''}];
|
119
|
119
|
array[0].total = res.total;
|
120
|
120
|
array[0].nameNum = `全部(${res.total})`;
|
121
|
|
- this.array = array.concat(res.data.map( v=> ({id: --this.id, name: v[0] || '', nameNum: `${v[0] || ''}(${v[1]})`, total: v[1]})));
|
|
121
|
+ this.array = array.concat(res.data.map( v=> ({id: --this.id, name: v[0] || '', nameNum: `${v[0] ? v[0].slice(0, 15) + (v[0].length >= 15 ? '...' : '') : ''}(${v[1]})`, total: v[1]})));
|
122
|
122
|
});
|
123
|
123
|
},
|
124
|
124
|
// 获取标本列表
|
|
@@ -457,6 +457,9 @@
|
457
|
457
|
font-size: 32rpx;
|
458
|
458
|
font-weight: 700;
|
459
|
459
|
margin-top: 10rpx;
|
|
460
|
+ text-align: right;
|
|
461
|
+ word-break: break-all;
|
|
462
|
+ line-height: 1.25;
|
460
|
463
|
|
461
|
464
|
p {
|
462
|
465
|
font-weight: 700;
|