企标备案日期展示
This commit is contained in:
+15
-2
@@ -786,7 +786,14 @@
|
|||||||
></custom-input>
|
></custom-input>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="field.attrType === 'DATE_PICKER'">
|
<template v-else-if="field.attrType === 'DATE_PICKER' && field.attrField !== 'BARQ'">
|
||||||
|
<custom-date-pick
|
||||||
|
:config="field"
|
||||||
|
v-model="sarBussionessStandEO[field.attrField]"
|
||||||
|
:disabled="formdisableflag"
|
||||||
|
></custom-date-pick>
|
||||||
|
</template>
|
||||||
|
<template v-else-if="field.attrType === 'DATE_PICKER' && field.attrField === 'BARQ' && QCBFC">
|
||||||
<custom-date-pick
|
<custom-date-pick
|
||||||
:config="field"
|
:config="field"
|
||||||
v-model="sarBussionessStandEO[field.attrField]"
|
v-model="sarBussionessStandEO[field.attrField]"
|
||||||
@@ -1154,7 +1161,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<!-- 备案日期 -->
|
<!-- 备案日期 -->
|
||||||
<el-form-item label="备案日期" class="add-form-item form-item-disabled">
|
<el-form-item label="备案日期" class="add-form-item form-item-disabled">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="sarBussionessSearch.BARQ"
|
v-model="sarBussionessSearch.BARQ"
|
||||||
type="daterange"
|
type="daterange"
|
||||||
@@ -1690,6 +1697,7 @@ export default {
|
|||||||
props: {},
|
props: {},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
QCBFC: false, //C类标准展示备案日期
|
||||||
replaceLawsNumModel: false,
|
replaceLawsNumModel: false,
|
||||||
replaceLawType: '',
|
replaceLawType: '',
|
||||||
sarBussionessLawsEO: {
|
sarBussionessLawsEO: {
|
||||||
@@ -3569,6 +3577,11 @@ export default {
|
|||||||
this.$http.get('lawss/sarBussionessStand/getStandInfoUpdateById', {id: row.id}, {
|
this.$http.get('lawss/sarBussionessStand/getStandInfoUpdateById', {id: row.id}, {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
|
if(res.data.standCode.includes('Q/QCBFC')){
|
||||||
|
this.QCBFC = true
|
||||||
|
}else{
|
||||||
|
this.QCBFC = false
|
||||||
|
}
|
||||||
const item = res.data || {}
|
const item = res.data || {}
|
||||||
this.drawerTitle = '修改企业标准'
|
this.drawerTitle = '修改企业标准'
|
||||||
this.modalshowflag = true
|
this.modalshowflag = true
|
||||||
|
|||||||
Reference in New Issue
Block a user