entUpdatePassword.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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;" :style="{'background-image': 'url(' + webContent.loginBgUrl + ')'}">
  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. defineOptions({name: 'fullScreen-entUpdatePassword'})
  16. import { onMounted, ref } from 'vue'
  17. import { webContentStore } from '@/store/webContent'
  18. import staffChangePassword from '@/views/recruit/enterprise/staffChangePassword'
  19. const webContent = webContentStore()
  20. const dialog = ref(true)
  21. onMounted(async () => {
  22. await webContent.getSystemWebContent()
  23. dialog.value = true
  24. })
  25. </script>
  26. <style lang="scss" scoped>
  27. .white-bgc {
  28. background-size: cover;
  29. }
  30. ::-webkit-scrollbar {
  31. width: 4px;
  32. height: 10px;
  33. display: none;
  34. }
  35. ::-webkit-scrollbar-thumb, .temporaryAdd ::-webkit-scrollbar-thumb, .details_edit ::-webkit-scrollbar-thumb {
  36. // 滚动条-颜色
  37. background: #c3c3c379;
  38. }
  39. ::-webkit-scrollbar-track, .temporaryAdd ::-webkit-scrollbar-track, .details_edit ::-webkit-scrollbar-track {
  40. // 滚动条-底色
  41. background: #e5e5e58f;
  42. }
  43. </style>