<template>
	<view>
		<cu-custom bgColor="bg-gradual-blueness" :isBack="true">
			<block slot="backText">返回</block>
			<block slot="content">隐患提交-详情</block>
		</cu-custom>
		<scroll-view scroll-y>
<!-- 			<view class="margin-top-sm margin-left">
				<text class="text-semi">基本信息</text>
			</view> -->
			<view class="de-card-list de-list">
				<view class="de-item">
					<view class="de-sub-title">
						<text class="text-semi">污水泵</text>
					</view>
					<view class="uni-flex-item text-right">
						<text class="text-semi"></text>
					</view>
				</view>
				<view class="de-item">
					<view class="de-sub-title">
						<text class="text-grey">隐患等级:</text>
					</view>
					<view class="uni-flex-item text-right">
						<text class="text-semi">一般隐患</text>
					</view>
				</view>
				
				<view class="de-item">
					<view class="de-sub-title">
						<text class="text-grey">来源:</text>
					</view>
					<view class="uni-flex-item text-right">
						<text class="text-semi">主要负责人隐患排查清单</text>
					</view>
				</view>
				<view class="de-item">
					<view class="de-sub-title">
						<text class="text-grey">整改人:</text>
					</view>
					<view class="uni-flex-item text-right">
						<text class="text-semi">王伟东</text>
					</view>
				</view>
				
				<view class="de-item">
					<view class="de-sub-title">
						<text class="text-grey">隐患描述</text>
					</view>
					<view class="uni-flex-item text-right">
						<text class="text-semi">11</text>
					</view>
				</view>
				<view class="de-item-sp">
					<view class="de-sub-title">
						<text class="text-grey">隐患图片</text>
					</view>
					<view class="de-sub-content">
						<scroll-view scroll-x class="bg-white nav" scroll-with-animation>
							<view class="cu-item">
								<view class="imgs">
									<image src="../../../../static/no/20210106.jpg" @click="ViewImage" mode=""></image>
								</view>
							</view>
							<view class="cu-item">
								<view class="imgs">
									<image src="../../../../static/no/20210106.jpg" @click="ViewImage" mode=""></image>
								</view>
							</view>
						</scroll-view>
					</view>
				</view>
				<view class="de-item">
					<view class="de-sub-title" style="width: 210upx;">
						<text class="text-grey">隐患提交时间:</text>
					</view>
					<view class="uni-flex-item text-right">
						<text class="text-semi">2021-01-06 10:11:22</text>
					</view>
				</view>

			</view>
			<view class="padding flex flex-direction">
				<button class="cu-btn bg-green margin-tb-sm lg">提 交</button>
			</view>
			<view class="cu-tabbar-height"></view>
		</scroll-view>
		
	</view>	
</template>

<script>
	export default {
		data() {
			return {
				
			}
		},
		methods: {
			//跳转事件
			goToEdit(e) {
				uni.navigateTo({
					url: '/pages/application/basic-info-manage/basic-information/basic-information-edit'
				});
			},
		}
	}
</script>

<style>

</style>