App.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <div id="app">
  3. <el-dialog
  4. title="温馨提示"
  5. top="30vh"
  6. :visible.sync="tipShow"
  7. width="30%"
  8. center
  9. >
  10. <span
  11. >为保护个人隐私信息,系统自动对敏感数据进行脱敏。如需编辑、查看完整信息,可通过“用户隐私二次认证”功能进行验证,验证通过之后,24小时内可查看完整信息。</span
  12. >
  13. <span slot="footer" class="dialog-footer">
  14. <el-button @click="tipShow = false">关闭</el-button>
  15. </span>
  16. </el-dialog>
  17. <router-view />
  18. </div>
  19. </template>
  20. <script>
  21. import { getPrivacySwitch } from "@/api/privacy";
  22. export default {
  23. name: "App",
  24. data() {
  25. return {
  26. tipShow: false,
  27. };
  28. },
  29. created() {
  30. if (this.$store.state.user.token) {
  31. this.getPrivacySwitch();
  32. }
  33. },
  34. methods: {
  35. getPrivacySwitch() {
  36. getPrivacySwitch().then((res) => {
  37. var IsTipshow = localStorage.getItem("IsTipshow");
  38. localStorage.setItem("privacyTime", res.data);
  39. if (this.$store.state.user.token && !IsTipshow && res.data === 0) {
  40. this.tipShow = true;
  41. localStorage.setItem("IsTipshow", true);
  42. }
  43. });
  44. },
  45. },
  46. };
  47. </script>
  48. <style lang="scss">
  49. .el-dialog__header {
  50. background-color: #3a68f2;
  51. text-align: left;
  52. }
  53. .el-dialog__title {
  54. color: #ffffff;
  55. }
  56. </style>