feat(api): 添加重置用户密码接口

This commit is contained in:
Ray.Hao
2026-03-13 20:35:55 +08:00
parent 306d167a55
commit 24d1c3477b
21 changed files with 657 additions and 688 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view class="page page--padding page--pt">
<view class="page page--padding">
<view>
<wd-search
v-model="queryParams.keywords"
@@ -19,7 +19,7 @@
>
<!-- 自定义节点内容ID + 名称 + 状态 -->
<template #content="{ node }">
<view class="flex-1 flex flex-nowrap items-center gap-16rpx">
<view class="menu-node">
<text class="w-120rpx text-24rpx color-text-secondary">{{ node.id }}</text>
<wd-icon v-if="node.icon" :name="node.icon" size="16" class="color-primary" />
<text class="flex-1 truncate">{{ node.name }}</text>
@@ -401,4 +401,12 @@ export default { options: { styleIsolation: "shared" } };
gap: 24rpx;
margin-top: 32rpx;
}
.menu-node {
display: flex;
flex: 1;
flex-wrap: nowrap;
gap: 16rpx;
align-items: center;
}
</style>