mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-07 21:46:12 +08:00
优化CommandConfig布局,节省空间
This commit is contained in:
parent
49fdd973c1
commit
66a4283b9b
@ -11,6 +11,7 @@
|
|||||||
<CommandConfig
|
<CommandConfig
|
||||||
v-if="!isRunCodePage"
|
v-if="!isRunCodePage"
|
||||||
v-model="commandManager.state.currentCommand"
|
v-model="commandManager.state.currentCommand"
|
||||||
|
from="quickcommand"
|
||||||
@update:is-expanded="isConfigExpanded = $event"
|
@update:is-expanded="isConfigExpanded = $event"
|
||||||
:expand-on-focus="true"
|
:expand-on-focus="true"
|
||||||
class="command-config"
|
class="command-config"
|
||||||
|
@ -76,6 +76,7 @@
|
|||||||
class="command-config-panel"
|
class="command-config-panel"
|
||||||
v-if="flow.id === 'main' && showCommandConfig"
|
v-if="flow.id === 'main' && showCommandConfig"
|
||||||
:model-value="commandConfig"
|
:model-value="commandConfig"
|
||||||
|
from="quickcomposer"
|
||||||
@update:model-value="updateCommandConfig"
|
@update:model-value="updateCommandConfig"
|
||||||
/>
|
/>
|
||||||
<ComposerFlow
|
<ComposerFlow
|
||||||
|
@ -3,9 +3,10 @@
|
|||||||
v-model="isExpanded"
|
v-model="isExpanded"
|
||||||
@update:model-value="$emit('update:is-expanded', $event)"
|
@update:model-value="$emit('update:is-expanded', $event)"
|
||||||
class="command-composer command-config"
|
class="command-composer command-config"
|
||||||
|
expand-icon-toggle
|
||||||
>
|
>
|
||||||
<template v-slot:header>
|
<template v-slot:header>
|
||||||
<div class="row basic-config">
|
<div class="row basic-config q-col-gutter-sm">
|
||||||
<q-avatar size="36px" square class="featureIco">
|
<q-avatar size="36px" square class="featureIco">
|
||||||
<q-img
|
<q-img
|
||||||
@click.stop="showIconPicker = true"
|
@click.stop="showIconPicker = true"
|
||||||
@ -15,7 +16,7 @@
|
|||||||
<q-input
|
<q-input
|
||||||
ref="explainInput"
|
ref="explainInput"
|
||||||
:model-value="currentCommand.features.explain"
|
:model-value="currentCommand.features.explain"
|
||||||
borderless
|
filled
|
||||||
dense
|
dense
|
||||||
@update:model-value="updateModelValue('features.explain', $event)"
|
@update:model-value="updateModelValue('features.explain', $event)"
|
||||||
@click.stop
|
@click.stop
|
||||||
@ -24,6 +25,28 @@
|
|||||||
class="col"
|
class="col"
|
||||||
>
|
>
|
||||||
</q-input>
|
</q-input>
|
||||||
|
<q-select
|
||||||
|
class="col-6 tag-select"
|
||||||
|
:model-value="currentCommand.tags"
|
||||||
|
@update:model-value="updateModelValue('tags', $event)"
|
||||||
|
:options="allQuickCommandTags"
|
||||||
|
@focus="expandOnFocus && updateExpanded(true)"
|
||||||
|
dense
|
||||||
|
options-dense
|
||||||
|
filled
|
||||||
|
use-input
|
||||||
|
use-chips
|
||||||
|
multiple
|
||||||
|
hide-dropdown-icon
|
||||||
|
new-value-mode="add-unique"
|
||||||
|
popup-content-class="command-tag-popup"
|
||||||
|
placeholder="标签,回车添加,最多3个"
|
||||||
|
max-values="3"
|
||||||
|
@new-value="tagVerify"
|
||||||
|
input-debounce="0"
|
||||||
|
ref="commandTagRef"
|
||||||
|
@blur="(e) => autoAddInputVal(e, $refs.commandTagRef)"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -59,42 +82,19 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 标签 -->
|
<!-- 输出和搜索面板推送 -->
|
||||||
<div class="config-section">
|
|
||||||
<div class="section-title">
|
|
||||||
<q-icon name="label" size="16px" />
|
|
||||||
<span class="q-ml-sm">标签</span>
|
|
||||||
</div>
|
|
||||||
<q-select
|
|
||||||
:model-value="currentCommand.tags"
|
|
||||||
@update:model-value="updateModelValue('tags', $event)"
|
|
||||||
:options="allQuickCommandTags"
|
|
||||||
dense
|
|
||||||
options-dense
|
|
||||||
filled
|
|
||||||
use-input
|
|
||||||
use-chips
|
|
||||||
multiple
|
|
||||||
hide-dropdown-icon
|
|
||||||
new-value-mode="add-unique"
|
|
||||||
popup-content-class="command-tag-popup"
|
|
||||||
placeholder="回车添加,最多3个"
|
|
||||||
max-values="3"
|
|
||||||
@new-value="tagVerify"
|
|
||||||
input-debounce="0"
|
|
||||||
ref="commandTagRef"
|
|
||||||
@blur="(e) => autoAddInputVal(e, $refs.commandTagRef)"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 输出 -->
|
|
||||||
<div class="config-section">
|
<div class="config-section">
|
||||||
|
<div class="row q-col-gutter-sm">
|
||||||
|
<div
|
||||||
|
:class="{
|
||||||
|
'col-12': from === 'quickcomposer',
|
||||||
|
'col-8': from === 'quickcommand',
|
||||||
|
}"
|
||||||
|
>
|
||||||
<div class="section-title">
|
<div class="section-title">
|
||||||
<q-icon name="output" size="16px" />
|
<q-icon name="output" size="16px" />
|
||||||
<span class="q-ml-sm">输出</span>
|
<span class="q-ml-sm">输出</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="row q-col-gutter-sm">
|
|
||||||
<div class="col-12">
|
|
||||||
<ButtonGroup
|
<ButtonGroup
|
||||||
:model-value="currentCommand.output"
|
:model-value="currentCommand.output"
|
||||||
:options="outputTypesOptionsDy"
|
:options="outputTypesOptionsDy"
|
||||||
@ -102,25 +102,29 @@
|
|||||||
height="26px"
|
height="26px"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12">
|
<div
|
||||||
|
:class="{
|
||||||
|
'col-12': from === 'quickcomposer',
|
||||||
|
'col-4': from === 'quickcommand',
|
||||||
|
}"
|
||||||
|
:style="{
|
||||||
|
'margin-top': from === 'quickcomposer' ? '-4px' : '0',
|
||||||
|
}"
|
||||||
|
>
|
||||||
<div class="section-title">
|
<div class="section-title">
|
||||||
<q-icon name="search" size="16px" />
|
<q-icon name="search" size="16px" />
|
||||||
<span class="q-ml-sm"
|
<span class="q-ml-sm q-mr-xs"> 搜索面板推送 </span>
|
||||||
>搜索面板推送
|
<q-icon
|
||||||
<q-btn
|
name="help"
|
||||||
flat
|
class="cursor-pointer"
|
||||||
round
|
@click.stop="showMainPushHelp"
|
||||||
size="xs"
|
|
||||||
icon="help"
|
|
||||||
@click="showMainPushHelp"
|
|
||||||
/>
|
/>
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
<ButtonGroup
|
<ButtonGroup
|
||||||
:model-value="currentCommand.features.mainPush"
|
:model-value="currentCommand.features.mainPush"
|
||||||
:options="searchPushOptions"
|
:options="searchPushOptions"
|
||||||
@update:model-value="handleMainPushChange"
|
@update:model-value="handleMainPushChange"
|
||||||
height="30px"
|
height="26px"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -179,6 +183,10 @@ export default defineComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
|
from: {
|
||||||
|
type: String,
|
||||||
|
default: "quickcommand",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
emits: ["update:modelValue", "update:is-expanded"],
|
emits: ["update:modelValue", "update:is-expanded"],
|
||||||
data() {
|
data() {
|
||||||
@ -315,9 +323,19 @@ export default defineComponent({
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.basic-config :deep(.q-field__native),
|
.tag-select :deep(.q-field__control) {
|
||||||
.basic-config :deep(.q-field__control) {
|
overflow-x: auto;
|
||||||
height: 36px;
|
}
|
||||||
|
|
||||||
|
.tag-select :deep(.q-field__native) {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
overflow-x: auto;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag-select :deep(.q-field__native::-webkit-scrollbar) {
|
||||||
|
height: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.command-config :deep(.q-item) {
|
.command-config :deep(.q-item) {
|
||||||
@ -327,7 +345,12 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
.command-config :deep(.q-item__section--side) {
|
.command-config :deep(.q-item__section--side) {
|
||||||
padding: 0;
|
padding-left: 8px;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.command-config :deep(.q-item__section--side .q-icon) {
|
||||||
|
top: 13px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.command-config :deep(.q-item:hover) {
|
.command-config :deep(.q-item:hover) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user