entUpdatePassword.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!-- 修改密码 -->
  2. <template>
  3. <v-app>
  4. <v-dialog
  5. v-model="dialog"
  6. max-width="100vw"
  7. >
  8. <div class="white-bgc ma-n6 d-flex flex-column align-center justify-center" style="min-height: 100vh;">
  9. <staffChangePassword :hideGoBack="true" :hideWidth="true" :entChangePassword="true" elevation="0"></staffChangePassword>
  10. </div>
  11. </v-dialog>
  12. </v-app>
  13. </template>
  14. <script setup>
  15. import { onMounted, ref } from 'vue'
  16. import staffChangePassword from '@/views/recruit/enterprise/staffChangePassword'
  17. defineOptions({name: 'fullScreen-entUpdatePassword'})
  18. const dialog = ref(true)
  19. onMounted(() => {
  20. dialog.value = true
  21. })
  22. </script>
  23. <style lang="scss" scoped>
  24. .white-bgc {
  25. background-image: url('https://minio.menduner.com/dev/menduner/login-bgc.jpg');
  26. background-size: cover;
  27. }
  28. ::-webkit-scrollbar {
  29. width: 4px;
  30. height: 10px;
  31. display: none;
  32. }
  33. ::-webkit-scrollbar-thumb, .temporaryAdd ::-webkit-scrollbar-thumb, .details_edit ::-webkit-scrollbar-thumb {
  34. // 滚动条-颜色
  35. background: #c3c3c379;
  36. }
  37. ::-webkit-scrollbar-track, .temporaryAdd ::-webkit-scrollbar-track, .details_edit ::-webkit-scrollbar-track {
  38. // 滚动条-底色
  39. background: #e5e5e58f;
  40. }
  41. </style>