diff --git a/nezha-fronted/src/components/common/mixin/dataList.js b/nezha-fronted/src/components/common/mixin/dataList.js index ed43a7372..450a21f60 100644 --- a/nezha-fronted/src/components/common/mixin/dataList.js +++ b/nezha-fronted/src/components/common/mixin/dataList.js @@ -1096,38 +1096,6 @@ export default { val: '' }, jsonKey: 'val' - }, - starrd: { - target: this.searchLabel, - isSearchInput: true, - propertyName: 'starrd', - type: 'Number', - defaultJson: { - disabled: false, - label: 'starrd', - name: 'Starrd', - type: 'select', - val: '', - valnum: '', - listStr: 'issue' - }, - jsonKey: 'valnum' - }, - buildIn: { - target: this.searchLabel, - isSearchInput: true, - propertyName: 'buildIn', - type: 'Number', - defaultJson: { - disabled: false, - label: 'buildIn', - name: 'buildIn', - type: 'select', - val: '', - valnum: '', - listStr: 'issue' - }, - jsonKey: 'valnum' } } } else if (path === 'issue') { diff --git a/nezha-fronted/src/components/common/searchInput.vue b/nezha-fronted/src/components/common/searchInput.vue index 57e56ad47..1f1db1055 100644 --- a/nezha-fronted/src/components/common/searchInput.vue +++ b/nezha-fronted/src/components/common/searchInput.vue @@ -966,8 +966,6 @@ export default { objectInfo.starrd = val.valnum } else if (val.label === 'recordType') { objectInfo.type = val.valnum - } else if (val.label === 'buildIn') { - objectInfo.buildIn = val.valnum } else if (val.label === 'issueState') { objectInfo.state = val.valnum } else if (val.label === 'priority') { diff --git a/nezha-fronted/src/components/common/searchSelectInfo.js b/nezha-fronted/src/components/common/searchSelectInfo.js index 67f1d94a9..df0bf2d35 100644 --- a/nezha-fronted/src/components/common/searchSelectInfo.js +++ b/nezha-fronted/src/components/common/searchSelectInfo.js @@ -218,16 +218,16 @@ export default { label: i18n.t('overall.logs') } ], - buildIn: [ - { - value: 1, - label: i18n.t('overall.buildIn') - }, - { - value: 0, - label: i18n.t('overall.unbuildIn') - } - ], + // buildIn: [ + // { + // value: 1, + // label: i18n.t('overall.buildIn') + // }, + // { + // value: 0, + // label: i18n.t('overall.unbuildIn') + // } + // ], ack: [ { value: '1', diff --git a/nezha-fronted/src/components/page/config/recordRule.vue b/nezha-fronted/src/components/page/config/recordRule.vue index 9e3ff467f..7c1acd393 100644 --- a/nezha-fronted/src/components/page/config/recordRule.vue +++ b/nezha-fronted/src/components/page/config/recordRule.vue @@ -130,18 +130,6 @@ export default { type: 'select', label: 'recordState', disabled: false - }, - { - name: this.$t('overall.starred'), - type: 'select', - label: 'starrd', - disabled: false - }, - { - name: this.$t('overall.buildIn'), - type: 'select', - label: 'buildIn', - disabled: false } ] },