mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-04-17 11:38:05 +08:00
实现关键词排序UI
This commit is contained in:
@@ -1,29 +1,30 @@
|
||||
<template>
|
||||
<v-card
|
||||
class="ml-4 mt-4 mb-4 mr-4"
|
||||
>
|
||||
<v-card-title>Nexitally</v-card-title>
|
||||
<v-carousel
|
||||
cycle
|
||||
height="250"
|
||||
:show-arrows="false"
|
||||
>
|
||||
<v-carousel-item>
|
||||
<v-chart
|
||||
:options="pie"
|
||||
class="remains !important"
|
||||
autoresize
|
||||
/>
|
||||
</v-carousel-item>
|
||||
<v-carousel-item>
|
||||
<v-chart
|
||||
:options="pie"
|
||||
class="remains !important"
|
||||
autoresize
|
||||
/>
|
||||
</v-carousel-item>
|
||||
</v-carousel>
|
||||
</v-card>
|
||||
<!-- <v-card-->
|
||||
<!-- class="ml-4 mt-4 mb-4 mr-4"-->
|
||||
<!-- >-->
|
||||
<!-- <v-card-title>Nexitally</v-card-title>-->
|
||||
<!-- <v-carousel-->
|
||||
<!-- cycle-->
|
||||
<!-- height="250"-->
|
||||
<!-- :show-arrows="false"-->
|
||||
<!-- >-->
|
||||
<!-- <v-carousel-item>-->
|
||||
<!-- <v-chart-->
|
||||
<!-- :options="pie"-->
|
||||
<!-- class="remains !important"-->
|
||||
<!-- autoresize-->
|
||||
<!-- />-->
|
||||
<!-- </v-carousel-item>-->
|
||||
<!-- <v-carousel-item>-->
|
||||
<!-- <v-chart-->
|
||||
<!-- :options="pie"-->
|
||||
<!-- class="remains !important"-->
|
||||
<!-- autoresize-->
|
||||
<!-- />-->
|
||||
<!-- </v-carousel-item>-->
|
||||
<!-- </v-carousel>-->
|
||||
<!-- </v-card>-->
|
||||
<v-container></v-container>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -33,6 +34,7 @@ import 'echarts/lib/chart/pie';
|
||||
export default {
|
||||
name: "Dashboard",
|
||||
components: {
|
||||
// eslint-disable-next-line vue/no-unused-components
|
||||
"v-chart": ECharts
|
||||
},
|
||||
computed: {
|
||||
|
||||
@@ -167,6 +167,7 @@ import RegexDeleteOperator from "@/components/RegexDeleteOperator";
|
||||
import FlagOperator from "@/components/FlagOperator";
|
||||
import ScriptFilter from "@/components/ScriptFilter";
|
||||
import ScriptOperator from "@/components/ScriptOperator";
|
||||
import KeywordSortOperator from "@/components/KeywordSortOperator";
|
||||
|
||||
const AVAILABLE_PROCESSORS = {
|
||||
"Flag Operator": {
|
||||
@@ -193,6 +194,10 @@ const AVAILABLE_PROCESSORS = {
|
||||
component: "SortOperator",
|
||||
name: "节点排序"
|
||||
},
|
||||
"Keyword Sort Operator": {
|
||||
component: "KeywordSortOperator",
|
||||
name: "关键词排序"
|
||||
},
|
||||
"Keyword Rename Operator": {
|
||||
component: "KeywordRenameOperator",
|
||||
name: "关键词重命名"
|
||||
@@ -228,6 +233,7 @@ export default {
|
||||
TypeFilter,
|
||||
SortOperator,
|
||||
KeywordRenameOperator,
|
||||
KeywordSortOperator,
|
||||
RegexRenameOperator,
|
||||
KeywordDeleteOperator,
|
||||
RegexDeleteOperator,
|
||||
|
||||
Reference in New Issue
Block a user