feedback.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <template>
  2. <view class="feedback">
  3. <view class="uni-form-item content">
  4. <view class="title">反馈内容</view>
  5. <textarea class="uni-textarea" placeholder="请输入留言内容" v-model="params.feedbackContext"/>
  6. </view>
  7. <view class="uni-form-item tel">
  8. <view class="title">如有需要,留下您的联系方式,方便我们联系您</view>
  9. <input class="uni-input" focus placeholder="邮箱/QQ/微信/手机号(可选)" v-model="params.tel" />
  10. </view>
  11. <view class="uni-form-item">
  12. <button type="primary" @click="postData">提交反馈</button>
  13. </view>
  14. <uni-popup ref="popup" type="message">
  15. <uni-popup-message :type="messageType" :message="message" :duration="3000"></uni-popup-message>
  16. </uni-popup>
  17. </view>
  18. </template>
  19. <script>
  20. export default{
  21. name:"feedback",
  22. components:{
  23. },
  24. onLoad() {
  25. let self = this;
  26. uni.getStorage({
  27. key:'userInfo',
  28. success: function (res) {
  29. self.params.userId = res.data.user.id;
  30. // console.log(res.data.user.id);
  31. }
  32. });
  33. },
  34. data(){
  35. return{
  36. content:'',
  37. tel:'',
  38. message:'',
  39. messageType:'',
  40. params:{
  41. "userId":'',
  42. "feedbackContext":'',
  43. "tel":''
  44. }
  45. }
  46. },
  47. methods:{
  48. postData(data){
  49. if(!this.params.feedbackContext){
  50. this.messageType ="error";
  51. this.message = "请输入留言内容";
  52. uni.showToast({
  53. icon:'none',
  54. title:this.message,
  55. duration: 2000
  56. });
  57. return false;
  58. }else{
  59. var wxReg = new RegExp("^[a-zA-Z]([-_a-zA-Z0-9]{5,19})+$"); //微信号正则校验
  60. var qqReg = new RegExp("[1-9][0-9]{4,}"); //QQ号正则校验
  61. var phReg = /^[1][3,4,5,6,7,8,9][0-9]{9}$/; //手机号正则校验
  62. if(this.params.tel.length > 0){
  63. if(!wxReg.test(this.params.tel)&&!qqReg.test(this.params.tel)&&!phReg.test(this.params.tel)){
  64. this.messageType ="error";
  65. this.message = "邮箱/QQ/微信/手机号 输入不正确";
  66. uni.showToast({
  67. icon:'none',
  68. title:this.message,
  69. duration: 2000
  70. });
  71. return false;
  72. }
  73. };
  74. this.messageType ="success";
  75. this.message = "留言成功"
  76. uni.showLoading({
  77. title: '请稍等'
  78. });
  79. setTimeout(function () {
  80. uni.hideLoading();
  81. }, 1500);
  82. setTimeout(() => {
  83. uni.showToast({
  84. icon:'success',
  85. title:`保存成功,请等待审核!`,
  86. duration: 2000
  87. });
  88. }, 1500);
  89. setTimeout(() => {
  90. uni.switchTab({
  91. url:'/pages/index/index'
  92. })
  93. }, 3000);
  94. // this.$api.http.post(`/articleFeedback/add`, this.params).then(res => {
  95. // uni.showToast({
  96. // icon:'none',
  97. // title:this.message,
  98. // duration: 2000
  99. // });
  100. // this.params.feedbackContext = '';
  101. // this.params.tel = '';
  102. // // console.log(res);
  103. // })
  104. }
  105. }
  106. }
  107. }
  108. </script>
  109. <style scoped>
  110. .feedback{
  111. padding:0 40rpx;
  112. }
  113. .feedback .uni-form-item{
  114. margin-bottom:30rpx;
  115. }
  116. .feedback .content .title{
  117. font-size:34rpx;
  118. font-weight:500;
  119. color:rgba(102,102,102,1);
  120. padding:20rpx 0;
  121. }
  122. .feedback .content .uni-textarea{
  123. width:100%;
  124. height:500rpx;
  125. background:rgba(248,248,248,1);
  126. border-radius:28rpx;
  127. padding:20rpx;
  128. box-sizing: border-box;
  129. }
  130. .feedback .tel .title{
  131. font-size:28rpx;
  132. font-weight:400;
  133. color:rgba(153,153,153,1);
  134. line-height:40px;
  135. }
  136. .feedback .tel .uni-input{
  137. box-sizing: border-box;
  138. width:100%;
  139. height:110rpx;
  140. background:rgba(248,248,248,1);
  141. border-radius:24rpx;
  142. padding:3rpx 30rpx;
  143. }
  144. .feedback .tel .uni-input::-webkit-input-placeholder{color: #D4D4D4;}
  145. button{
  146. width: 400rpx;
  147. height: 88rpx;
  148. line-height: 88rpx;
  149. background-color: #65B74E;
  150. border-radius: 44rpx;
  151. }
  152. </style>