mirror of
https://gitee.com/viarotel-org/escrcpy.git
synced 2024-11-29 18:01:34 +08:00
perf: 💄 Optimization of the operation bar at the top of the equipment list
This commit is contained in:
parent
07e052e838
commit
81bd3d986b
@ -3,6 +3,7 @@
|
||||
"type": "module",
|
||||
"version": "1.21.4",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.4.0+sha1.9217c800d4ab947a7aee520242a7b70d64fc7638",
|
||||
"description": "Scrcpy Powered by Electron",
|
||||
"author": "viarotel",
|
||||
"homepage": "https://github.com/viarotel-org/escrcpy",
|
||||
|
@ -1,34 +1,36 @@
|
||||
<template>
|
||||
<div class="h-full flex flex-col">
|
||||
<div class="flex items-center flex-none space-x-2 py-1 overflow-x-auto">
|
||||
<Wireless ref="wireless" :reload="getDeviceData" />
|
||||
<div class="flex-none flex items-center py-1 overflow-x-auto">
|
||||
<div class="flex-none">
|
||||
<Wireless ref="wireless" :reload="getDeviceData" />
|
||||
</div>
|
||||
|
||||
<div class="w-px h-7 !ml-4 !mr-2 bg-gray-200"></div>
|
||||
<div class="flex-1 w-0 flex items-center justify-end space-x-2">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
:icon="loading ? '' : 'Refresh'"
|
||||
:loading="loading"
|
||||
@click="handleRefresh"
|
||||
>
|
||||
{{ $t('device.refresh.name') }}
|
||||
</el-button>
|
||||
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
:icon="loading ? '' : 'Refresh'"
|
||||
:loading="loading"
|
||||
@click="handleRefresh"
|
||||
>
|
||||
{{ $t('device.refresh.name') }}
|
||||
</el-button>
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="RefreshRight"
|
||||
@click="handleRestart"
|
||||
>
|
||||
{{ $t('device.restart.name') }}
|
||||
</el-button>
|
||||
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="RefreshRight"
|
||||
@click="handleRestart"
|
||||
>
|
||||
{{ $t('device.restart.name') }}
|
||||
</el-button>
|
||||
<el-button plain icon="View" @click="handleLog">
|
||||
{{ $t('device.log.name') }}
|
||||
</el-button>
|
||||
|
||||
<el-button plain icon="View" @click="handleLog">
|
||||
{{ $t('device.log.name') }}
|
||||
</el-button>
|
||||
|
||||
<TerminalAction ref="terminalActionRef" />
|
||||
<TerminalAction ref="terminalActionRef" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<BatchActions
|
||||
|
Loading…
Reference in New Issue
Block a user