feedback.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <template>
  2. <view>
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="area">
  5. <textarea v-model="cont" class="txt" maxlength='-1' placeholder="请输入您的反馈信息" />
  6. </view>
  7. <!-- 弹窗 -->
  8. <view>
  9. <view class="mask" v-show="showPopup" @click="closePopup"></view>
  10. <view class="popup-container" v-show="showPopup">
  11. <view class="popup">
  12. <view class="header">
  13. <text>确认修改</text>
  14. </view>
  15. <view class="footer">
  16. <view class="cancel-btn" @click="showPopup=false">取消</view>
  17. <view class="confirm-btn" @click="conf">确认</view>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <button class="btn" @click="popShow">提交</button>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. navBarData: {
  30. title: "反馈与帮助", //导航栏标题
  31. btn: 1, //是否显示返回按钮 0不显示 1 显示
  32. },
  33. cont: '',
  34. showPopup: false
  35. };
  36. },
  37. methods: {
  38. popShow() {
  39. this.showPopup = true
  40. },
  41. conf() {
  42. let data = {
  43. oid: this.$store.state.user.openid,
  44. cont: encodeURIComponent(this.cont)
  45. }
  46. this.$request('/insertFeedback', 'POST', data).then(res => {
  47. uni.showToast({
  48. title: '提交成功,感谢您的反馈',
  49. icon: 'none'
  50. });
  51. this.cont=''
  52. this.showPopup = false
  53. })
  54. }
  55. }
  56. }
  57. </script>
  58. <style lang="scss" scoped>
  59. .btn {
  60. background-color: #0056a8;
  61. color: #ffffff;
  62. border-radius: 30px;
  63. margin: 30rpx 55rpx;
  64. // padding: 10rpx 0;
  65. display: flex;
  66. align-items: center;
  67. justify-content: center;
  68. margin-top: 30rpx;
  69. // padding: 0rpx 10rpx;
  70. font-size: 16px;
  71. }
  72. .mask {
  73. position: fixed;
  74. top: 0;
  75. left: 0;
  76. width: 100%;
  77. height: 100%;
  78. background-color: rgba(0, 0, 0, 0.3);
  79. z-index: 999;
  80. overflow: hidden;
  81. // display: none;
  82. }
  83. .popup {
  84. width: 100%;
  85. height: 100%;
  86. display: flex;
  87. flex-direction: column;
  88. background-color: #fff;
  89. border-radius: 16rpx;
  90. overflow: hidden;
  91. .header {
  92. flex: 1;
  93. display: flex;
  94. justify-content: center;
  95. align-items: center;
  96. flex-direction: column;
  97. margin-top: 24px;
  98. font-size: 34rpx;
  99. font-weight: 600;
  100. .imgShade {
  101. width: 170rpx;
  102. height: 170rpx;
  103. display: flex;
  104. justify-content: center;
  105. align-items: center;
  106. border: 10rpx #0056A8 solid;
  107. border-radius: 50%;
  108. box-shadow: 0 0 10rpx #0056A8;
  109. margin-bottom: 10rpx;
  110. }
  111. image {
  112. width: 150rpx;
  113. height: 150rpx;
  114. margin-top: 15px;
  115. margin-bottom: 15px;
  116. }
  117. }
  118. .footer {
  119. width: 100%;
  120. display: flex;
  121. overflow: hidden;
  122. .cancel-btn {
  123. width: 50%;
  124. height: 100rpx;
  125. background-color: #F7F7F7;
  126. color: #000;
  127. font-size: 34rpx;
  128. text-align: center;
  129. border-bottom-left-radius: 16rpx;
  130. line-height: 50px;
  131. }
  132. .confirm-btn {
  133. width: 50%;
  134. height: 100rpx;
  135. background-color: #0081FE;
  136. color: #fff;
  137. font-size: 34rpx;
  138. text-align: center;
  139. line-height: 50px;
  140. }
  141. }
  142. }
  143. .area {
  144. margin-top: 10px;
  145. box-sizing: border-box;
  146. padding: 15rpx;
  147. background-color: #ffffff;
  148. }
  149. .txt {
  150. width: 100%;
  151. height: 60vh;
  152. }
  153. </style>