fix
This commit is contained in:
+17
-112
@@ -47,118 +47,23 @@ async function logoutAndRedirect() {
|
||||
<router-view />
|
||||
</main>
|
||||
|
||||
<van-tabbar v-if="showShellNavigation" v-model="activeTab" route placeholder safe-area-inset-bottom>
|
||||
<van-tabbar-item to="/tasks" name="/tasks" icon="todo-list-o">Задачи</van-tabbar-item>
|
||||
<van-tabbar-item to="/contracts" name="/contracts" icon="orders-o">Контракты</van-tabbar-item>
|
||||
<van-tabbar-item to="/users" name="/users" icon="friends-o">Пользователи</van-tabbar-item>
|
||||
<van-tabbar
|
||||
v-if="showShellNavigation"
|
||||
v-model="activeTab"
|
||||
route
|
||||
placeholder
|
||||
safe-area-inset-bottom
|
||||
>
|
||||
<van-tabbar-item to="/tasks" name="/tasks" icon="todo-list-o"
|
||||
>Задачи</van-tabbar-item
|
||||
>
|
||||
<van-tabbar-item to="/contracts" name="/contracts" icon="orders-o"
|
||||
>Контракты</van-tabbar-item
|
||||
>
|
||||
<van-tabbar-item to="/users" name="/users" icon="friends-o"
|
||||
>Пользователи</van-tabbar-item
|
||||
>
|
||||
</van-tabbar>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
:root {
|
||||
font-family:
|
||||
Inter,
|
||||
ui-sans-serif,
|
||||
system-ui,
|
||||
-apple-system,
|
||||
BlinkMacSystemFont,
|
||||
"Segoe UI",
|
||||
sans-serif;
|
||||
color: #172033;
|
||||
background: #f7f8fa;
|
||||
font-synthesis: none;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
min-width: 320px;
|
||||
min-height: 100vh;
|
||||
background: #f7f8fa;
|
||||
}
|
||||
|
||||
.page {
|
||||
box-sizing: border-box;
|
||||
width: min(760px, 100%);
|
||||
margin: 0 auto;
|
||||
padding: 24px 14px 40px;
|
||||
}
|
||||
|
||||
.notice {
|
||||
margin-bottom: 12px;
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
.card {
|
||||
overflow: hidden;
|
||||
margin-bottom: 14px;
|
||||
border-radius: 18px;
|
||||
background: #fff;
|
||||
box-shadow: 0 12px 40px rgba(36, 42, 56, 0.08);
|
||||
}
|
||||
|
||||
.form-actions {
|
||||
padding: 14px 16px 16px;
|
||||
}
|
||||
|
||||
.list-card {
|
||||
padding: 14px 0 16px;
|
||||
}
|
||||
|
||||
.list-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
padding: 0 16px 12px;
|
||||
}
|
||||
|
||||
.list-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.stacked-actions {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 0;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.state {
|
||||
justify-content: center;
|
||||
padding: 34px 0;
|
||||
}
|
||||
|
||||
.detail-card {
|
||||
padding: 14px 0 16px;
|
||||
}
|
||||
|
||||
.detail-actions {
|
||||
padding: 16px 16px 0;
|
||||
}
|
||||
|
||||
.employee-popup {
|
||||
box-sizing: border-box;
|
||||
max-height: 78vh;
|
||||
padding: 16px 0 22px;
|
||||
}
|
||||
|
||||
.employee-popup-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
padding: 0 16px 12px;
|
||||
}
|
||||
|
||||
.employee-avatar {
|
||||
margin-right: 10px;
|
||||
}
|
||||
</style>
|
||||
<style></style>
|
||||
|
||||
Reference in New Issue
Block a user