feat: 调整支持设置的过期天数 设置页添加handler安装引导 调整通知描述文本

This commit is contained in:
ZiuChen 2022-10-10 19:20:20 +08:00
parent 7418788f67
commit faf2c8b722
2 changed files with 3 additions and 3 deletions

View File

@ -256,7 +256,7 @@ export default function initPlugin() {
utools.outPlugin()
}
const errorHandler = (error) => {
const info = '请到设置页手动安装 clipboard-event-handler 剪贴板监听程序'
const info = '请到设置页检查剪贴板监听程序状态'
utools.showNotification('启动剪贴板监听程序启动出错: ' + error + info)
addCommonListener()
}

View File

@ -16,7 +16,7 @@
@click="handleLinkClick(1)"
title="手动安装剪贴板监听程序"
>
{{ listenStatus ? '已安装' : '未安装' }}
{{ listenStatus ? '已安装' : '未安装 点此查看安装方法' }}
</el-tag>
</div>
<div class="setting-card-content-item">
@ -36,7 +36,7 @@
<div class="setting-card-content-item">
<span>最长保存时间</span>
<el-select class="number-select" v-model="maxage" fit-input-width>
<el-option v-for="n in [8, 9, 10, 11, 12, 13, 14]" :key="n" :value="n" />
<el-option v-for="n in [1, 3, 5, 7, 14, 31]" :key="n" :value="n" />
</el-select>
</div>