error.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <view class="content">
  3. <view class="area">
  4. <u-textarea v-model="detail" placeholder="请输入您要反馈的内容" count height="300" maxlength="200"
  5. border="none"></u-textarea>
  6. </view>
  7. <view class="upload hflex acenter fwrap">
  8. <view class="imgs" v-for="(item,index) in imglist" :key="index">
  9. <image :src="item" mode="aspectFill"></image>
  10. </view>
  11. <view class="upload-bg hflex acenter jcenter" @click="uploadImg">
  12. <image src="static/upload-img.png" mode="aspectFill"></image>
  13. </view>
  14. <text>添加图片(选填)</text>
  15. </view>
  16. <view class="btn" :class="detail ? 'btn-sure' : ''" @click="sumbit">提交反馈</view>
  17. </view>
  18. </template>
  19. <script>
  20. import $api from '@/static/js/api.js'
  21. var that = ''
  22. export default {
  23. data() {
  24. return {
  25. detail: '',
  26. imglist: []
  27. }
  28. },
  29. onLoad() {
  30. that = this
  31. },
  32. onShow() {
  33. },
  34. onPullDownRefresh() {
  35. },
  36. onReachBottom() {
  37. },
  38. methods: {
  39. uploadImg() {
  40. uni.chooseImage({
  41. count: 1,
  42. success: (chooseImageRes) => {
  43. uni.showLoading({
  44. title: '上传中...'
  45. })
  46. const tempFilePaths = chooseImageRes.tempFilePaths;
  47. uni.uploadFile({
  48. url: $api.config.baseUrl + 'upload/image', //仅为示例,非真实的接口地址
  49. filePath: tempFilePaths[0],
  50. name: 'image',
  51. success: (uploadFileRes) => {
  52. let res = JSON.parse(uploadFileRes.data)
  53. this.imglist.push(res.data.url)
  54. uni.hideLoading()
  55. }
  56. });
  57. }
  58. });
  59. },
  60. sumbit() {
  61. $api.req({
  62. url: 'feedback',
  63. method: 'POST',
  64. data: {
  65. content: that.detail,
  66. images: that.imglist
  67. }
  68. }, function(res) {
  69. $api.info(res.msg)
  70. uni.switchTab({
  71. url: '/pages/mine/index'
  72. })
  73. })
  74. },
  75. }
  76. }
  77. </script>
  78. <style lang="scss">
  79. .content::v-deep {
  80. background: #FFFFFF;
  81. border-top: 1px solid #f5f5f5;
  82. padding: 0 28rpx;
  83. .btn-sure {
  84. opacity: 1 !important;
  85. }
  86. .btn {
  87. width: 702rpx;
  88. height: 88rpx;
  89. background: #00B0B0;
  90. border-radius: 44rpx;
  91. opacity: 0.3;
  92. text-align: center;
  93. font-size: 32rpx;
  94. font-family: PingFangSC, PingFang SC;
  95. font-weight: 500;
  96. color: #FFFFFF;
  97. line-height: 88rpx;
  98. }
  99. .upload {
  100. padding: 46rpx 0 86rpx;
  101. .imgs {
  102. image {
  103. width: 112rpx;
  104. height: 112rpx;
  105. margin: 0 16rpx 16rpx 0;
  106. }
  107. }
  108. .upload-bg {
  109. width: 112rpx;
  110. height: 112rpx;
  111. background: rgba(231, 231, 231, .6);
  112. border-radius: 12rpx;
  113. image {
  114. width: 64rpx;
  115. height: 64rpx;
  116. }
  117. }
  118. text {
  119. font-size: 24rpx;
  120. font-family: PingFangSC, PingFang SC;
  121. font-weight: 400;
  122. color: rgba(51, 51, 51, .6);
  123. padding: 0 0 0 32rpx;
  124. }
  125. }
  126. .area {
  127. padding: 44rpx 0 28rpx;
  128. width: 100%;
  129. box-sizing: border-box;
  130. border-bottom: 1px solid rgba(151, 151, 151, .1);
  131. .u-textarea {
  132. padding: 0;
  133. }
  134. }
  135. }
  136. </style>