CpdmTip.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <script lang="ts" setup>
  2. import { onMounted, onUnmounted, ref } from 'vue'
  3. import { useRouter } from 'vue-router';
  4. const router = useRouter()
  5. const open = (val: any) => {
  6. type.value = val.type;
  7. message.value = val.message
  8. visible.value = true
  9. if (type.value == 2) {
  10. timeP.value = setTimeout(() => {
  11. //跳转到计划页面
  12. router.push({ name: 'plan' })
  13. }, 1000 * 120)
  14. // 1000 * 120
  15. }
  16. }
  17. //定时器方法
  18. const timeP = ref<any>()
  19. //
  20. defineExpose({ open })
  21. const visible = ref<boolean>(false)
  22. const message = ref<string>('')
  23. const type = ref<number>(1)
  24. const closeFun = () => {
  25. visible.value = false
  26. if (type.value == 2) {
  27. clearTimeout(timeP.value);
  28. }
  29. }
  30. onMounted(() => {
  31. })
  32. onUnmounted(() => {
  33. console.log('----------------------')
  34. clearTimeout(timeP.value)
  35. })
  36. </script>
  37. <template>
  38. <div>
  39. <el-dialog v-model="visible" width="500" style="border-radius: 40px;" class="dig_kg"
  40. :close-on-click-modal="false">
  41. <template #header="{ close, titleId, titleClass }">
  42. <div class="my-header" style="text-align: center;">
  43. <div class="exit_login_title">温馨提示</div>
  44. <div class="exit_login_info">{{ message }}</div>
  45. <div class="start_button_out">
  46. <div class="start_button_self" @click="closeFun">
  47. 确定
  48. </div>
  49. </div>
  50. </div>
  51. </template>
  52. </el-dialog>
  53. </div>
  54. </template>
  55. <style lang="scss" scoped>
  56. .exit_login_title {
  57. text-align: center;
  58. color: #222222;
  59. font-weight: 700;
  60. font-size: 20px;
  61. letter-spacing: 3px;
  62. }
  63. .exit_login_info {
  64. text-align: center;
  65. letter-spacing: 3px;
  66. font-size: 18px;
  67. margin-top: 20px;
  68. }
  69. .start_button_out {
  70. margin-top: 40px;
  71. // margin-bottom: 40px;
  72. display: flex;
  73. flex-direction: row;
  74. justify-content: center;
  75. .start_button_self {
  76. cursor: pointer;
  77. // width: 100px;
  78. border-radius: 4px;
  79. // border: 1px solid #48D68E;
  80. color: #ffffff;
  81. background-color: #333333;
  82. // margin-right: 20px;
  83. padding: 5px 50px;
  84. cursor: pointer;
  85. display: flex;
  86. align-items: center;
  87. background: url(../assets/zs/bottom_new.png) no-repeat;
  88. background-size: 100% 100%;
  89. }
  90. }
  91. </style>