CpdmMessage.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <script lang="ts" setup>
  2. import { ref, defineExpose } from 'vue'
  3. import { useRouter } from 'vue-router'
  4. import { userInfoStore } from '@/stores'
  5. import { ElMessage } from 'element-plus';
  6. import { pubMsgApi } from '@/api/plan';
  7. const router = useRouter()
  8. //获取缓存用户信息
  9. const userInfo = userInfoStore();
  10. //留言显示的标志
  11. const pub_visible = ref<boolean>(false)
  12. //留言的内容
  13. const des_input = ref<string>('')
  14. //用户的姓名
  15. const userName = ref<string>('')
  16. //用户的编号
  17. const userNo = ref<string>('');
  18. //用户的性别
  19. const userSex = ref<string>('')
  20. //防止重复点
  21. const isLock = ref<boolean>(false)
  22. const open = () => {
  23. userName.value = userInfo.userInfo.userName;
  24. userNo.value = userInfo.userInfo.userNo;
  25. userSex.value = userInfo.userInfo.gender;
  26. pub_visible.value = true
  27. }
  28. //点击进行发布信息
  29. const pubMsg = async () => {
  30. //判断用户是否登陆了
  31. if (!userInfo.token) {
  32. ElMessage({
  33. message: '尚未登录',
  34. type: 'warning'
  35. })
  36. return
  37. }
  38. if (des_input.value == '') {
  39. ElMessage({
  40. message: '留言不能为空',
  41. type: 'warning'
  42. })
  43. return
  44. }
  45. if (isLock.value) {
  46. return
  47. }
  48. isLock.value = true
  49. let params = {
  50. userNo: userNo.value,
  51. userName: userName.value,
  52. commentContent: des_input.value
  53. }
  54. let res: any = await pubMsgApi(params)
  55. if (res.code == 200) {
  56. ElMessage({
  57. message: '留言成功',
  58. type: 'success'
  59. })
  60. des_input.value = ''
  61. isLock.value = false
  62. pub_visible.value = false
  63. //开始跳转到页面测试记录页面
  64. router.push({ name: 'popularizationScience' })
  65. } else {
  66. ElMessage({
  67. message: res.msg,
  68. type: 'error'
  69. })
  70. }
  71. //调用新增留言的方法
  72. }
  73. //点击关闭弹出框
  74. const colseMessage = () => {
  75. router.push({ name: 'popularizationScience' })
  76. }
  77. defineExpose({ open })
  78. </script>
  79. <template>
  80. <el-dialog v-model="pub_visible" :show-close="true" @closed="colseMessage" width="60%"
  81. style="border-radius: 40px; ">
  82. <template #header="{ close, titleId, titleClass }">
  83. <div class="my-header">
  84. <div class="msg_dig">
  85. <img width="40px" v-show="userSex == '1'" src="../assets/kepu/man.png" />
  86. <img width="40px" v-show="userSex == '0'" src="../assets/kepu/woman.png" />
  87. <div style="margin-left:20px">{{ userName }}</div>
  88. </div>
  89. <!-- <textarea ref="des_input" rows="5" cols="43" placeholder="写下你珍贵的留言" /> -->
  90. <el-input type="textarea" style="margin-top: 20px;" :autosize="{ minRows: 6 }" placeholder="写下你珍贵的留言"
  91. v-model="des_input">
  92. </el-input>
  93. <div class="home_mid_plan_button">
  94. <div class="pub_button" @click="pubMsg"> 发布留言
  95. </div>
  96. </div>
  97. </div>
  98. </template>
  99. </el-dialog>
  100. </template>
  101. <style lang="scss" scoped>
  102. :deep(.el-textarea__inner) {
  103. background-color: #F7F7F7 !important;
  104. border: none !important;
  105. border-radius: 20px;
  106. border: none !important;
  107. box-shadow: none !important;
  108. }
  109. .msg_dig {
  110. display: flex;
  111. flex-direction: row;
  112. align-items: center;
  113. }
  114. .home_mid_plan_button {
  115. width: 100%;
  116. display: flex;
  117. flex-direction: row;
  118. justify-content: end;
  119. margin-top: 40px;
  120. // text-align: right;
  121. .pub_button {
  122. cursor: pointer;
  123. // width: 100px;
  124. border-radius: 12px;
  125. border: 3px solid #48D68E;
  126. color: #ffffff;
  127. background-color: #000000;
  128. padding: 8px 30px;
  129. cursor: pointer;
  130. display: flex;
  131. align-items: center;
  132. }
  133. }
  134. </style>