Showing
1 changed file
with
5 additions
and
4 deletions
| ... | ... | @@ -17,8 +17,9 @@ |
| 17 | 17 | <view class="card" @click.stop="onCardClick(item)"> |
| 18 | 18 | <view class="card-header"> |
| 19 | 19 | <text class="title omit2">{{ item.orderingUnitName }}</text> |
| 20 | - <text v-if="item.examineStatus" :class="['status', `status_${item.examineStatus}`]">{{ filterStatus(item.examineStatus) | |
| 21 | - }}</text> | |
| 20 | + <text v-if="item.examineStatus" :class="['status', `status_${item.examineStatus}`]">{{ | |
| 21 | + filterStatus(item.examineStatus) | |
| 22 | + }}</text> | |
| 22 | 23 | </view> |
| 23 | 24 | <view class="info-row"><text>订单编号</text><text>{{ item.orderNo }}</text></view> |
| 24 | 25 | <view class="info-row"><text>生产厂</text><text>{{ item.workshopName }}</text></view> |
| ... | ... | @@ -289,12 +290,12 @@ export default { |
| 289 | 290 | } |
| 290 | 291 | |
| 291 | 292 | text { |
| 292 | - width: 60%; | |
| 293 | + width: 50%; | |
| 293 | 294 | line-height: 32rpx; |
| 295 | + word-wrap: break-word; | |
| 294 | 296 | |
| 295 | 297 | &:last-child { |
| 296 | 298 | color: rgba(0, 0, 0, 0.9); |
| 297 | - width: 40%; | |
| 298 | 299 | } |
| 299 | 300 | } |
| 300 | 301 | } | ... | ... |