法规清单、认证清单、市场法规清单、市场认证清单增加责任部门

This commit is contained in:
范强强
2023-07-14 17:52:52 +08:00
parent e0b5f66161
commit 33333bf890
3 changed files with 30 additions and 4 deletions
@@ -55,6 +55,14 @@
<span class="content-box-left">{{$t('cutoffTime')}}</span>
<span class="content-box-text">{{queryForm.endTime || '--'}}</span>
</div>
<div class="content-box-type">
<span class="content-box-left">{{$t('statisticalNodes')}}</span>
<span class="content-box-text">{{queryForm['dutyDepart'] || '--'}}</span>
</div>
<div class="content-box-type">
<span class="content-box-left">{{$t('areaOfResponsibility')}}</span>
<span class="content-box-text">{{queryForm['dutyTerritoryName'] || queryForm['dutyTerritory_dictText'] || '--'}}</span>
</div>
<div class="content-box-type">
<span class="content-box-left">{{$t('typeOfDeliverables')}}</span>
<span class="content-box-text">{{queryForm.deliverableTypeName || '--'}}</span>
@@ -45,6 +45,14 @@
<span class="content-box-left">{{$t('deliveryDate')}}</span>
<span class="content-box-text">{{queryProject[queryData.DueDate] || '--'}}</span>
</div>
<div class="content-box-type">
<span class="content-box-left">{{$t('statisticalNodes')}}</span>
<span class="content-box-text">{{queryProject['dutyDepart'] || '--'}}</span>
</div>
<div class="content-box-type">
<span class="content-box-left">{{$t('areaOfResponsibility')}}</span>
<span class="content-box-text">{{queryProject['dutyTerritoryName'] || queryProject['dutyTerritory_dictText'] || '--'}}</span>
</div>
<div class="content-box-type">
<span class="content-box-left">{{$t('typeOfDeliverables')}}</span>
<span class="content-box-text">{{queryProject[queryData.typeOfDeliverables] || '--'}}</span>
@@ -166,10 +166,10 @@
this.visible = false
},
referenceDeliverablesClick() {
this.$refs.referenceDeliverablesListRef.transferModel(this.queryData.flowType,JSON.parse(JSON.stringify(this.queryProject)))
this.$refs.referenceDeliverablesListRef.transferModel(this.queryData.flowType, JSON.parse(JSON.stringify(this.queryProject)))
},
referenceDeliverablesListForm(data) {
this.$refs.reviewedByThePersonInChargeRef.getData(JSON.parse(JSON.stringify(data)))
this.$refs.reviewedByThePersonInChargeRef.getData(JSON.parse(JSON.stringify(data)))
},
confirm(operatorTime) {
this.$refs.reviewedByThePersonInChargeRef.submit((res) => {
@@ -224,6 +224,14 @@
title: this.$t('deliveryDate'),
value: this.queryData.DueDate
},
{
title: this.$t('statisticalNodes'),
value: 'dutyDepart'
},
{
title: this.$t('areaOfResponsibility'),
value: 'dutyTerritory_dictText'
},
{
title: this.$t('typeOfDeliverables'),
value: this.queryData.typeOfDeliverables
@@ -348,12 +356,14 @@
font-size: 16px;
z-index: 20;
}
::v-deep .ant-drawer-header {
top: 0;
position: sticky;
z-index: 20;
}
::v-deep .ant-drawer-header .ant-drawer-title{
font-weight: bold;
::v-deep .ant-drawer-header .ant-drawer-title {
font-weight: bold;
}
</style>