|
|
|
@ -1,5 +1,18 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<view class="setting-container" :style="{ height: `${windowHeight}px` }">
|
|
|
|
<view class="setting-container" :style="{ height: `${windowHeight}px` }">
|
|
|
|
|
|
|
|
<u-sticky
|
|
|
|
|
|
|
|
class="sticky"
|
|
|
|
|
|
|
|
:custom-nav-height="0"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<u-navbar
|
|
|
|
|
|
|
|
title="应用设置"
|
|
|
|
|
|
|
|
bg-color="transparent"
|
|
|
|
|
|
|
|
:auto-back="true"
|
|
|
|
|
|
|
|
:title-style="{ fontWeight: 'bold' }"
|
|
|
|
|
|
|
|
safe-area-inset-top
|
|
|
|
|
|
|
|
placeholder
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</u-sticky>
|
|
|
|
<view class="menu-list">
|
|
|
|
<view class="menu-list">
|
|
|
|
<view class="list-cell list-cell-arrow" @click="handleToPwd">
|
|
|
|
<view class="list-cell list-cell-arrow" @click="handleToPwd">
|
|
|
|
<view class="menu-item-box">
|
|
|
|
<view class="menu-item-box">
|
|
|
|
@ -89,6 +102,13 @@ function dialogClose() {
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.sticky {
|
|
|
|
|
|
|
|
background: linear-gradient(180deg, #d4e9ff 0%, #f3f9ff 100%);
|
|
|
|
|
|
|
|
backdrop-filter: blur(27.18px);
|
|
|
|
|
|
|
|
box-shadow: 0 1px 1px 0 rgba(0, 72, 145, 0.1),
|
|
|
|
|
|
|
|
0 0.5px 0 0 rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.item-box {
|
|
|
|
.item-box {
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
margin: 30rpx;
|
|
|
|
margin: 30rpx;
|
|
|
|
|