parent
							
								
									19f3cb1dbb
								
							
						
					
					
						commit
						9b4bf428c1
					
				|  | @ -218,40 +218,57 @@ | |||
| 						<text>{{ pd.MONITOR_USER_MEASURES}}</text> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 
 | ||||
| 				<view v-if="pd.CONFESS_USER_SIGNER_PATH"> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">安全交底人</view> | ||||
| 							{{pd.CONFESS_USER_NAME}} {{pd.CONFESS_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.CONFESS_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.CONFESS_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 				<view v-if="pd.ACCEPT_CONFESS_USER_SIGNER_PATH"> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">接受交底人</view> | ||||
| 							{{pd.ACCEPT_CONFESS_USER_NAME}} {{pd.ACCEPT_CONFESS_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.ACCEPT_CONFESS_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.ACCEPT_CONFESS_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 				<view v-if="pd.GUARDIAN_USER_SIGNER_PATH"> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">监护人</view> | ||||
| 							{{pd.GUARDIAN_USER_NAME}} {{pd.GUARDIAN_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.GUARDIAN_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.GUARDIAN_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
|         <view v-if="pd.SAFETY_SIGNATURE"> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">安全项检查人</view> | ||||
|               {{pd.SAFETY_USER_NAME}}<text>{{pd.SAFETY_SIGNATURE_TIME}}</text> | ||||
|             </view> | ||||
|             <view class="imgs" style="display: flex;justify-content: space-between;align-items: flex-end;padding: 20upx 50upx;"> | ||||
|               <image :src="baseImgPath+pd.SAFETY_SIGNATURE" @click="ViewShowImage(baseImgPath+v.SAFETY_SIGNATURE)" | ||||
|                      mode="" style="width: 200upx;height: 200upx;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.confessList && pd.confessList.length > 0 && pd.confessList.length !== pd.confessList.filter(item => item.APPROVAL_STATUS === '0').length"> | ||||
|           <view v-for="(item,index) in pd.confessList" > | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group"> | ||||
|                 <view class="title">安全交底人</view> | ||||
|                 {{ item.CONFESS_USER_NAME }} {{ item.APPROVAL_SIGNATURE_TIME }} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;"> | ||||
|                 <image :src="baseImgPath + item.APPROVAL_SIGNATURE" mode="aspectFill" | ||||
|                        @click="previewImage(baseImgPath + item.APPROVAL_SIGNATURE)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.acceptConfessList && pd.acceptConfessList.length > 0 && pd.acceptConfessList.length !== pd.acceptConfessList.filter(item => item.APPROVAL_STATUS === '0').length"> | ||||
|           <view v-for="(item,index) in pd.acceptConfessList" > | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group"> | ||||
|                 <view class="title">接受交底人</view> | ||||
|                 {{ item.ACCEPT_CONFESS_USER_NAME }} {{ item.APPROVAL_SIGNATURE_TIME }} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;"> | ||||
|                 <image :src="baseImgPath + item.ACCEPT_CONFESS_USER_SIGNER_PATH" mode="aspectFill" | ||||
|                        @click="previewImage(baseImgPath + item.ACCEPT_CONFESS_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.GUARDIAN_USER_SIGNER_PATH"> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">监护人</view> | ||||
|               {{pd.GUARDIAN_USER_NAME}} {{pd.GUARDIAN_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.GUARDIAN_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.GUARDIAN_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 			</view> | ||||
| 
 | ||||
| 			<view class="wui-form-list" v-if="!forbidEdit"> | ||||
|  | @ -470,6 +487,9 @@ | |||
|             <view class="title">项目主管部门负责人</view> | ||||
|             {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|           </view> | ||||
|           <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|             <image :src="baseImgPath + pd.BELONGING_SIGNATURE" mode="aspectFill" @click="previewImage(baseImgPath + pd.BELONGING_SIGNATURE)" style="height: 100%;"></image> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|  | @ -565,6 +585,30 @@ | |||
| 							<image :src="baseImgPath + pd.ACCEPT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.ACCEPT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">动火是否完成</view> | ||||
|               <view> | ||||
|                 已完成 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">作业现场是否清理</view> | ||||
|               <view> | ||||
|                 已清理 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">是否存在遗留火种</view> | ||||
|               <view> | ||||
|                 无遗留火种 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
| 			</view> | ||||
| 		</view> | ||||
|  |  | |||
|  | @ -154,6 +154,18 @@ | |||
| 							<text>{{ pd.CONFIRM_USER_MEASURES}}</text> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view v-if="pd.SAFETY_SIGNATURE"> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">安全项检查人</view> | ||||
|                 {{pd.SAFETY_USER_NAME}}<text>{{pd.SAFETY_SIGNATURE_TIME}}</text> | ||||
|               </view> | ||||
|               <view class="imgs" style="display: flex;justify-content: space-between;align-items: flex-end;padding: 20upx 50upx;"> | ||||
|                 <image :src="baseImgPath+pd.SAFETY_SIGNATURE" @click="ViewShowImage(baseImgPath+v.SAFETY_SIGNATURE)" | ||||
|                        mode="" style="width: 200upx;height: 200upx;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
| 				<view class="wui-form-list"> | ||||
| 					<view v-if="pd.GUARDIAN_USER_SIGNER_PATH"> | ||||
|  | @ -195,10 +207,10 @@ | |||
| 				</view> | ||||
| 				<view class="wui-form-list"> | ||||
| 					<view v-if="pd.CONFIRM_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">作业负责人意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.CONFIRM_CONTENT"></textarea> | ||||
| 						</view> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">作业负责人意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedConfirmContent"></textarea> | ||||
|             </view> | ||||
| 						<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 							<view class="cu-form-group" > | ||||
| 								<view class="title">作业负责人</view> | ||||
|  | @ -209,66 +221,94 @@ | |||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 					<view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">属地监管单位意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.LEADER_CONTENT"></textarea> | ||||
| 						</view> | ||||
| 						<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 							<view class="cu-form-group" > | ||||
| 								<view class="title">属地监管单位负责人</view> | ||||
| 								{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
| 							</view> | ||||
| 							<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 								<image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 					<view v-if="pd.AUDIT_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">安全管理部门意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.AUDIT_CONTENT"></textarea> | ||||
| 						</view> | ||||
| 						<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 							<view class="cu-form-group" > | ||||
| 								<view class="title">安全管理部门负责人</view> | ||||
| 								{{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}} | ||||
| 							</view> | ||||
| 							<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 								<image :src="baseImgPath + pd.AUDIT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.AUDIT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 					<view v-if="pd.APPROVE_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">动火审批人意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.APPROVE_CONTENT"></textarea> | ||||
| 						</view> | ||||
| 						<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 							<view class="cu-form-group" > | ||||
| 								<view class="title">动火审批人</view> | ||||
| 								{{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}} | ||||
| 							</view> | ||||
| 							<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 								<image :src="baseImgPath + pd.APPROVE_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.APPROVE_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 					<view v-if="pd.MONITOR_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">动火前验票负责人意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.MONITOR_CONTENT"></textarea> | ||||
| 						</view> | ||||
| 						<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 							<view class="cu-form-group" > | ||||
| 								<view class="title">动火前验票负责人</view> | ||||
| 								{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}} | ||||
| 							</view> | ||||
| 							<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 								<image :src="baseImgPath + pd.MONITOR_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.MONITOR_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view v-if="pd.EXAMINE_APPROVAL_SIGNATURE"> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-textarea" style="border: none;"> | ||||
|                 <view class="cu-form-title">项目主管部门负责意见</view> | ||||
|                 <textarea maxlength="255" disabled="disabled" v-model="formattedExamineApprovalOpinions"></textarea> | ||||
|               </view> | ||||
|             </view> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">项目主管部门负责人</view> | ||||
|               {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|             </view> | ||||
|           </view> | ||||
|           <view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">属地监管单位意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedLeaderContent"></textarea> | ||||
|             </view> | ||||
|             <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|             <!--					<view class="title">动火点属地监管单位负责人</view>--> | ||||
|             <!--					{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}}--> | ||||
|             <!--				</view>--> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">属地监管单位负责人</view> | ||||
|                 {{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|                 <image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view v-if="pd.AUDIT_USER_SIGNER_PATH"> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">安全管理部门意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedAuditContent"></textarea> | ||||
|             </view> | ||||
|             <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|             <!--					<view class="title">安全管理部门负责人</view>--> | ||||
|             <!--					{{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}}--> | ||||
|             <!--				</view>--> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">安全管理部门负责人</view> | ||||
|                 {{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|                 <image :src="baseImgPath + pd.AUDIT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.AUDIT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view v-if="pd.APPROVE_USER_SIGNER_PATH"> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">动火审批人意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedApproveContent"></textarea> | ||||
|             </view> | ||||
|             <!--				<view class="cu-form-group" v-if="forbidEdit" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|             <!--					<view class="title">审批人</view>--> | ||||
|             <!--					{{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}}--> | ||||
|             <!--				</view>--> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">动火审批人</view> | ||||
|                 {{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|                 <image :src="baseImgPath + pd.APPROVE_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.APPROVE_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view v-if="pd.MONITOR_USER_SIGNER_PATH"> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">动火前验票负责人意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedMonitorContent"></textarea> | ||||
|             </view> | ||||
|             <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|             <!--					<view class="title">动火前验票负责人</view>--> | ||||
|             <!--					{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}}--> | ||||
|             <!--				</view>--> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">动火前验票负责人</view> | ||||
|                 {{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|                 <image :src="baseImgPath + pd.MONITOR_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.MONITOR_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 					<view v-if="pd.ACCEPT_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">完工验收</view> | ||||
|  | @ -284,6 +324,30 @@ | |||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">动火是否完成</view> | ||||
|               <view> | ||||
|                 已完成 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">作业现场是否清理</view> | ||||
|               <view> | ||||
|                 已清理 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">是否存在遗留火种</view> | ||||
|               <view> | ||||
|                 无遗留火种 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 					<view class="wui-sign" v-if="!pd.ACCEPT_CONFESS_USER_SIGNER_PATH"> | ||||
| 						<view class="title">接受交底人</view> | ||||
| 						<view> | ||||
|  | @ -403,6 +467,26 @@ | |||
| 				imgList:[], | ||||
| 			} | ||||
| 		}, | ||||
|     computed: { | ||||
|       formattedConfirmContent() { | ||||
|         return this.pd.CONFIRM_CONTENT && this.pd.CONFIRM_CONTENT !== '无' ? this.pd.CONFIRM_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedExamineApprovalOpinions() { | ||||
|         return this.pd.EXAMINE_APPROVAL_OPINIONS && this.pd.EXAMINE_APPROVAL_OPINIONS !== '' ? this.pd.EXAMINE_APPROVAL_OPINIONS : '同意'; | ||||
|       }, | ||||
|       formattedLeaderContent() { | ||||
|         return this.pd.LEADER_CONTENT && this.pd.LEADER_CONTENT !== '无' ? this.pd.LEADER_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedAuditContent() { | ||||
|         return this.pd.AUDIT_CONTENT && this.pd.AUDIT_CONTENT !== '无' ? this.pd.AUDIT_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedApproveContent() { | ||||
|         return this.pd.APPROVE_CONTENT && this.pd.APPROVE_CONTENT !== '无' ? this.pd.APPROVE_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedMonitorContent() { | ||||
|         return this.pd.MONITOR_CONTENT && this.pd.MONITOR_CONTENT !== '无' ? this.pd.MONITOR_CONTENT : '同意'; | ||||
|       } | ||||
|     }, | ||||
| 		onLoad(event){ | ||||
| 			this.todayDate =  formatDate(new Date(), 'yyyy-MM-dd hh:mm'); | ||||
| 			this.pd.HOTWORK_ID = event.HOTWORK_ID; | ||||
|  | @ -466,6 +550,14 @@ | |||
| 								duration: 2000 | ||||
| 							}); | ||||
| 						} | ||||
|             if (_this.pd.safetyList && _this.pd.safetyList.length > 0) { | ||||
|               for (let i = 0; i < _this.pd.safetyList.length; i++) { | ||||
|                 if (_this.pd.safetyList[i].APPROVAL_SIGNATURE) { | ||||
|                   _this.pd.SAFETY_SIGNATURE = _this.pd.safetyList[i].APPROVAL_SIGNATURE; | ||||
|                   break; | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
| 					} | ||||
| 				}); | ||||
| 			}, | ||||
|  |  | |||
|  | @ -219,11 +219,11 @@ | |||
| 					</view> | ||||
| 				</view> | ||||
| 
 | ||||
|         <view v-if="pd.SAFETY_USER_NAME"> | ||||
|         <view v-if="pd.SAFETY_SIGNATURE"> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">安全项检查人</view> | ||||
|               {{pd.SAFETY_USER_NAME}}{{pd.SAFETY_SIGNATURE_TIME}} | ||||
|               {{pd.SAFETY_USER_NAME}}<text>{{pd.SAFETY_SIGNATURE_TIME}}</text> | ||||
|             </view> | ||||
|             <view class="imgs" style="display: flex;justify-content: space-between;align-items: flex-end;padding: 20upx 50upx;"> | ||||
|               <image :src="baseImgPath+pd.SAFETY_SIGNATURE" @click="ViewShowImage(baseImgPath+v.SAFETY_SIGNATURE)" | ||||
|  | @ -480,6 +480,9 @@ | |||
|             <view class="title">项目主管部门负责人</view> | ||||
|             {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|           </view> | ||||
|           <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|             <image :src="baseImgPath + pd.BELONGING_SIGNATURE" mode="aspectFill" @click="previewImage(baseImgPath + pd.BELONGING_SIGNATURE)" style="height: 100%;"></image> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<!--				<view class="cu-form-textarea" style="border: none;">--> | ||||
| 				<!--					<view class="cu-form-title">监护人意见</view>--> | ||||
|  | @ -583,6 +586,30 @@ | |||
| 							<image :src="baseImgPath + pd.ACCEPT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.ACCEPT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">动火是否完成</view> | ||||
|               <view> | ||||
|                 已完成 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">作业现场是否清理</view> | ||||
|               <view> | ||||
|                 已清理 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">是否存在遗留火种</view> | ||||
|               <view> | ||||
|                 无遗留火种 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
| 			</view> | ||||
| 		</view> | ||||
|  |  | |||
|  | @ -487,6 +487,9 @@ | |||
|             <view class="title">项目主管部门负责人</view> | ||||
|             {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|           </view> | ||||
|           <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|             <image :src="baseImgPath + pd.BELONGING_SIGNATURE" mode="aspectFill" @click="previewImage(baseImgPath + pd.BELONGING_SIGNATURE)" style="height: 100%;"></image> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|  | @ -502,6 +505,9 @@ | |||
|               <view class="title">属地监管单位负责人</view> | ||||
|               {{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<view v-if="pd.AUDIT_USER_SIGNER_PATH"> | ||||
|  | @ -579,6 +585,30 @@ | |||
| 							<image :src="baseImgPath + pd.ACCEPT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.ACCEPT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">动火是否完成</view> | ||||
|               <view> | ||||
|                 已完成 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">作业现场是否清理</view> | ||||
|               <view> | ||||
|                 已清理 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">是否存在遗留火种</view> | ||||
|               <view> | ||||
|                 无遗留火种 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
| 			</view> | ||||
| 		</view> | ||||
|  |  | |||
|  | @ -197,7 +197,18 @@ | |||
| 							<text>{{ pd.CONFIRM_USER_MEASURES}}</text> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 
 | ||||
|           <view v-if="pd.SAFETY_SIGNATURE"> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">安全项检查人</view> | ||||
|                 {{pd.SAFETY_USER_NAME}}<text>{{pd.SAFETY_SIGNATURE_TIME}}</text> | ||||
|               </view> | ||||
|               <view class="imgs" style="display: flex;justify-content: space-between;align-items: flex-end;padding: 20upx 50upx;"> | ||||
|                 <image :src="baseImgPath+pd.SAFETY_SIGNATURE" @click="ViewShowImage(baseImgPath+v.SAFETY_SIGNATURE)" | ||||
|                        mode="" style="width: 200upx;height: 200upx;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
| 				<view class="wui-form-list"> | ||||
| 					<view v-if="pd.GUARDIAN_USER_SIGNER_PATH"> | ||||
|  | @ -254,10 +265,10 @@ | |||
| 				</view> | ||||
| 				<view class="wui-form-list"> | ||||
| 					<view v-if="pd.CONFIRM_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">作业负责人意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.CONFIRM_CONTENT"></textarea> | ||||
| 						</view> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">作业负责人意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedConfirmContent"></textarea> | ||||
|             </view> | ||||
| 						<!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
| 						<!--					<view class="title">作业负责人</view>--> | ||||
| 						<!--					{{pd.CONFIRM_USER_NAME}} {{pd.CONFIRM_USER_SIGNER_TIME}}--> | ||||
|  | @ -272,82 +283,94 @@ | |||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 					<view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">属地监管单位意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.LEADER_CONTENT"></textarea> | ||||
| 						</view> | ||||
| 						<!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
| 						<!--					<view class="title">动火点属地监管单位负责人</view>--> | ||||
| 						<!--					{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}}--> | ||||
| 						<!--				</view>--> | ||||
| 						<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 							<view class="cu-form-group" > | ||||
| 								<view class="title">属地监管单位负责人</view> | ||||
| 								{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
| 							</view> | ||||
| 							<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 								<image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 					<view v-if="pd.AUDIT_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">安全管理部门意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.AUDIT_CONTENT"></textarea> | ||||
| 						</view> | ||||
| 						<!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
| 						<!--					<view class="title">安全管理部门负责人</view>--> | ||||
| 						<!--					{{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}}--> | ||||
| 						<!--				</view>--> | ||||
| 						<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 							<view class="cu-form-group" > | ||||
| 								<view class="title">安全管理部门负责人</view> | ||||
| 								{{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}} | ||||
| 							</view> | ||||
| 							<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 								<image :src="baseImgPath + pd.AUDIT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.AUDIT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 					<view v-if="pd.APPROVE_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">动火审批人意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.APPROVE_CONTENT"></textarea> | ||||
| 						</view> | ||||
| 						<!--				<view class="cu-form-group" v-if="forbidEdit" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
| 						<!--					<view class="title">审批人</view>--> | ||||
| 						<!--					{{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}}--> | ||||
| 						<!--				</view>--> | ||||
| 						<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 							<view class="cu-form-group" > | ||||
| 								<view class="title">动火审批人</view> | ||||
| 								{{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}} | ||||
| 							</view> | ||||
| 							<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 								<image :src="baseImgPath + pd.APPROVE_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.APPROVE_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 					<view v-if="pd.MONITOR_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">动火前验票负责人意见</view> | ||||
| 							<textarea maxlength="255" disabled="disabled" v-model="pd.MONITOR_CONTENT"></textarea> | ||||
| 						</view> | ||||
| 						<!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
| 						<!--					<view class="title">动火前验票负责人</view>--> | ||||
| 						<!--					{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}}--> | ||||
| 						<!--				</view>--> | ||||
| 						<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 							<view class="cu-form-group" > | ||||
| 								<view class="title">动火前验票负责人</view> | ||||
| 								{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}} | ||||
| 							</view> | ||||
| 							<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 								<image :src="baseImgPath + pd.MONITOR_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.MONITOR_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view v-if="pd.EXAMINE_APPROVAL_SIGNATURE"> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-textarea" style="border: none;"> | ||||
|                 <view class="cu-form-title">项目主管部门负责意见</view> | ||||
|                 <textarea maxlength="255" disabled="disabled" v-model="formattedExamineApprovalOpinions"></textarea> | ||||
|               </view> | ||||
|             </view> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">项目主管部门负责人</view> | ||||
|               {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|             </view> | ||||
|           </view> | ||||
|           <view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">属地监管单位意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedLeaderContent"></textarea> | ||||
|             </view> | ||||
|             <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|             <!--					<view class="title">动火点属地监管单位负责人</view>--> | ||||
|             <!--					{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}}--> | ||||
|             <!--				</view>--> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">属地监管单位负责人</view> | ||||
|                 {{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|                 <image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view v-if="pd.AUDIT_USER_SIGNER_PATH"> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">安全管理部门意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedAuditContent"></textarea> | ||||
|             </view> | ||||
|             <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|             <!--					<view class="title">安全管理部门负责人</view>--> | ||||
|             <!--					{{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}}--> | ||||
|             <!--				</view>--> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">安全管理部门负责人</view> | ||||
|                 {{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|                 <image :src="baseImgPath + pd.AUDIT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.AUDIT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view v-if="pd.APPROVE_USER_SIGNER_PATH"> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">动火审批人意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedApproveContent"></textarea> | ||||
|             </view> | ||||
|             <!--				<view class="cu-form-group" v-if="forbidEdit" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|             <!--					<view class="title">审批人</view>--> | ||||
|             <!--					{{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}}--> | ||||
|             <!--				</view>--> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">动火审批人</view> | ||||
|                 {{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|                 <image :src="baseImgPath + pd.APPROVE_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.APPROVE_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view v-if="pd.MONITOR_USER_SIGNER_PATH"> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">动火前验票负责人意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedMonitorContent"></textarea> | ||||
|             </view> | ||||
|             <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|             <!--					<view class="title">动火前验票负责人</view>--> | ||||
|             <!--					{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}}--> | ||||
|             <!--				</view>--> | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group" > | ||||
|                 <view class="title">动火前验票负责人</view> | ||||
|                 {{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|                 <image :src="baseImgPath + pd.MONITOR_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.MONITOR_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 					<view v-if="pd.ACCEPT_USER_SIGNER_PATH"> | ||||
| 						<view class="cu-form-textarea" style="border: none;"> | ||||
| 							<view class="cu-form-title">完工验收</view> | ||||
|  | @ -367,6 +390,30 @@ | |||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">动火是否完成</view> | ||||
|               <view> | ||||
|                 已完成 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">作业现场是否清理</view> | ||||
|               <view> | ||||
|                 已清理 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">是否存在遗留火种</view> | ||||
|               <view> | ||||
|                 无遗留火种 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 
 | ||||
| 					<!--				<view class="cu-form-textarea" style="border-bottom: 1px dashed #eee;">--> | ||||
| 					<!--					<view class="cu-form-title">监护人意见</view>--> | ||||
|  | @ -485,6 +532,26 @@ | |||
| 				imgList:[], | ||||
| 			} | ||||
| 		}, | ||||
|     computed: { | ||||
|       formattedConfirmContent() { | ||||
|         return this.pd.CONFIRM_CONTENT && this.pd.CONFIRM_CONTENT !== '无' ? this.pd.CONFIRM_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedExamineApprovalOpinions() { | ||||
|         return this.pd.EXAMINE_APPROVAL_OPINIONS && this.pd.EXAMINE_APPROVAL_OPINIONS !== '' ? this.pd.EXAMINE_APPROVAL_OPINIONS : '同意'; | ||||
|       }, | ||||
|       formattedLeaderContent() { | ||||
|         return this.pd.LEADER_CONTENT && this.pd.LEADER_CONTENT !== '无' ? this.pd.LEADER_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedAuditContent() { | ||||
|         return this.pd.AUDIT_CONTENT && this.pd.AUDIT_CONTENT !== '无' ? this.pd.AUDIT_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedApproveContent() { | ||||
|         return this.pd.APPROVE_CONTENT && this.pd.APPROVE_CONTENT !== '无' ? this.pd.APPROVE_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedMonitorContent() { | ||||
|         return this.pd.MONITOR_CONTENT && this.pd.MONITOR_CONTENT !== '无' ? this.pd.MONITOR_CONTENT : '同意'; | ||||
|       } | ||||
|     }, | ||||
| 		onLoad(event){ | ||||
| 			this.todayDate =  formatDate(new Date(), 'yyyy-MM-dd hh:mm'); | ||||
| 			this.pd.HOTWORK_ID = event.HOTWORK_ID; | ||||
|  | @ -556,6 +623,14 @@ | |||
| 								duration: 2000 | ||||
| 							}); | ||||
| 						} | ||||
|             if (_this.pd.safetyList && _this.pd.safetyList.length > 0) { | ||||
|               for (let i = 0; i < _this.pd.safetyList.length; i++) { | ||||
|                 if (_this.pd.safetyList[i].APPROVAL_SIGNATURE) { | ||||
|                   _this.pd.SAFETY_SIGNATURE = _this.pd.safetyList[i].APPROVAL_SIGNATURE; | ||||
|                   break; | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
| 					} | ||||
| 				}); | ||||
| 			}, | ||||
|  |  | |||
|  | @ -476,6 +476,9 @@ | |||
|             <view class="title">项目主管部门负责人</view> | ||||
|             {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|           </view> | ||||
|           <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|             <image :src="baseImgPath + pd.BELONGING_SIGNATURE" mode="aspectFill" @click="previewImage(baseImgPath + pd.BELONGING_SIGNATURE)" style="height: 100%;"></image> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<!--				<view class="cu-form-textarea" style="border: none;">--> | ||||
| 				<!--					<view class="cu-form-title">监护人意见</view>--> | ||||
|  | @ -485,17 +488,21 @@ | |||
| 				<!--					<view class="title">监护人</view>--> | ||||
| 				<!--					{{pd.GUARDIAN_USER_NAME}} {{pd.GUARDIAN_USER_SIGNER_TIME}}--> | ||||
| 				<!--				</view>--> | ||||
|         <view v-if="pd.LEADER_CONTENT  && pd.LEADER_CONTENT !== '无'"> | ||||
|         <view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|             <view class="cu-form-title">属地监管单位意见</view> | ||||
|             <textarea maxlength="255" disabled="disabled" v-model="formattedLeaderContent"></textarea> | ||||
|           </view> | ||||
|           <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|           <!--					<view class="title">动火点属地监管单位负责人</view>--> | ||||
|           <!--					{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}}--> | ||||
|           <!--				</view>--> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">属地监管单位负责人</view> | ||||
|               {{ pd.LEADER_USER_NAME }} {{ pd.LEADER_USER_SIGNER_TIME }} | ||||
|               {{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx; margin-top: 0upx; margin-bottom: 20upx;"> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|  | @ -575,6 +582,30 @@ | |||
| 							<image :src="baseImgPath + pd.ACCEPT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.ACCEPT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">动火是否完成</view> | ||||
|               <view> | ||||
|                 已完成 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">作业现场是否清理</view> | ||||
|               <view> | ||||
|                 已清理 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">是否存在遗留火种</view> | ||||
|               <view> | ||||
|                 无遗留火种 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
| 			</view> | ||||
| 		</view> | ||||
|  |  | |||
|  | @ -173,7 +173,18 @@ | |||
| 						<text>{{ pd.CONFIRM_USER_MEASURES}}</text> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 
 | ||||
|         <view v-if="pd.SAFETY_SIGNATURE"> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">安全项检查人</view> | ||||
|               {{pd.SAFETY_USER_NAME}}<text>{{pd.SAFETY_SIGNATURE_TIME}}</text> | ||||
|             </view> | ||||
|             <view class="imgs" style="display: flex;justify-content: space-between;align-items: flex-end;padding: 20upx 50upx;"> | ||||
|               <image :src="baseImgPath+pd.SAFETY_SIGNATURE" @click="ViewShowImage(baseImgPath+v.SAFETY_SIGNATURE)" | ||||
|                      mode="" style="width: 200upx;height: 200upx;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 			</view> | ||||
| 			<view class="wui-form-list"> | ||||
| 				<view v-if="pd.GUARDIAN_USER_SIGNER_PATH"> | ||||
|  | @ -201,28 +212,27 @@ | |||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<view v-if="files.length > 0"> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">接受交底人</view> | ||||
| 							{{pd.ACCEPT_CONFESS_USER_NAME}} {{pd.ACCEPT_CONFESS_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view class="cu-item" v-for="(item,index) in files" :key="index" style="border-bottom: 1px solid  #e3e3e3"> | ||||
| 							<view class="imgs" style="display: flex;justify-content: space-between;align-items: flex-end;padding: 20upx 50upx;"> | ||||
| 								<image :src="baseImgPath+item.ACCEPT_CONFESS_USER_SIGNER_PATH" :data-index="index" @click="ViewShowImage(baseImgPath+item.ACCEPT_CONFESS_USER_SIGNER_PATH)" | ||||
| 									   mode="" style="width: 200upx;height: 200upx;"></image> | ||||
| 								<text>{{item.ACCEPT_CONFESS_USER_SIGNER_TIME}}</text> | ||||
| 							</view> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
|         <view v-if="pd.acceptConfessList && pd.acceptConfessList.length > 0 && pd.acceptConfessList.length !== pd.acceptConfessList.filter(item => item.APPROVAL_STATUS === '0').length"> | ||||
|           <view v-for="(item,index) in pd.acceptConfessList" > | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group"> | ||||
|                 <view class="title">接受交底人</view> | ||||
|                 {{ item.ACCEPT_CONFESS_USER_NAME }} {{ item.APPROVAL_SIGNATURE_TIME }} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;"> | ||||
|                 <image :src="baseImgPath + item.ACCEPT_CONFESS_USER_SIGNER_PATH" mode="aspectFill" | ||||
|                        @click="previewImage(baseImgPath + item.ACCEPT_CONFESS_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 			</view> | ||||
| 			<view class="wui-form-list"> | ||||
| 				<view v-if="pd.CONFIRM_USER_SIGNER_PATH"> | ||||
| 					<view class="cu-form-textarea" style="border: none;"> | ||||
| 						<view class="cu-form-title">作业负责人意见</view> | ||||
| 						<textarea maxlength="255" disabled="disabled" v-model="pd.CONFIRM_CONTENT"></textarea> | ||||
| 					</view> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|             <view class="cu-form-title">作业负责人意见</view> | ||||
|             <textarea maxlength="255" disabled="disabled" v-model="formattedConfirmContent"></textarea> | ||||
|           </view> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">作业负责人</view> | ||||
|  | @ -233,66 +243,94 @@ | |||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 				<view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
| 					<view class="cu-form-textarea" style="border: none;"> | ||||
| 						<view class="cu-form-title">属地监管单位意见</view> | ||||
| 						<textarea maxlength="255" disabled="disabled" v-model="pd.LEADER_CONTENT"></textarea> | ||||
| 					</view> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">属地监管单位负责人</view> | ||||
| 							{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 				<view v-if="pd.AUDIT_USER_SIGNER_PATH"> | ||||
| 					<view class="cu-form-textarea" style="border: none;"> | ||||
| 						<view class="cu-form-title">安全管理部门意见</view> | ||||
| 						<textarea maxlength="255" disabled="disabled" v-model="pd.AUDIT_CONTENT"></textarea> | ||||
| 					</view> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">安全管理部门负责人</view> | ||||
| 							{{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.AUDIT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.AUDIT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 				<view v-if="pd.APPROVE_USER_SIGNER_PATH"> | ||||
| 					<view class="cu-form-textarea" style="border: none;"> | ||||
| 						<view class="cu-form-title">动火审批人意见</view> | ||||
| 						<textarea maxlength="255" disabled="disabled" v-model="pd.APPROVE_CONTENT"></textarea> | ||||
| 					</view> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">动火审批人</view> | ||||
| 							{{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.APPROVE_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.APPROVE_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 				<view v-if="pd.MONITOR_USER_SIGNER_PATH"> | ||||
| 					<view class="cu-form-textarea" style="border: none;"> | ||||
| 						<view class="cu-form-title">动火前验票负责人意见</view> | ||||
| 						<textarea maxlength="255" disabled="disabled" v-model="pd.MONITOR_CONTENT"></textarea> | ||||
| 					</view> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">动火前验票负责人</view> | ||||
| 							{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.MONITOR_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.MONITOR_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
|         <view v-if="pd.EXAMINE_APPROVAL_SIGNATURE"> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-textarea" style="border: none;"> | ||||
|               <view class="cu-form-title">项目主管部门负责意见</view> | ||||
|               <textarea maxlength="255" disabled="disabled" v-model="formattedExamineApprovalOpinions"></textarea> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view class="cu-form-group" > | ||||
|             <view class="title">项目主管部门负责人</view> | ||||
|             {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|             <view class="cu-form-title">属地监管单位意见</view> | ||||
|             <textarea maxlength="255" disabled="disabled" v-model="formattedLeaderContent"></textarea> | ||||
|           </view> | ||||
|           <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|           <!--					<view class="title">动火点属地监管单位负责人</view>--> | ||||
|           <!--					{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}}--> | ||||
|           <!--				</view>--> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">属地监管单位负责人</view> | ||||
|               {{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.AUDIT_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|             <view class="cu-form-title">安全管理部门意见</view> | ||||
|             <textarea maxlength="255" disabled="disabled" v-model="formattedAuditContent"></textarea> | ||||
|           </view> | ||||
|           <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|           <!--					<view class="title">安全管理部门负责人</view>--> | ||||
|           <!--					{{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}}--> | ||||
|           <!--				</view>--> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">安全管理部门负责人</view> | ||||
|               {{pd.AUDIT_USER_NAME}} {{pd.AUDIT_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.AUDIT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.AUDIT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.APPROVE_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|             <view class="cu-form-title">动火审批人意见</view> | ||||
|             <textarea maxlength="255" disabled="disabled" v-model="formattedApproveContent"></textarea> | ||||
|           </view> | ||||
|           <!--				<view class="cu-form-group" v-if="forbidEdit" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|           <!--					<view class="title">审批人</view>--> | ||||
|           <!--					{{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}}--> | ||||
|           <!--				</view>--> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">动火审批人</view> | ||||
|               {{pd.APPROVE_USER_NAME}} {{pd.APPROVE_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.APPROVE_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.APPROVE_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.MONITOR_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|             <view class="cu-form-title">动火前验票负责人意见</view> | ||||
|             <textarea maxlength="255" disabled="disabled" v-model="formattedMonitorContent"></textarea> | ||||
|           </view> | ||||
|           <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|           <!--					<view class="title">动火前验票负责人</view>--> | ||||
|           <!--					{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}}--> | ||||
|           <!--				</view>--> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">动火前验票负责人</view> | ||||
|               {{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.MONITOR_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.MONITOR_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<view v-if="pd.ACCEPT_USER_SIGNER_PATH"> | ||||
| 					<view class="cu-form-textarea" style="border: none;"> | ||||
| 						<view class="cu-form-title">完工验收</view> | ||||
|  | @ -308,7 +346,30 @@ | |||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 
 | ||||
|         <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|           <view class="cu-form-group"> | ||||
|             <view class="title">动火是否完成</view> | ||||
|             <view> | ||||
|               已完成 | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|           <view class="cu-form-group"> | ||||
|             <view class="title">作业现场是否清理</view> | ||||
|             <view> | ||||
|               已清理 | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|           <view class="cu-form-group"> | ||||
|             <view class="title">是否存在遗留火种</view> | ||||
|             <view> | ||||
|               无遗留火种 | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<view class="wui-sign"  v-if="!pd.GUARDIAN_USER_SIGNER_PATH"> | ||||
| 					<view class="title">监护人</view> | ||||
| 					<button class="cu-btn bg-green shadow" @tap="signModalShow = true" data-target="Modal">手写签字</button> | ||||
|  | @ -421,6 +482,26 @@ | |||
| 				imgList:[], | ||||
| 			} | ||||
| 		}, | ||||
|     computed: { | ||||
|       formattedConfirmContent() { | ||||
|         return this.pd.CONFIRM_CONTENT && this.pd.CONFIRM_CONTENT !== '无' ? this.pd.CONFIRM_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedExamineApprovalOpinions() { | ||||
|         return this.pd.EXAMINE_APPROVAL_OPINIONS && this.pd.EXAMINE_APPROVAL_OPINIONS !== '' ? this.pd.EXAMINE_APPROVAL_OPINIONS : '同意'; | ||||
|       }, | ||||
|       formattedLeaderContent() { | ||||
|         return this.pd.LEADER_CONTENT && this.pd.LEADER_CONTENT !== '无' ? this.pd.LEADER_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedAuditContent() { | ||||
|         return this.pd.AUDIT_CONTENT && this.pd.AUDIT_CONTENT !== '无' ? this.pd.AUDIT_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedApproveContent() { | ||||
|         return this.pd.APPROVE_CONTENT && this.pd.APPROVE_CONTENT !== '无' ? this.pd.APPROVE_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedMonitorContent() { | ||||
|         return this.pd.MONITOR_CONTENT && this.pd.MONITOR_CONTENT !== '无' ? this.pd.MONITOR_CONTENT : '同意'; | ||||
|       } | ||||
|     }, | ||||
| 		onLoad(event){ | ||||
| 			this.todayDate =  formatDate(new Date(), 'yyyy-MM-dd hh:mm'); | ||||
| 			this.pd.HOTWORK_ID = event.HOTWORK_ID; | ||||
|  | @ -492,6 +573,14 @@ | |||
| 								duration: 2000 | ||||
| 							}); | ||||
| 						} | ||||
|             if (_this.pd.safetyList && _this.pd.safetyList.length > 0) { | ||||
|               for (let i = 0; i < _this.pd.safetyList.length; i++) { | ||||
|                 if (_this.pd.safetyList[i].APPROVAL_SIGNATURE) { | ||||
|                   _this.pd.SAFETY_SIGNATURE = _this.pd.safetyList[i].APPROVAL_SIGNATURE; | ||||
|                   break; | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
| 					} | ||||
| 				}); | ||||
| 			}, | ||||
|  |  | |||
|  | @ -478,6 +478,9 @@ | |||
|               <view class="title">项目主管部门负责人</view> | ||||
|               {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.BELONGING_SIGNATURE" mode="aspectFill" @click="previewImage(baseImgPath + pd.BELONGING_SIGNATURE)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<!--				<view class="cu-form-textarea" style="border: none;">--> | ||||
|  | @ -502,6 +505,9 @@ | |||
|               <view class="title">属地监管单位负责人</view> | ||||
|               {{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<view v-if="pd.AUDIT_USER_SIGNER_PATH"> | ||||
|  | @ -579,6 +585,30 @@ | |||
| 							<image :src="baseImgPath + pd.ACCEPT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.ACCEPT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">动火是否完成</view> | ||||
|               <view> | ||||
|                 已完成 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">作业现场是否清理</view> | ||||
|               <view> | ||||
|                 已清理 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">是否存在遗留火种</view> | ||||
|               <view> | ||||
|                 无遗留火种 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
| 			</view> | ||||
| 		</view> | ||||
|  |  | |||
|  | @ -218,40 +218,57 @@ | |||
| 						<text>{{ pd.MONITOR_USER_MEASURES}}</text> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 
 | ||||
| 				<view v-if="pd.CONFESS_USER_SIGNER_PATH"> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">安全交底人</view> | ||||
| 							{{pd.CONFESS_USER_NAME}} {{pd.CONFESS_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.CONFESS_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.CONFESS_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 				<view v-if="pd.ACCEPT_CONFESS_USER_SIGNER_PATH"> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">接受交底人</view> | ||||
| 							{{pd.ACCEPT_CONFESS_USER_NAME}} {{pd.ACCEPT_CONFESS_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.ACCEPT_CONFESS_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.ACCEPT_CONFESS_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 				<view v-if="pd.GUARDIAN_USER_SIGNER_PATH"> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">监护人</view> | ||||
| 							{{pd.GUARDIAN_USER_NAME}} {{pd.GUARDIAN_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.GUARDIAN_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.GUARDIAN_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
|         <view v-if="pd.SAFETY_SIGNATURE"> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">安全项检查人</view> | ||||
|               {{pd.SAFETY_USER_NAME}}<text>{{pd.SAFETY_SIGNATURE_TIME}}</text> | ||||
|             </view> | ||||
|             <view class="imgs" style="display: flex;justify-content: space-between;align-items: flex-end;padding: 20upx 50upx;"> | ||||
|               <image :src="baseImgPath+pd.SAFETY_SIGNATURE" @click="ViewShowImage(baseImgPath+v.SAFETY_SIGNATURE)" | ||||
|                      mode="" style="width: 200upx;height: 200upx;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.confessList && pd.confessList.length > 0 && pd.confessList.length !== pd.confessList.filter(item => item.APPROVAL_STATUS === '0').length"> | ||||
|           <view v-for="(item,index) in pd.confessList" > | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group"> | ||||
|                 <view class="title">安全交底人</view> | ||||
|                 {{ item.CONFESS_USER_NAME }} {{ item.APPROVAL_SIGNATURE_TIME }} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;"> | ||||
|                 <image :src="baseImgPath + item.APPROVAL_SIGNATURE" mode="aspectFill" | ||||
|                        @click="previewImage(baseImgPath + item.APPROVAL_SIGNATURE)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.acceptConfessList && pd.acceptConfessList.length > 0 && pd.acceptConfessList.length !== pd.acceptConfessList.filter(item => item.APPROVAL_STATUS === '0').length"> | ||||
|           <view v-for="(item,index) in pd.acceptConfessList" > | ||||
|             <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|               <view class="cu-form-group"> | ||||
|                 <view class="title">接受交底人</view> | ||||
|                 {{ item.ACCEPT_CONFESS_USER_NAME }} {{ item.APPROVAL_SIGNATURE_TIME }} | ||||
|               </view> | ||||
|               <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;"> | ||||
|                 <image :src="baseImgPath + item.ACCEPT_CONFESS_USER_SIGNER_PATH" mode="aspectFill" | ||||
|                        @click="previewImage(baseImgPath + item.ACCEPT_CONFESS_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
|         <view v-if="pd.GUARDIAN_USER_SIGNER_PATH"> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">监护人</view> | ||||
|               {{pd.GUARDIAN_USER_NAME}} {{pd.GUARDIAN_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.GUARDIAN_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.GUARDIAN_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 			</view> | ||||
| 
 | ||||
| 			<view class="wui-form-list" v-if="!forbidEdit"> | ||||
|  | @ -470,6 +487,9 @@ | |||
|             <view class="title">项目主管部门负责人</view> | ||||
|             {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|           </view> | ||||
|           <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|             <image :src="baseImgPath + pd.BELONGING_SIGNATURE" mode="aspectFill" @click="previewImage(baseImgPath + pd.BELONGING_SIGNATURE)" style="height: 100%;"></image> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|  | @ -565,6 +585,30 @@ | |||
| 							<image :src="baseImgPath + pd.ACCEPT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.ACCEPT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">动火是否完成</view> | ||||
|               <view> | ||||
|                 已完成 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">作业现场是否清理</view> | ||||
|               <view> | ||||
|                 已清理 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">是否存在遗留火种</view> | ||||
|               <view> | ||||
|                 无遗留火种 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
| 			</view> | ||||
| 		</view> | ||||
|  |  | |||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							|  | @ -480,6 +480,9 @@ | |||
|             <view class="title">项目主管部门负责人</view> | ||||
|             {{pd.EXAMINE_USER_NAME}} {{pd.EXAMINE_APPROVAL_CREATE_TIME}} | ||||
|           </view> | ||||
|           <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|             <image :src="baseImgPath + pd.BELONGING_SIGNATURE" mode="aspectFill" @click="previewImage(baseImgPath + pd.BELONGING_SIGNATURE)" style="height: 100%;"></image> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<!--				<view class="cu-form-textarea" style="border: none;">--> | ||||
| 				<!--					<view class="cu-form-title">监护人意见</view>--> | ||||
|  | @ -489,22 +492,25 @@ | |||
| 				<!--					<view class="title">监护人</view>--> | ||||
| 				<!--					{{pd.GUARDIAN_USER_NAME}} {{pd.GUARDIAN_USER_SIGNER_TIME}}--> | ||||
| 				<!--				</view>--> | ||||
| 				<view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
|         <view v-if="pd.LEADER_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|             <view class="cu-form-title">属地监管单位意见</view> | ||||
|             <textarea maxlength="255" disabled="disabled" v-model="formattedLeaderContent"></textarea> | ||||
|           </view> | ||||
| 					<!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
| 					<!--					<view class="title">动火点属地监管单位负责人</view>--> | ||||
| 					<!--					{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}}--> | ||||
| 					<!--				</view>--> | ||||
|           <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|           <!--					<view class="title">动火点属地监管单位负责人</view>--> | ||||
|           <!--					{{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}}--> | ||||
|           <!--				</view>--> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">属地监管单位负责人</view> | ||||
|               {{pd.LEADER_USER_NAME}} {{pd.LEADER_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.LEADER_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.LEADER_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
|         </view> | ||||
| 				<view v-if="pd.AUDIT_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|             <view class="cu-form-title">安全管理部门意见</view> | ||||
|  | @ -543,25 +549,25 @@ | |||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
| 				<view v-if="pd.MONITOR_USER_SIGNER_PATH"> | ||||
|         <view v-if="pd.MONITOR_USER_SIGNER_PATH"> | ||||
|           <view class="cu-form-textarea" style="border: none;"> | ||||
|             <view class="cu-form-title">动火前验票负责人意见</view> | ||||
|             <textarea maxlength="255" disabled="disabled" v-model="formattedMonitorContent"></textarea> | ||||
|           </view> | ||||
| 					<!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
| 					<!--					<view class="title">动火前验票负责人</view>--> | ||||
| 					<!--					{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}}--> | ||||
| 					<!--				</view>--> | ||||
| 					<view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
| 						<view class="cu-form-group" > | ||||
| 							<view class="title">动火前验票负责人</view> | ||||
| 							{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}} | ||||
| 						</view> | ||||
| 						<view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
| 							<image :src="baseImgPath + pd.MONITOR_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.MONITOR_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
| 				</view> | ||||
|           <!--				<view class="cu-form-group" style="border-bottom: 1px solid #eee;border-top: 1px dashed #eee;">--> | ||||
|           <!--					<view class="title">动火前验票负责人</view>--> | ||||
|           <!--					{{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}}--> | ||||
|           <!--				</view>--> | ||||
|           <view style="border-bottom: 1px solid #eeeeee;  border-top: 1px solid #eeeeee"> | ||||
|             <view class="cu-form-group" > | ||||
|               <view class="title">动火前验票负责人</view> | ||||
|               {{pd.MONITOR_USER_NAME}} {{pd.MONITOR_USER_SIGNER_TIME}} | ||||
|             </view> | ||||
|             <view style="width: 400upx; height: 200upx; margin: 30upx;margin-top: 0upx;margin-bottom: 20upx;" > | ||||
|               <image :src="baseImgPath + pd.MONITOR_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.MONITOR_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
|             </view> | ||||
|           </view> | ||||
|         </view> | ||||
| 				<view v-if="pd.ACCEPT_USER_SIGNER_PATH"> | ||||
| 					<view class="cu-form-textarea" style="border: none;"> | ||||
| 						<view class="cu-form-title">完工验收</view> | ||||
|  | @ -580,6 +586,30 @@ | |||
| 							<image :src="baseImgPath + pd.ACCEPT_USER_SIGNER_PATH" mode="aspectFill" @click="previewImage(baseImgPath + pd.ACCEPT_USER_SIGNER_PATH)" style="height: 100%;"></image> | ||||
| 						</view> | ||||
| 					</view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.FIRE_COMPLETED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">动火是否完成</view> | ||||
|               <view> | ||||
|                 已完成 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.SITE_CLEANED == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">作业现场是否清理</view> | ||||
|               <view> | ||||
|                 已清理 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
|           <view style="border-bottom: 1px solid #eeeeee; border-top: 1px solid #eeeeee" v-if="pd.NO_REMAINING_EMBERS == 1"> | ||||
|             <view class="cu-form-group"> | ||||
|               <view class="title">是否存在遗留火种</view> | ||||
|               <view> | ||||
|                 无遗留火种 | ||||
|               </view> | ||||
|             </view> | ||||
|           </view> | ||||
| 				</view> | ||||
| 			</view> | ||||
| 		</view> | ||||
|  | @ -688,7 +718,7 @@ | |||
|         return this.pd.APPROVE_CONTENT && this.pd.APPROVE_CONTENT !== '无' ? this.pd.APPROVE_CONTENT : '同意'; | ||||
|       }, | ||||
|       formattedMonitorContent() { | ||||
|         return this.pd.MONITOR_CONTENT && this.pd.MONITOR_CONTENT !== '' ? this.pd.MONITOR_CONTENT : '同意'; | ||||
|         return this.pd.MONITOR_CONTENT && this.pd.MONITOR_CONTENT !== '无' ? this.pd.MONITOR_CONTENT : '同意'; | ||||
|       } | ||||
|     }, | ||||
| 		onLoad(event){ | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue