feedback.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <!-- 意见反馈 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="textarea-box">
  5. <textarea class="textarea" v-model="params.content" maxlength=300 placeholder='请输入问题描述,点击下方“+”号提交截图,帮助我们更快定位您的问题'
  6. placeholder-class="placeholder" @input="sumfontnum"></textarea>
  7. <view class="num"><text>{{fontNum}}</text>/300</view>
  8. </view>
  9. <view class="input-box">
  10. <input type="text" v-model="params.phone" class="input" placeholder="请输入联系方式" placeholder-class="placeholder" />
  11. </view>
  12. <view class="img-container">
  13. <view class="note-image-box">
  14. <view class="note-image-item" v-for="(item,index) in imageLists" :key="index">
  15. <view class="close-icon" @click="del(index)">
  16. <image src="../../../static/del-img.png" mode=""></image>
  17. </view>
  18. <view class="image-box" @click="previewImg(index)">
  19. <image :src="item.url" class="img" mode="aspectFill"></image>
  20. </view>
  21. </view>
  22. <view v-if="imageLists.length < 3" class="note-image-item" @click="addImage">
  23. <image src="../../../static/upload.png" class="add-img" mode="aspectFill"></image>
  24. <view class="note-image-item-num">
  25. {{imageLists.length + 1}}/3
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="btn-box">
  31. <button type="default" class="active" @tap="leaveFeedback()">提交反馈</button>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. import { userManageLeaveFeedback } from '../../../common/service.js';
  37. import { uploadFiles } from '../../../common/request';
  38. import { validatorFun } from '../../../common/utils/util';
  39. export default {
  40. data() {
  41. return {
  42. fontNum: 0,
  43. imageLists: [], //存放图片数组
  44. params: {
  45. content: '', // 反馈内容
  46. phone: '', // 联系方式
  47. images: '', // 反馈图片(逗号隔开,没有不传)
  48. },
  49. }
  50. },
  51. methods: {
  52. leaveFeedback(key = '') {
  53. this.params.images = this.imageLists.join(',');
  54. const params = this.params;
  55. const errList = validatorFun(params, [
  56. ['content', ['notNull', '请输入问题描述']],
  57. ]);
  58. if (errList.length > 0) {
  59. return uni.showToast({
  60. icon: 'none',
  61. title: errList[0].errMsg,
  62. });
  63. }
  64. userManageLeaveFeedback({
  65. data: params,
  66. success: ({code, msg, data}) => {
  67. if (code == 1) {
  68. setTimeout(() => {
  69. uni.navigateBack({
  70. delta: 1,
  71. });
  72. }, 1000);
  73. } else {
  74. uni.showToast({
  75. icon: 'none',
  76. title: msg,
  77. });
  78. }
  79. }
  80. });
  81. },
  82. // 限制文本框字数
  83. sumfontnum(e) {
  84. console.log(e)
  85. this.fontNum = e.detail.value.length
  86. },
  87. //删除图片
  88. del(index) {
  89. this.imageLists.splice(index, 1)
  90. },
  91. // //添加图片
  92. // addImage() {
  93. // const count = 9 - this.imageLists.length
  94. // uni.chooseImage({
  95. // count: count,
  96. // success: res => {
  97. // let tempfilepaths = res.tempFilePaths
  98. // tempfilepaths.forEach((item, index) => {
  99. // // 处理h5多选的情况
  100. // if (index < count) {
  101. // this.imageLists.push({
  102. // url: item
  103. // })
  104. // }
  105. // })
  106. // }
  107. // })
  108. // },
  109. //上传图片
  110. addImage(){
  111. uni.chooseImage({
  112. count: 1,
  113. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  114. sourceType: ['album', 'camera'],
  115. success: res => {
  116. uploadFiles({
  117. filePath: res.tempFilePaths[0],
  118. success: res => {
  119. const data = JSON.parse(res.data);
  120. console.log(data);
  121. if (res.statusCode === 200 && data.code == 1) {
  122. this.imageLists.push({
  123. url: data.data
  124. });
  125. } else {
  126. uni.showToast({
  127. icon: 'none',
  128. title: data.msg || res.msg,
  129. });
  130. }
  131. }
  132. });
  133. },
  134. });
  135. },
  136. //查看图片
  137. previewImg(index){
  138. let urls = []
  139. for(let i = 0;i < this.imageLists.length;i++){
  140. urls.push(this.imageLists[i].url)
  141. }
  142. uni.previewImage({
  143. current:index,
  144. urls:urls,
  145. })
  146. },
  147. }
  148. }
  149. </script>
  150. <style scoped lang="scss">
  151. @import "./feedback.css";
  152. </style>