修改禅道已知bug

This commit is contained in:
qq787203167
2022-08-23 11:55:34 +08:00
parent 086e3a8e41
commit cbf7114a1f
@@ -73,6 +73,7 @@
</div>
<a-form-model-item class="itemModel" prop="problemType">
<a-select :placeholder="$t('PleaseSelect')+$t('problemClassification')"
@change="problemTypeChange"
v-model="formInline.problemType">
<a-select-option v-for="(item, key) in problemTypeList"
:key="key"
@@ -299,6 +300,13 @@
}
})
},
problemTypeChange(event) {
let content = this.problemTypeList.filter(res => {
return res.id == event
})
this.formInline.problemTypeName = content[0].problemLabel
this.formInline = { ...this.formInline }
},
queryById() {
let query = {
id: this.$route.query.id
@@ -333,7 +341,7 @@
})
}
,
showPermissionsChange(event) {
showPermissionsChange(event, name) {
if (event == 'Open') {
this.isDisplay = false
} else {