| | |
| | | <text>{{ repairReq.reqUserName }}</text> |
| | | </wd-cell> |
| | | <wd-cell title="紧急程度" title-width="200rpx"> |
| | | <wd-tag type="danger" v-if="repairReq.urgencyLevel === '1'">紧急</wd-tag> |
| | | <wd-tag type="warning" v-else-if="repairReq.urgencyLevel === '2'">一般</wd-tag> |
| | | <wd-tag type="danger" v-if="repairReq.urgencyLevel === '2'">紧急</wd-tag> |
| | | <wd-tag type="warning" v-else-if="repairReq.urgencyLevel === '1'">一般</wd-tag> |
| | | <wd-tag type="success" v-else-if="repairReq.urgencyLevel === '3'">普通</wd-tag> |
| | | </wd-cell> |
| | | </wd-cell-group> |
| | |
| | | <!-- 故障图片 --> |
| | | <wd-cell-group v-if="repairReq.faultPicture" custom-class="mt-2" title="故障图片" use-slot border> |
| | | <view class="image-box"> |
| | | <image |
| | | class="fault-image" |
| | | :src="repairReq.faultPicture" |
| | | <image |
| | | class="fault-image" |
| | | :src="repairReq.faultPicture" |
| | | mode="aspectFit" |
| | | @click="previewImage" |
| | | /> |
| | |
| | | |
| | | .description-box { |
| | | padding: 24rpx; |
| | | background-color: #f9f9f9; |
| | | border-radius: 8rpx; |
| | | margin: 16rpx; |
| | | color: #666666; |
| | | line-height: 1.6; |
| | | } |
| | |
| | | } |
| | | |
| | | .fault-image { |
| | | width: 80%; |
| | | height: 400rpx; |
| | | border-radius: 8rpx; |
| | | box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1); |
| | | } |
| | |
| | | color: #333333; |
| | | font-weight: 500; |
| | | } |
| | | </style> |
| | | </style> |