Skip to content

Commit

Permalink
完善一些说明
Browse files Browse the repository at this point in the history
  • Loading branch information
Mooooooon committed Dec 18, 2023
1 parent ffa095a commit 3378180
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 20 deletions.
1 change: 1 addition & 0 deletions components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ declare module 'vue' {
ElFooter: typeof import('element-plus/es')['ElFooter']
ElHeader: typeof import('element-plus/es')['ElHeader']
ElImage: typeof import('element-plus/es')['ElImage']
ElLink: typeof import('element-plus/es')['ElLink']
ElMain: typeof import('element-plus/es')['ElMain']
ElMenu: typeof import('element-plus/es')['ElMenu']
ElMenuItem: typeof import('element-plus/es')['ElMenuItem']
Expand Down
Binary file modified public/readme.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/components/Blacksmith.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<el-row>
<el-col :span="10">
<el-button @click="takeScreenshot">截图</el-button>
<el-text class="mx-1"> 请打开强化装备界面</el-text>
<el-descriptions v-if="enhancedRecommendation" class="gear-info" title="装备信息" :column="1">
<el-descriptions-item label="强化等级">
{{ enhancementLevel !== undefined ? '+' + enhancementLevel : '' }}
Expand Down
8 changes: 3 additions & 5 deletions src/components/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<template>
<el-text
class="mx-1"
:type="adbStore.status === 1 ? 'success' : 'danger'"
size="large">
ADB状态: {{ adbStore.status === 1? '已连接' : '未连接' }}
<el-text class="mx-1" :type="adbStore.status === 1 ? 'success' : 'danger'" size="large">
ADB状态: {{ adbStore.status === 1 ? '已连接' : '未连接' }}
</el-text>
<el-text class="mx-1" style="float: right;">李铁柱@熊熊幼儿园</el-text>
</template>

<script lang="ts" setup>
Expand Down
61 changes: 46 additions & 15 deletions src/components/Welcome.vue
Original file line number Diff line number Diff line change
@@ -1,20 +1,51 @@
<template>
<el-row>
<el-autocomplete v-model="state" :fetch-suggestions="querySearch" placeholder="输入模拟器端口" @select="handleSelect"
class="port-input" clearable>
<template #default="{ item }">
<span class="name">{{ item.name }}</span>
<span class="value">{{ item.value }}</span>
</template>
</el-autocomplete>
</el-row>
<el-row>
<el-button @click="connectADB">连接</el-button>
</el-row>
<el-row>
<el-select v-model="value" placeholder="选择模拟器" @change="handleChange" class="device-select">
<el-option v-for="item in options" :value="item.value" />
</el-select>
<el-col :span="12">
<el-row>
<el-col>
<el-autocomplete v-model="state" :fetch-suggestions="querySearch" placeholder="输入模拟器端口"
@select="handleSelect" class="port-input" clearable>
<template #default="{ item }">
<span class="name">{{ item.name }}</span>
<span class="value">{{ item.value }}</span>
</template>
</el-autocomplete>
</el-col>
</el-row>
<el-row>
<el-col>
<el-button @click="connectADB">连接</el-button>
</el-col>
</el-row>
<el-row>
<el-col>
<el-select v-model="value" placeholder="选择模拟器" @change="handleChange" class="device-select">
<el-option v-for="item in options" :value="item.value" />
</el-select>
</el-col>
</el-row>
</el-col>
<el-col :span="12">
<el-row>
<el-text type="danger">仅支持16:9 分辨率请勿太低</el-text>
</el-row>
<el-row>
<el-text>输入端口号后连接模拟器 默认端口号不一定对请自己查看</el-text>
</el-row>
<el-row>
<el-text>以85红装为基础制作 其他等级仅供参考</el-text>
</el-row>
<el-row>
<el-text>不考虑纯速度装 纯速度装请自行斟酌</el-text>
</el-row>
<el-row>
<el-text>+6成本较低 +3后不推荐的装备也可以考虑强化</el-text>
</el-row>
<el-row>
<el-link href="https://github.com/Mooooooon/TiezhuToolbox" type="primary" target="_blank">Github</el-link>
<el-text>👈给我点个Star吧⭐</el-text>
</el-row>
</el-col>
</el-row>
</template>

Expand Down

0 comments on commit 3378180

Please sign in to comment.