indexjubao.vue 5.7 KB

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