mirror of
https://github.com/xfgryujk/blivechat.git
synced 2024-12-25 20:30:28 +08:00
优化前端两个按钮
This commit is contained in:
parent
4874fe464b
commit
64f77c5df9
@ -69,7 +69,7 @@ export default {
|
||||
roomUrlUpdated: 'The room URL is updated. Remember to copy it again',
|
||||
roomUrl: 'Room URL',
|
||||
enterRoom: 'Enter room',
|
||||
enterTestRoom: 'Enter test room',
|
||||
copyTestRoomUrl: 'Copy test room URL',
|
||||
exportConfig: 'Export config',
|
||||
importConfig: 'Import config',
|
||||
|
||||
@ -150,6 +150,7 @@ export default {
|
||||
|
||||
result: 'Result',
|
||||
copy: 'Copy',
|
||||
editor: 'Editor',
|
||||
resetConfig: 'Reset config'
|
||||
},
|
||||
help: {
|
||||
|
@ -69,7 +69,7 @@ export default {
|
||||
roomUrlUpdated: 'ルームのURLが更新されました。再度コピーすることをお忘れなく',
|
||||
roomUrl: 'ルームのURL',
|
||||
enterRoom: 'ルームに入る',
|
||||
enterTestRoom: 'テストルームに入る',
|
||||
copyTestRoomUrl: 'テストルームのURLをコピーする',
|
||||
exportConfig: 'コンフィグの導出',
|
||||
importConfig: 'コンフィグの導入',
|
||||
|
||||
@ -150,6 +150,7 @@ export default {
|
||||
|
||||
result: '結果',
|
||||
copy: 'コピー',
|
||||
editor: 'エディタ',
|
||||
resetConfig: 'デフォルトに戻す'
|
||||
},
|
||||
help: {
|
||||
|
@ -69,7 +69,7 @@ export default {
|
||||
roomUrlUpdated: '房间URL已更新,记得重新复制',
|
||||
roomUrl: '房间URL',
|
||||
enterRoom: '进入房间',
|
||||
enterTestRoom: '进入测试房间',
|
||||
copyTestRoomUrl: '复制测试房间URL',
|
||||
exportConfig: '导出配置',
|
||||
importConfig: '导入配置',
|
||||
|
||||
@ -150,6 +150,7 @@ export default {
|
||||
|
||||
result: '结果',
|
||||
copy: '复制',
|
||||
editor: '编辑器',
|
||||
resetConfig: '恢复默认设置'
|
||||
},
|
||||
help: {
|
||||
|
@ -235,7 +235,7 @@
|
||||
</el-tooltip>
|
||||
<el-form-item>
|
||||
<el-button type="primary" :disabled="!roomUrl" @click="enterRoom">{{$t('home.enterRoom')}}</el-button>
|
||||
<el-button @click="enterTestRoom">{{$t('home.enterTestRoom')}}</el-button>
|
||||
<el-button @click="copyTestRoomUrl">{{$t('home.copyTestRoomUrl')}}</el-button>
|
||||
<el-button @click="exportConfig">{{$t('home.exportConfig')}}</el-button>
|
||||
<el-button @click="importConfig">{{$t('home.importConfig')}}</el-button>
|
||||
</el-form-item>
|
||||
@ -378,8 +378,8 @@ export default {
|
||||
enterRoom() {
|
||||
window.open(this.roomUrl, `room ${this.roomKeyValue}`, 'menubar=0,location=0,scrollbars=0,toolbar=0,width=600,height=600')
|
||||
},
|
||||
enterTestRoom() {
|
||||
window.open(this.getUnvalidatedRoomUrl(true), 'test room', 'menubar=0,location=0,scrollbars=0,toolbar=0,width=600,height=600')
|
||||
copyTestRoomUrl() {
|
||||
window.navigator.clipboard.writeText(this.getUnvalidatedRoomUrl(true))
|
||||
},
|
||||
getUnvalidatedRoomUrl(isTestRoom) {
|
||||
// 重要的字段放在前面,因为如果被截断就连接不了房间了
|
||||
|
@ -18,6 +18,9 @@
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="copyResult">{{ $t('stylegen.copy') }}</el-button>
|
||||
<a target="_blank" href="https://vscode.dev/">
|
||||
<el-button style="margin: 0 10px">{{ $t('stylegen.editor') }}</el-button>
|
||||
</a>
|
||||
<el-button @click="resetConfig">{{ $t('stylegen.resetConfig') }}</el-button>
|
||||
</el-form-item>
|
||||
</el-card>
|
||||
|
Loading…
Reference in New Issue
Block a user