mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-04-17 18:28:03 +08:00
添加正则过滤器,关键词过滤器
This commit is contained in:
@@ -173,6 +173,8 @@
|
||||
import {showError, showInfo} from "@/utils";
|
||||
import TypeFilter from "@/components/TypeFilter";
|
||||
import RegionFilter from "@/components/RegionFilter";
|
||||
import KeywordFilter from "@/components/KeywordFilter";
|
||||
import RegexFilter from "@/components/RegexFilter";
|
||||
|
||||
const AVAILABLE_PROCESSORS = {
|
||||
"Type Filter": {
|
||||
@@ -182,11 +184,19 @@ const AVAILABLE_PROCESSORS = {
|
||||
"Region Filter": {
|
||||
component: "RegionFilter",
|
||||
name: "区域过滤器"
|
||||
},
|
||||
"Keyword Filter": {
|
||||
component: "KeywordFilter",
|
||||
name: "关键词过滤器"
|
||||
},
|
||||
"Regex Filter": {
|
||||
component: "RegexFilter",
|
||||
name: "正则过滤器"
|
||||
}
|
||||
}
|
||||
|
||||
export default {
|
||||
components: {RegionFilter, TypeFilter},
|
||||
components: {KeywordFilter, RegexFilter, RegionFilter, TypeFilter},
|
||||
data: function () {
|
||||
return {
|
||||
selectedProcess: null,
|
||||
|
||||
Reference in New Issue
Block a user