修改法规清单

This commit is contained in:
范强强
2023-03-20 16:34:36 +08:00
parent 57e56c5518
commit b46670349c
3 changed files with 66 additions and 3 deletions
@@ -0,0 +1,54 @@
<template>
<div class="box">
<div class="box-text">
<div class="header-text">
{{title}}
</div>
</div>
</div>
</template>
<script>
export default {
name: 'circulationHistory',
props: {
// 需要参数urlFrom,获取数据去显示内容
url: {
type: Object,
default: {}
},
projectInformationId: {
type: String,
default: ''
},
queryProject: {
type: Object,
default: {}
},
title: {
type: String,
default: ''
}
},
}
</script>
<style scoped lang="less">
.box {
padding: 0 24px 24px 24px;
box-sizing: border-box;
}
.box-text {
display: flex;
justify-content: space-between;
height: 80px;
line-height: 80px;
.header-text {
font-size: 18px;
font-weight: 400;
color: #000F16;
}
}
</style>
@@ -31,6 +31,10 @@
:query="queryData" :query="queryData"
:queryBy="queryBy" :queryBy="queryBy"
:queryPersonInCharge="queryPersonInCharge"/> :queryPersonInCharge="queryPersonInCharge"/>
<circulationHistory
:title="$t('Processhistory')"
/>
<div class="drawer-bootom-button"> <div class="drawer-bootom-button">
<footerProcess <footerProcess
v-if="isDisplay" v-if="isDisplay"
@@ -54,6 +58,7 @@
import standardContent from '../../../processCenter/components/standardContent' import standardContent from '../../../processCenter/components/standardContent'
import footerProcess from '../../../processCenter/components/footerProcess' import footerProcess from '../../../processCenter/components/footerProcess'
import reviewedByThePersonInCharge from './reviewedByThePersonInCharge' import reviewedByThePersonInCharge from './reviewedByThePersonInCharge'
import circulationHistory from './circulationHistory'
import { getAction, postAction, deleteAction, downloadFile, putAction } from '@/api/manage' import { getAction, postAction, deleteAction, downloadFile, putAction } from '@/api/manage'
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
@@ -64,7 +69,8 @@
projectInformation, projectInformation,
standardContent, standardContent,
reviewedByThePersonInCharge, reviewedByThePersonInCharge,
footerProcess footerProcess,
circulationHistory
}, },
data() { data() {
return { return {
@@ -84,7 +84,6 @@
</a-row> </a-row>
</a-form-model> </a-form-model>
<uploadFile ref="uploadFile" <uploadFile ref="uploadFile"
:disabled="!query.isDisplay?true:false"
@uploadSuccess="uploadSuccess"/> @uploadSuccess="uploadSuccess"/>
<SelectedBy ref="SelectedByRef" :title="$t('turnToDo')" @SelectedByForm="SelectedByForm"></SelectedBy> <SelectedBy ref="SelectedByRef" :title="$t('turnToDo')" @SelectedByForm="SelectedByForm"></SelectedBy>
</div> </div>
@@ -199,7 +198,11 @@
}, },
//转办接口 //转办接口
SelectedByForm(userIds) { SelectedByForm(userIds) {
if (this.query.TaskKey == 'zrrtjjfw'){
this.formInline.dezrrSubmitUserId = userIds
}else{
this.formInline.secondChargePersonUserId = userIds this.formInline.secondChargePersonUserId = userIds
}
this.$refs.SelectedByRef.visible = false this.$refs.SelectedByRef.visible = false
}, },
submitNoRule(callBack) { submitNoRule(callBack) {