add(refreshTokenService):完善刷新令牌服务

This commit is contained in:
2025-11-16 10:55:26 +08:00
12 changed files with 634 additions and 160 deletions
+24 -5
View File
@@ -23,12 +23,25 @@
</button>
<button class="control-btn maximize" @click="maximize" title="最大化">
<svg width="12" height="12" viewBox="0 0 12 12">
<rect x="2" y="2" width="8" height="8" stroke="currentColor" fill="none" stroke-width="1.2" />
<rect
x="2"
y="2"
width="8"
height="8"
stroke="currentColor"
fill="none"
stroke-width="1.2"
/>
</svg>
</button>
<button class="control-btn close" @click="close" title="关闭">
<svg width="12" height="12" viewBox="0 0 12 12">
<path d="M2 2l8 8M10 2L2 10" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
<path
d="M2 2l8 8M10 2L2 10"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
/>
</svg>
</button>
</div>
@@ -42,9 +55,15 @@
</template>
<script setup>
function minimize() { console.log('最小化') }
function maximize() { console.log('最化') }
function close() { console.log('关闭') }
function minimize() {
console.log('最化')
}
function maximize() {
console.log('最大化')
}
function close() {
console.log('关闭')
}
</script>
<style scoped>