QA-UniApp-wlaq/pages/application/hidden-danger-management/hidden-danger-unqualified/hidden-danger-unqualified-d...

113 lines
2.9 KiB
Vue
Raw Permalink Normal View History

2024-11-19 14:17:54 +08:00
<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>