| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- <template>
- <div class="question-edit">
- <nav-bar></nav-bar>
- <div class="page-container">
- <!-- 基本信息 -->
- <div class="card" v-if="taskInfo">
- <van-panel :title="taskInfo.srcTaskName">
- <div class="panel-box">
- <!-- <div class="panel-box-item">-->
- <!-- <van-row>-->
- <!-- <van-col span="8">-->
- <!-- <span class="item-label">隐患所在机构:</span>-->
- <!-- </van-col>-->
- <!-- <van-col span="14">-->
- <!-- <span class="item-value">{{taskInfo.orgName}}</span>-->
- <!-- </van-col>-->
- <!-- </van-row>-->
- <!-- </div>-->
- <van-cell title="隐患所在机构" :label="taskInfo.orgName" />
- <van-cell title="检查项" :label="taskInfo.checkItem" />
- <van-cell title="检查内容" :label="taskInfo.checkContent" />
- <van-cell title="隐患描述" :label="taskInfo.questionDesc" />
- <van-cell title="发现日期" :label="taskInfo.submitTime" />
- <van-cell title="提出人" :label="taskInfo.submitorName" />
- <van-cell title="整改期限" :label="formatDate(taskInfo.reformDeadline,'YYYY-MM-DD')" />
- <van-cell title="隐患图片" v-if="taskInfo.images && taskInfo.images.length > 0" :border="false" >
- <div slot="label">
- <div class="nfc-img" v-for="(v,i) in taskInfo.images" :key="v" @click="clickImage(taskInfo.images,i)">
- <img :src="imgUrl(v)" alt="" >
- </div>
- </div>
- </van-cell>
- </div>
- </van-panel>
- </div>
- <div class="card" v-if="taskInfo.confirm" >
- <van-panel title="处理">
- <div class="panel-box">
- <van-cell title="处理意见" :label="taskInfo.confirm.executeStatus === 0 ? '确认' : '提出异议'"></van-cell>
- <van-cell v-show="taskInfo.confirm.executeStatus===1" title="异议内容" :label="taskInfo.confirm.description"></van-cell>
- <van-cell title="异议人" :label="taskInfo.confirm.executorName"></van-cell>
- </div>
- </van-panel>
- </div>
- <div class="card" v-if="taskInfo.confirmDissent" >
- <van-panel title="审批">
- <div class="panel-box">
- <van-cell title="审核结果" :label="taskInfo.confirmDissent.executeStatus === 0 ? '同意' : '不同意'"></van-cell>
- <!-- <van-cell title="审核人" :label="taskInfo.confirmDissent.executorName"></van-cell>-->
- <van-cell v-show="taskInfo.confirmDissent.executeStatus===1" title="原因" :label="taskInfo.confirmDissent.description"></van-cell>
- </div>
- </van-panel>
- </div>
- <div class="card" v-if="taskInfo.reform" >
- <van-panel title="整改">
- <div class="panel-box">
- <van-cell title="整改日期" :label="formatDate(taskInfo.reform.executeTime,'YYYY-MM-DD')"></van-cell>
- <!-- <van-cell title="审核结果" :label="taskInfo.reform.executeStatus === 0 ? '已整改' : '未整改'"></van-cell>-->
- <van-cell title="整改描述" :label="taskInfo.reform.description"></van-cell>
- <van-cell title="上传信息" v-if="taskInfo.reform.images.length > 0">
- <div slot="label" v-if="taskInfo.reform.images.length > 0">
- <div class="nfc-img van-hairline--surround" v-for="(v,i) in taskInfo.reform.images" :key="v" @click="clickImage(taskInfo.reform.images,i)">
- <img :src="imgUrl(v)" alt="" >
- </div>
- </div>
- </van-cell>
- </div>
- </van-panel>
- </div>
- <div class="card" v-if="type === 'confirm'">
- <van-panel title="确认">
- <div class="panel-box">
- <van-radio-group v-model="confirmData.status" required>
- <van-cell-group>
- <van-cell title="确认情况" clickable>
- <template #right-icon>
- <van-radio :name="0" />
- </template>
- </van-cell>
- <van-cell title="提出异议" clickable>
- <template #right-icon>
- <van-radio :name="1" />
- </template>
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- <van-field
- v-show="confirmData.status"
- v-model="confirmData.description"
- rows="1"
- autosize
- label="异议内容"
- type="textarea"
- placeholder="请输入"/>
- <div class="big-btn-box" v-if="taskInfo.orgId == orgId && taskInfo.confirmStatus==0">
- <van-button type="info" size="large" @click="onSubmit('确认')">提交</van-button>
- </div>
- </div>
- </van-panel>
- </div>
- <div class="card" v-if="type === 'confirmDissent'">
- <van-panel title="审批">
- <div class="panel-box">
- <van-radio-group v-model="confirmDissentData.status" required>
- <van-cell-group>
- <van-cell title="同意" clickable>
- <template #right-icon>
- <van-radio :name="0" />
- </template>
- </van-cell>
- <van-cell title="不同意" clickable>
- <template #right-icon>
- <van-radio :name="1" />
- </template>
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- <van-field
- v-show="confirmDissentData.status"
- v-model="confirmDissentData.description"
- rows="1"
- autosize
- label="原因"
- type="textarea"
- placeholder="请输入"/>
- <div class="big-btn-box" v-if="taskInfo.submitorId == id && taskInfo.confirmStatus==1">
- <van-button type="info" size="large" @click="onSubmit('审核')">提交</van-button>
- </div>
- </div>
- </van-panel>
- </div>
- <div class="card" v-if="type === 'reform'">
- <van-panel title="整改">
- <div class="panel-box">
- <date-cell required title="整改日期" v-model="reformData.reformDate" dateType="date" />
- <van-field
- required
- v-model="reformData.description"
- rows="1"
- autosize
- label="整改描述:"
- type="textarea"
- placeholder="请输入"/>
- <div class="upload-box" >
- <uploader :maxCount="5" v-model="reformData.images"/>
- </div>
- <div class="big-btn-box" v-if="taskInfo.orgId==orgId && taskInfo.confirmStatus==2 && taskInfo.reformStatus!=11">
- <van-button type="info" size="large" @click="onSubmit('整改')">提交</van-button>
- </div>
- </div>
- </van-panel>
- </div>
- </div>
- </div>
- </template>
- <script>
- import NavBar from '@/components/NavBar';
- import SelectCell from '@/components/selectCell';
- import DateCell from '@/components/dateCell';
- import Uploader from '@/components/upload/gxuploader.vue';
- import {taskDetails,confirm, confirmDissent, reform,} from "./api";
- import {formatDate} from "@/filters/filter";
- import { ImagePreview } from 'vant';
- import {mapGetters} from "vuex";
- import {imgUrl} from "@/utils";
- export default {
- components:{NavBar,SelectCell,DateCell,Uploader},
- data(){
- return {
- //基本信息
- taskInfo:[],
- formData:{},
- //确认
- confirmData: {
- status: 0,
- description: null,
- },
- //审核
- confirmDissentData: {
- status: 0,
- description: null,
- },
- //整改
- reformData: {
- reformDate: null,
- description: null,
- images: null,
- },
- type:null,
- preViewImages:{},
- dicts:['resumption_status','rectification_deadline'],
- }
- },
- mounted() {
- console.log('系统信息:'+window.navigator.platform);
- this.getData();
- },
- computed:{
- ...mapGetters(['orgId','id','dictionary'])
- },
- methods:{
- formatDate,
- //图片预览
- clickImage(arr,i){
- this.preViewImages.images = arr.map(v=>imgUrl(v));
- this.preViewImages.startPosition = i;
- ImagePreview(this.preViewImages);
- },
- //提交
- onSubmit(type){
- let data,queryMethod;
- switch (type){
- case '确认':
- data = this.confirmData;
- queryMethod = confirm;
- break;
- case '审核':
- data = this.confirmDissentData;
- queryMethod = confirmDissent;
- break
- case '整改':
- data = this.reformData;
- queryMethod = reform;
- }
- if(type === '确认' || type === '审核'){
- if(!data && !data.description) {
- return this.$toast("请填写完整信息");
- }
- }else {
- if(!data.reformDate || !data.description){
- return this.$toast("请填写完整信息");
- }
- if(data.images){
- let img = data.images.map(v=>{return v.imgPath});
- data.images = img.toString();
- }
- }
- data.id = this.taskInfo.id;
- queryMethod(data).then((r) => {
- if (r.data) {
- this.$toast("提交成功");
- this.$emit("success");
- this.$router.go(-1);
- }
- });
- },
- //初始化数据
- getData() {
- let id = this.$route.query.id;
- this.type = this.$route.query.type;
- taskDetails(id).then(res=>{
- this.taskInfo = res.data;
- this.taskInfo.confirm = res.data.flows.find((d) => d.executeStep === 1);
- this.taskInfo.confirmDissent = res.data.flows.find((d) => d.executeStep === 2);
- this.taskInfo.reform = res.data.flows.find((d) => d.executeStep === 11);
- if(this.taskInfo.reform && this.taskInfo.reform.images) {
- this.taskInfo.reform.images=this.taskInfo.reform.images.split(",")
- }
- })
- },
- //返回
- goBack(){
- this.$router.go(-1);
- this.clearData();
- },
- //清空数据
- clearData(){
- this.areaList = [];
- this.taskInfo= [];
- this.selectArea = [];
- this.NFCList = [];
- this.checkList = [];
- this.checkItemList = [];
- this.NFCNum = 0;
- this.enable = false;
- },
- }
- }
- </script>
- <style lang="scss">
- //.question-edit{
- // .van-panel__header{
- // color:red
- // }
- //}
- </style>
- <style lang="scss" scoped>
- .question-edit{
- height: 100%;
- overflow: hidden;
- }
- .page-container{
- height: calc(100vh - 194px);
- overflow: auto;
- padding: 20px;
- }
- .flex-box{
- display: flex;
- justify-content: space-between;
- align-items: center;
- >span{
- margin: 0 20px;
- }
- }
- .card{
- margin-bottom: 20px;
- box-shadow: 0 10px 10px #eaeaea;
- }
- .card:last-child{
- margin-bottom: 0;
- }
- .panel-box{
- padding:0 20px;
- }
- .panel-box-item{
- height: 36px;
- line-height: 36px;
- }
- .item-label{
- width: 100%;
- display: flex;
- justify-content: right;
- align-items: center;
- }
- .item-value{
- width: 100%;
- display: flex;
- justify-content: left;
- align-items: center;
- }
- .upload-box{
- padding: 20px 30px;
- }
- .nfc-img{
- display: inline-block;
- width: 140px;
- height: 140px;
- margin: 10px;
- position: relative;
- &:first-child{
- margin-left: 0;
- }
- >img{
- width: 100%;
- height: 100%;
- border: none;
- }
- >span{
- position: absolute;
- padding: 0 10px;
- bottom: 0;
- left: 0;
- display: block;
- width: 100%;
- background-color: rgba(0,0,0,.2 );
- color: #eaeaea;
- font-size: 20px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- line-height: 30px;
- height: 30px;
- }
- }
- .big-btn-box{
- padding-bottom: 20px;
- }
- </style>
|