修改法规清单

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"
:queryBy="queryBy"
:queryPersonInCharge="queryPersonInCharge"/>
<circulationHistory
:title="$t('Processhistory')"
/>
<div class="drawer-bootom-button">
<footerProcess
v-if="isDisplay"
@@ -54,6 +58,7 @@
import standardContent from '../../../processCenter/components/standardContent'
import footerProcess from '../../../processCenter/components/footerProcess'
import reviewedByThePersonInCharge from './reviewedByThePersonInCharge'
import circulationHistory from './circulationHistory'
import { getAction, postAction, deleteAction, downloadFile, putAction } from '@/api/manage'
import { mapGetters } from 'vuex'
@@ -64,7 +69,8 @@
projectInformation,
standardContent,
reviewedByThePersonInCharge,
footerProcess
footerProcess,
circulationHistory
},
data() {
return {
@@ -84,7 +84,6 @@
</a-row>
</a-form-model>
<uploadFile ref="uploadFile"
:disabled="!query.isDisplay?true:false"
@uploadSuccess="uploadSuccess"/>
<SelectedBy ref="SelectedByRef" :title="$t('turnToDo')" @SelectedByForm="SelectedByForm"></SelectedBy>
</div>
@@ -199,7 +198,11 @@
},
//转办接口
SelectedByForm(userIds) {
this.formInline.secondChargePersonUserId = userIds
if (this.query.TaskKey == 'zrrtjjfw'){
this.formInline.dezrrSubmitUserId = userIds
}else{
this.formInline.secondChargePersonUserId = userIds
}
this.$refs.SelectedByRef.visible = false
},
submitNoRule(callBack) {