jubao.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <view class="index">
  3. <view class="" v-if="!success">
  4. <view class="" style="font-size: 32rpx;color: #222;font-weight: 600;">
  5. <text style="color: #FF2929;">*</text>举报原因
  6. </view>
  7. <view class="u-flex u-row-between" style="font-size: 24rpx;border-bottom: 2rpx solid #F3F3F3;padding: 20rpx 0;" @click="show=true">
  8. <text>{{select!=null?select.title:'请选择举报类型'}}</text>
  9. <u-icon name="arrow-right"></u-icon>
  10. </view>
  11. <view class="" style="font-size: 32rpx;color: #222;font-weight: 600;margin:20rpx 0">
  12. <text style="color: #FF2929;">*</text>具体情况
  13. </view>
  14. <textarea name="" id="" cols="30" v-model="content" rows="10" class="area" placeholder="请详细描述所遇到的问题…" maxlength="100"></textarea>
  15. <view class="" style="font-size: 32rpx;color: #222;font-weight: 600;margin: 20rpx 0;">
  16. <text style="color: #FF2929;">*</text>证据截图(最多6张)
  17. </view>
  18. <view class="" style="font-size: 24rpx;color: #999999;margin-bottom: 20rpx;">
  19. 直观的截图是非常有利的证据
  20. </view>
  21. <u-upload
  22. :fileList="fileList"
  23. @afterRead="afterRead"
  24. @delete="deletePic"
  25. name="3"
  26. :multiple='false'
  27. :maxCount="6"
  28. :previewFullImage="true"
  29. width="100"
  30. height="100"
  31. ></u-upload>
  32. <view class="" style="margin-top: 78rpx;">
  33. <u-button text="提交" @click="submit" shape="circle" color="linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%)"></u-button>
  34. </view>
  35. <u-picker :show="show" title="举报原因" keyName="title" :columns="columns" @confirm='change' @cancel='cancel' :closeOnClickOverlay='true'>
  36. </u-picker>
  37. </view>
  38. <view class="u-flex-col" style="padding-top: 162rpx;" v-else>
  39. <image src="../../static/profile/success.png" mode="" style="width: 112rpx;height: 112rpx;"></image>
  40. <text style="font-size: 36rpx;color: #000;font-weight: 600;margin: 40rpx;">提交成功</text>
  41. <text style="font-size: 24rpx;color: #888888;margin-bottom: 182rpx;">您的举报我们已经收到,请耐心等待处理结果</text>
  42. <u-button text="返回会员主页" shape="circle" color="linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%)" @click="back"></u-button>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. onLoad(option) {
  49. this.id=option.id
  50. this.getReason()
  51. },
  52. data() {
  53. return {
  54. id:'',
  55. success:false,
  56. content:'',
  57. show: false,
  58. columns: [
  59. []
  60. ],
  61. select:null,
  62. fileList: [],
  63. }
  64. },
  65. methods: {
  66. submit(){
  67. if(!this.select){
  68. this.$u.toast('请选择举报类型')
  69. return
  70. }
  71. if(!this.content){
  72. this.$u.toast('请填写举报原因')
  73. return
  74. }
  75. var arr=[]
  76. this.fileList.forEach(item=>{
  77. arr.push(item.url)
  78. })
  79. uni.$u.http.post('/api/index/user_report',{r_id:this.id,type:this.select.id,content:this.content,r_images:arr.toString()}).then(res => {
  80. if(res.code==1){
  81. this.success=true
  82. }
  83. })
  84. },
  85. back(){
  86. uni.navigateBack({
  87. })
  88. },
  89. change(e) {
  90. this.select = e.value[0]
  91. // console.log(this.columns[0][this.current])
  92. this.show = false
  93. },
  94. cancel() {
  95. this.show = false
  96. },
  97. getReason(){
  98. uni.$u.http.post('/api/index/report_problem').then(res => {
  99. this.columns=[res.data]
  100. })
  101. },
  102. // 删除图片
  103. deletePic(event) {
  104. var that=this
  105. uni.showModal({
  106. title: '',
  107. content: '是否删除这张图片',
  108. confirmColor:'#FF3D3D',
  109. confirmText:'删除',
  110. success: function (res) {
  111. if (res.confirm) {
  112. that.fileList.splice(event.index, 1)
  113. } else if (res.cancel) {
  114. console.log('用户点击取消');
  115. }
  116. }
  117. });
  118. },
  119. // 新增图片
  120. async afterRead(event) {
  121. // 当设置 mutiple 为 true 时, file 为数组格式,否则为对象格式
  122. let lists = [].concat(event.file)
  123. let fileListLen = this.fileList.length
  124. lists.map((item) => {
  125. this.fileList.push({
  126. ...item,
  127. status: 'uploading',
  128. message: '上传中'
  129. })
  130. })
  131. for (let i = 0; i < lists.length; i++) {
  132. const result = await this.uploadFilePromise(lists[i].url)
  133. let item = this.fileList[fileListLen]
  134. this.fileList.splice(fileListLen, 1, Object.assign(item, {
  135. status: 'success',
  136. message: '',
  137. url: result
  138. }))
  139. fileListLen++
  140. }
  141. },
  142. uploadFilePromise(url) {
  143. return new Promise((resolve, reject) => {
  144. let a = uni.uploadFile({
  145. url: this.$url+'/api/Publics/uploadLocality', // 仅为示例,非真实的接口地址
  146. filePath: url,
  147. name: 'file',
  148. formData: {
  149. user: 'test'
  150. },
  151. success: (res) => {
  152. setTimeout(() => {
  153. resolve(JSON.parse(res.data).data.url)
  154. }, 1000)
  155. }
  156. });
  157. })
  158. },
  159. }
  160. }
  161. </script>
  162. <style lang="scss">
  163. .area{
  164. box-sizing: border-box;
  165. padding: 20rpx;
  166. margin: 0 auto;
  167. width: 690rpx;
  168. height: 280rpx;
  169. background: #F3F3F3;
  170. border-radius: 20rpx;
  171. }
  172. .index{
  173. padding: 30rpx;
  174. }
  175. </style>