| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <view class="info-container">
- <view class="col" v-if="planType == '3'">
- <text class="label">报修记录编码</text>
- <text class="desc">{{item.repairsCode}}</text>
- </view>
- <view class="col">
- <text class="label">设备型号</text>
- <text class="desc">{{item.equiModel}}</text>
- </view>
- <view class="col">
- <text class="label">设备位置</text>
- <text class="desc">{{item.equiLocation}}</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- props:{
- item:{
- type: Object,
- default:() => ({})
- },
- planType: String
- },
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .info-container{
- padding: 0 20rpx;
- .col{
- border-bottom: 1rpx dashed #7d7d7d;
- padding: 10rpx 0;
- display: flex;
- .label{
- width: 160rpx;
- text-align: right;
- margin-right: 28rpx;
- color:#333;
- font-weight: bold;
- }
- .desc{
- flex:1
- }
- }
- }
- </style>
|