1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!-- 修改密码 -->
- <template>
- <v-app>
- <v-dialog
- v-model="dialog"
- max-width="100vw"
- >
- <div class="white-bgc ma-n6 d-flex flex-column align-center justify-center" style="min-height: 100vh;">
- <staffChangePassword :hideGoBack="true" :hideWidth="true" :entChangePassword="true" elevation="0"></staffChangePassword>
- </div>
- </v-dialog>
- </v-app>
- </template>
- <script setup>
- import { onMounted, ref } from 'vue'
- import staffChangePassword from '@/views/recruit/enterprise/staffChangePassword'
- defineOptions({name: 'fullScreen-entUpdatePassword'})
- const dialog = ref(true)
- onMounted(() => {
- dialog.value = true
- })
- </script>
- <style lang="scss" scoped>
- .white-bgc {
- background-image: url('https://minio.menduner.com/dev/menduner/login-bgc.jpg');
- background-size: cover;
- }
- ::-webkit-scrollbar {
- width: 4px;
- height: 10px;
- display: none;
- }
- ::-webkit-scrollbar-thumb, .temporaryAdd ::-webkit-scrollbar-thumb, .details_edit ::-webkit-scrollbar-thumb {
- // 滚动条-颜色
- background: #c3c3c379;
- }
- ::-webkit-scrollbar-track, .temporaryAdd ::-webkit-scrollbar-track, .details_edit ::-webkit-scrollbar-track {
- // 滚动条-底色
- background: #e5e5e58f;
- }
- </style>
|