pad页面工具栏添加中英文切换
This commit is contained in:
parent
4ff3d25fed
commit
bd98498969
Binary file not shown.
After Width: | Height: | Size: 1001 B |
Binary file not shown.
Before Width: | Height: | Size: 755 B After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 508 B After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
|
@ -108,27 +108,53 @@
|
||||||
v-if="plan_running"
|
v-if="plan_running"
|
||||||
@click="stopPlan"
|
@click="stopPlan"
|
||||||
/>
|
/>
|
||||||
|
<q-space />
|
||||||
<q-btn
|
<q-btn
|
||||||
class="col-auto"
|
class="col-auto"
|
||||||
:class="$store.state.landspace ? 'q-mx-sm' : ''"
|
:class="$store.state.landspace ? 'q-mx-sm' : ''"
|
||||||
stretch
|
stretch
|
||||||
stack
|
stack
|
||||||
flat
|
flat
|
||||||
icon="img:pad/toolbar/file_upload_icon.png"
|
icon="img:pad/toolbar/other_setting.png"
|
||||||
:label="$t('file manage')"
|
:label="$t('other setting')"
|
||||||
@click="$refs.file_manage_dialog.showDialog()"
|
>
|
||||||
/>
|
<q-popup-proxy>
|
||||||
<q-btn
|
<q-list class="shadow-2 text-primary">
|
||||||
class="col"
|
<q-item
|
||||||
:class="$store.state.landspace ? 'q-mx-sm' : ''"
|
clickable
|
||||||
stretch
|
v-close-popup
|
||||||
stack
|
@click="$refs.file_manage_dialog.showDialog()"
|
||||||
flat
|
>
|
||||||
icon="img:pad/toolbar/wallpaper_icon.png"
|
<q-item-section avatar>
|
||||||
:label="$t('background image')"
|
<q-icon name="img:pad/toolbar/file_upload_icon.png" />
|
||||||
@click="$refs.background_image_dialog.showDialog()"
|
</q-item-section>
|
||||||
/>
|
<q-item-section>
|
||||||
|
{{ $t("file manage") }}
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item
|
||||||
|
clickable
|
||||||
|
v-close-popup
|
||||||
|
@click="$refs.background_image_dialog.showDialog()"
|
||||||
|
>
|
||||||
|
<q-item-section avatar>
|
||||||
|
<q-icon name="img:pad/toolbar/wallpaper_icon.png" />
|
||||||
|
</q-item-section>
|
||||||
|
<q-item-section>
|
||||||
|
{{ $t("background image setting") }}
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item clickable v-close-popup @click="switchLanguage">
|
||||||
|
<q-item-section avatar>
|
||||||
|
<q-icon name="img:pad/toolbar/cn_en.png" />
|
||||||
|
</q-item-section>
|
||||||
|
<q-item-section>
|
||||||
|
{{ $t("CN/EN switch") }}
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
</q-list>
|
||||||
|
</q-popup-proxy>
|
||||||
|
</q-btn>
|
||||||
<div class="col"></div>
|
<div class="col"></div>
|
||||||
<q-btn
|
<q-btn
|
||||||
class="col"
|
class="col"
|
||||||
|
@ -260,13 +286,6 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
closeAllWindows() {
|
closeAllWindows() {
|
||||||
// for (const window of $store.state.windows) {
|
|
||||||
// if (window) {
|
|
||||||
// GlobalData.getInstance()
|
|
||||||
// .getCurrentClient()
|
|
||||||
// ?.closeWindow(window.window_id);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
GlobalData.getInstance().getCurrentClient()?.closeWindow(-1);
|
GlobalData.getInstance().getCurrentClient()?.closeWindow(-1);
|
||||||
},
|
},
|
||||||
switchLanguage() {
|
switchLanguage() {
|
||||||
|
|
Loading…
Reference in New Issue