修改禅道已知bug
This commit is contained in:
+9
-1
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user