Browse Source

认证样式修改

master
luyisha 2 years ago
parent
commit
4143db09ba
  1. 10
      pages/auth/index.vue
  2. 11
      pages/auth/primary.vue
  3. 7
      pages/auth/senior.vue

10
pages/auth/index.vue

@ -1,5 +1,5 @@
<template> <template>
<view class="layout-page" :style="themeStyle"> <view class="layout-page authPage" :style="themeStyle">
<v-header :title="$t('auth.a0')" :leftClick="leftClick"></v-header> <v-header :title="$t('auth.a0')" :leftClick="leftClick"></v-header>
<view class="rounded-md overflow-hidden m-lg bg-panel-3 box-shadow"> <view class="rounded-md overflow-hidden m-lg bg-panel-3 box-shadow">
<!--<v-link :to="detail.primary_status==0?'/pages/auth/primary':''" class="d-flex align-center p-md border-b link-active ">--> <!--<v-link :to="detail.primary_status==0?'/pages/auth/primary':''" class="d-flex align-center p-md border-b link-active ">-->
@ -89,5 +89,11 @@ export default {
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.authPage.layout-page{
background-color: #121212 !important;
background: none;
}
.bg-panel-3{
background-color: #242424;
}
</style> </style>

11
pages/auth/primary.vue

@ -1,5 +1,5 @@
<template> <template>
<v-page style="height:auto!important;min-height: 100%!important;"> <v-page style="height:auto!important;min-height: 100%!important;background: none;background-color: #121212 !important;">
<v-header :title="$t('auth.a1')"></v-header> <v-header :title="$t('auth.a1')"></v-header>
<main class=" m-lg bg-panel-3 rounded-md p-x-md box-shadow"> <main class=" m-lg bg-panel-3 rounded-md p-x-md box-shadow">
<!-- 姓名 --> <!-- 姓名 -->
@ -227,7 +227,8 @@ export default {
// color: grey; // color: grey;
} }
/deep/.uni-select__selector{ /deep/.uni-select__selector{
background-color: $panel-3; // background-color: $panel-3;
background-color: #242424;
} }
/deep/.uni-select__input-text{ /deep/.uni-select__input-text{
color: $plain; color: $plain;
@ -273,4 +274,10 @@ export default {
border-top: 1px solid #c9c9c9; border-top: 1px solid #c9c9c9;
border-bottom: 1px solid #c9c9c9; border-bottom: 1px solid #c9c9c9;
} }
.bg-panel-3{
background-color: #242424;
}
::v-deep uni-input{
border: 1px solid #e5e5e5;
}
</style> </style>

7
pages/auth/senior.vue

@ -205,6 +205,10 @@ export default {
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.layout-page{
background-color: #121212 !important;
background: none;
}
.examples { .examples {
width: 122px; width: 122px;
height: 70px; height: 70px;
@ -226,4 +230,7 @@ export default {
object-fit: cover; object-fit: cover;
} }
} }
.bg-panel-3{
background-color: #242424;
}
</style> </style>

Loading…
Cancel
Save