|
@@ -10,7 +10,16 @@
|
|
|
:key="key">
|
|
|
<view class="uni-media-list">
|
|
|
<view class="uni-media-list-body">
|
|
|
+
|
|
|
<view class="uni-media-list-text-top">
|
|
|
+ <view class="tit-text">负责人:</view>
|
|
|
+ <view class="normal-text">{{value.constructUser}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="uni-media-list-text-top">
|
|
|
+ <view class="tit-text">负责人联系电话:</view>
|
|
|
+ <view class="normal-text">{{value.constructPhone}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="uni-media-list-text-top" v-if="!isEmpty(value.constructTime)">
|
|
|
<view class="tit-text">施工时间:</view>
|
|
|
<view class="normal-text">{{value.constructTime}}</view>
|
|
|
</view>
|
|
@@ -26,14 +35,6 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="uni-media-list-text-top">
|
|
|
- <view class="tit-text">负责人:</view>
|
|
|
- <view class="normal-text">{{value.constructUser}}</view>
|
|
|
- </view>
|
|
|
- <view class="uni-media-list-text-top">
|
|
|
- <view class="tit-text">负责人联系电话:</view>
|
|
|
- <view class="normal-text">{{value.constructPhone}}</view>
|
|
|
- </view>
|
|
|
|
|
|
<view class="uni-media-list-text-top-no" v-if="type==='pe'">
|
|
|
<!-- 开孔照片 -->
|
|
@@ -441,6 +442,9 @@
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
|
+ isEmpty(str) {
|
|
|
+ return (!str || 0 === str.length);
|
|
|
+ },
|
|
|
showPhoto(index, list) {
|
|
|
let newArr = [];
|
|
|
list.forEach((item, index) => {
|
|
@@ -459,7 +463,6 @@
|
|
|
var selectData = this.data;
|
|
|
this.title = this.titleLabel;
|
|
|
this.type = this.titleType;
|
|
|
- debugger
|
|
|
this.historyList = selectData.zEngineeringNodeBo.zEngineeringInfoBoList;
|
|
|
},
|
|
|
// 显示分享
|
|
@@ -473,7 +476,6 @@
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
-
|
|
|
<style lang="scss">
|
|
|
.uni-media-list-body {
|
|
|
border: 1px solid #eee;
|
|
@@ -493,8 +495,6 @@
|
|
|
margin-right: 20rpx;
|
|
|
}
|
|
|
|
|
|
- .normal-text {}
|
|
|
-
|
|
|
.cz-style {
|
|
|
background: #e8f4f9;
|
|
|
margin: 20rpx;
|
|
@@ -560,29 +560,9 @@
|
|
|
width: 100%;
|
|
|
height: 30px;
|
|
|
display: flex;
|
|
|
- justify-content: left;
|
|
|
- margin: 30rpx 35rpx;
|
|
|
+ justify-content: center;
|
|
|
+ margin: 30rpx 0;
|
|
|
align-items: center;
|
|
|
-
|
|
|
- // &::after {
|
|
|
- // content: '';
|
|
|
- // width: 240rpx;
|
|
|
- // height: 0rpx;
|
|
|
- // border-top: 1px solid #E4E7ED;
|
|
|
- // -webkit-transform: scaleY(0.5);
|
|
|
- // transform: scaleY(0.5);
|
|
|
- // margin-left: 30rpx;
|
|
|
- // }
|
|
|
-
|
|
|
- // &::before {
|
|
|
- // content: '';
|
|
|
- // width: 240rpx;
|
|
|
- // height: 0rpx;
|
|
|
- // border-top: 1px solid #E4E7ED;
|
|
|
- // -webkit-transform: scaleY(0.5);
|
|
|
- // transform: scaleY(0.5);
|
|
|
- // margin-right: 30rpx;
|
|
|
- // }
|
|
|
}
|
|
|
|
|
|
.content {
|
|
@@ -621,6 +601,5 @@
|
|
|
border-top: 1rpx solid #E4E7ED;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
}
|
|
|
</style>
|