|
@@ -0,0 +1,262 @@
|
|
|
+<template>
|
|
|
+ <view class="task-page">
|
|
|
+ <div class="title">{{item.title}}</div>
|
|
|
+ <div class="info">
|
|
|
+ <div class="item">
|
|
|
+ <view class="name">上报人</view>
|
|
|
+ <view class="cont">上报人</view>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <view class="name">所属部门</view>
|
|
|
+ <view class="cont">所属部门</view>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <view class="name">发布时间</view>
|
|
|
+ <view class="cont">{{parseTime(new Date())}}</view>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="status">
|
|
|
+ <div class="head">整改过程</div>
|
|
|
+ <template>
|
|
|
+ <view class="flow-head">
|
|
|
+ <span class="flow-user">质量安全管理科-{{flow.user||'***'}}</span>
|
|
|
+ <view class="flow-time">{{parseTime(flow.time)}}</view>
|
|
|
+ </view>
|
|
|
+ <div class="desc">{{flow.desc}}</div>
|
|
|
+ <div class="attach">
|
|
|
+ <view class="attach-item" v-for="(attach,index) in flow.attachList" :key="'attach-'+index">
|
|
|
+ <image class="image" :src="attach.url" mode="widthFix"></image>
|
|
|
+ </view>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ <div class="check status" :class="check.status===0?'reject':(check.status===1?'pass':'')" v-if="check.status!==''">
|
|
|
+ <div class="head">验收过程</div>
|
|
|
+ <template>
|
|
|
+ <view class="flow-head">
|
|
|
+ <span class="flow-user">质量安全管理科-{{check.user||'***'}}</span>
|
|
|
+ <view class="flow-time">{{parseTime(check.time)}}</view>
|
|
|
+ </view>
|
|
|
+ <div class="desc">{{check.desc}}</div>
|
|
|
+ <div class="attach">
|
|
|
+ <view class="attach-item" v-for="(attach,index) in check.attachList" :key="'attach-'+index">
|
|
|
+ <image class="image" :src="attach.url" mode="widthFix"></image>
|
|
|
+ </view>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ <view class="footer" @click="onSubmit" v-if="check.status===''">验收</view>
|
|
|
+ <view class="footer" @click="onRectify" v-if="check.status===0">二次整改</view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import {parseTime} from '@/libs/index.js'
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ item:{
|
|
|
+ title:"水位预{2号-770-32002}:采空区封堵完好,无渗水情况。"
|
|
|
+ },
|
|
|
+ flow:{
|
|
|
+ status:"",
|
|
|
+ time:"",
|
|
|
+ desc:"",
|
|
|
+ attachList:[]
|
|
|
+ },
|
|
|
+ check:{
|
|
|
+ status:"",
|
|
|
+ time:"",
|
|
|
+ desc:"",
|
|
|
+ attachList:[]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onLoad() {
|
|
|
+ this.init()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ parseTime,
|
|
|
+ init(){
|
|
|
+ let title="待验收"
|
|
|
+ this.flow={
|
|
|
+ status:-1,
|
|
|
+ user:"王麻子",
|
|
|
+ time:new Date(),
|
|
|
+ desc:"处置过程描述处置过程描述处置过程描述处置过程描述处置过程描述处置过程描述处置过程描述",
|
|
|
+ attachList:[
|
|
|
+ {url:"/static/preview/1.png"},
|
|
|
+ {url:"/static/preview/2.png"},
|
|
|
+ {url:"/static/preview/3.png"}
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ /*已经验收 未通过*/
|
|
|
+ this.check={
|
|
|
+ status:0,
|
|
|
+ user:"王麻子",
|
|
|
+ time:new Date(),
|
|
|
+ desc:"处置过程描述处置过程描述处置过程描述处置过程描述处置过程描述处置过程描述处置过程描述",
|
|
|
+ attachList:[
|
|
|
+ {url:"/static/preview/1.png"},
|
|
|
+ {url:"/static/preview/2.png"},
|
|
|
+ {url:"/static/preview/3.png"}
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ // 验收完成
|
|
|
+ if(this.check.status===1){
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: '已完成'
|
|
|
+ });
|
|
|
+ }
|
|
|
+ if(this.check.status===0){
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: '待验收'
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getTask(){
|
|
|
+ this.item=uni.getStorageSync('task-item')
|
|
|
+ },
|
|
|
+ onSubmit(){
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'/pages/risk/check/form/form'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ onRectify(){
|
|
|
+ uni.navigateTo({
|
|
|
+ url:'/pages/risk/rectify/form/form'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ destroyed() {
|
|
|
+ uni.removeStorageSync('task-item')
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+ .task-page{
|
|
|
+ background-color: #F3F5FB;
|
|
|
+ padding-bottom: 120rpx;
|
|
|
+ .title{
|
|
|
+ font-family: 'Source Han Sans CN';
|
|
|
+ font-style: normal;
|
|
|
+ font-weight: 700;
|
|
|
+ font-size: 36rpx;
|
|
|
+ line-height: 54rpx;
|
|
|
+ color: #212121;
|
|
|
+ padding:0 32rpx;
|
|
|
+ }
|
|
|
+ .info{
|
|
|
+ padding: 0 32rpx;
|
|
|
+ margin: 40rpx 0;
|
|
|
+ background: #FFFFFF;
|
|
|
+ border-radius: 32rpx 32rpx 0px 0px;
|
|
|
+ .item{
|
|
|
+ border-bottom: 1rpx solid #EFF1F3;
|
|
|
+ padding: 40rpx 32rpx;
|
|
|
+ .name{
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #999999;
|
|
|
+ line-height: 1;
|
|
|
+ }
|
|
|
+ .cont{
|
|
|
+ font-size: 30rpx;
|
|
|
+ color: #212121;
|
|
|
+ line-height: 1.5;
|
|
|
+ padding-top: 12rpx;
|
|
|
+ }
|
|
|
+ &:last-child{
|
|
|
+ border-bottom:none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .status{
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ border-radius: 32rpx 32rpx 0px 0px;
|
|
|
+ padding: 48rpx 32rpx;
|
|
|
+ &.check{
|
|
|
+ margin-top: 24rpx;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: right top;
|
|
|
+ &.pass{
|
|
|
+ background-image: url('/static/icon/pass.png');
|
|
|
+ }
|
|
|
+ &.reject{
|
|
|
+ background-image: url('/static/icon/reject.png');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .head{
|
|
|
+ color: #212121;
|
|
|
+ font-size: 34rpx;
|
|
|
+ line-height:1;
|
|
|
+ font-weight: 700;
|
|
|
+ }
|
|
|
+ .icon-empty{
|
|
|
+ display: block;
|
|
|
+ width: 160rpx;
|
|
|
+ margin: 64rpx auto 0;
|
|
|
+ }
|
|
|
+ p{
|
|
|
+ font-size: 24rpx;
|
|
|
+ line-height: 28rpx;
|
|
|
+ color: #D5D5D5;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .flow-head{
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ font-family: 'Abhaya Libre';
|
|
|
+ font-style: normal;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 24rpx;
|
|
|
+ line-height: 48rpx;
|
|
|
+ padding: 30rpx 0 24rpx 0;
|
|
|
+ color: #999;
|
|
|
+ }
|
|
|
+ .desc{
|
|
|
+ font-family: 'SF Pro Text';
|
|
|
+ font-style: normal;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 30rpx;
|
|
|
+ line-height: 42rpx;
|
|
|
+ color: #434343;
|
|
|
+ padding-bottom: 24rpx;
|
|
|
+ }
|
|
|
+ .attach{
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ .attach-item{
|
|
|
+ width: 224rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-right: 7rpx;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
+ &:nth-child(3n){
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+ .image{
|
|
|
+ display: block;
|
|
|
+ width: 224rpx;
|
|
|
+ border-radius: 8px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .footer{
|
|
|
+ width: 100%;
|
|
|
+ height: 136upx;
|
|
|
+ background: #FFFFFF;
|
|
|
+ border-radius: 16upx 16upx 0px 0px;
|
|
|
+ position: fixed;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ text-align: center;
|
|
|
+ color: #168DEC;
|
|
|
+ font-size: 32upx;
|
|
|
+ padding-top: 20upx;
|
|
|
+ letter-spacing: 2px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+</style>
|