feedback.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view class="content vflex jbetween">
  3. <view class="">
  4. <view class="box">
  5. <view>
  6. <u--textarea v-model="problem" placeholder="请描述您遇到的具体问题(必填)" ></u--textarea>
  7. </view>
  8. <view class="left">图片(选填)</view>
  9. <view class="upload">
  10. <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" :maxCount="9" name="1" multiple :previewFullImage="true" width="204rpx" height="204rpx">
  11. </u-upload>
  12. </view>
  13. </view>
  14. <view class="box">
  15. <view class="hflex acenter">
  16. <view class="left">联系方式</view>
  17. <u-input v-model="phone" border="none" placeholder="请输入您的联系方式,以便更好的解决问题"></u-input>
  18. </view>
  19. </view>
  20. <view class="history" @click="toHistory">反馈记录</view>
  21. </view>
  22. <view class="btn" @click="submit">提交</view>
  23. </view>
  24. </template>
  25. <script>
  26. import $api from '@/static/js/api.js'
  27. var that = ''
  28. export default {
  29. data() {
  30. return {
  31. problem: '',
  32. fileList1: [
  33. ],
  34. phone: '',
  35. id: '',
  36. }
  37. },
  38. onLoad(options) {
  39. that = this
  40. if(options.id) {
  41. that.id = options.id
  42. that.getData(options.id)
  43. }
  44. },
  45. methods: {
  46. getData(id) {
  47. var pages = getCurrentPages()
  48. var prePage = pages[pages.length - 2]
  49. var list = prePage.$vm.pageList
  50. for(var i=0;i<list.length;i++) {
  51. if(list[i].id == id) {
  52. that.problem = list[i].content
  53. var imgs = list[i].imgs
  54. let obj = {}
  55. for(let key in imgs) {
  56. obj[key] = imgs[key]
  57. }
  58. var fileList1 = Object.keys(obj).map(item => ({
  59. url: obj[item]
  60. }))
  61. that.fileList1 = fileList1
  62. that.phone = list[i].phone
  63. }
  64. }
  65. },
  66. // 删除图片
  67. deletePic(event) {
  68. // that.userInfo.imgList.splice(event.index, 1)
  69. console.log(event)
  70. this[`fileList${event.name}`].splice(event.index, 1)
  71. },
  72. // 新增图片
  73. async afterRead(event) {
  74. console.log(`fileList${event.name}`);
  75. console.log(this[`fileList${event.name}`]);
  76. let lists = [].concat(event.file)
  77. let fileListLen = this[`fileList${event.name}`].length
  78. lists.map((item) => {
  79. this[`fileList${event.name}`].push({
  80. ...item,
  81. status: 'uploading',
  82. message: '上传中'
  83. })
  84. })
  85. for (let i = 0; i < lists.length; i++) {
  86. const result = await this.uploadFilePromise(lists[i].url)
  87. let item = this[`fileList${event.name}`][fileListLen]
  88. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  89. status: 'success',
  90. message: '',
  91. url: result.url
  92. }))
  93. fileListLen++
  94. }
  95. },
  96. // 上传图片
  97. uploadFilePromise(url) {
  98. return new Promise((resolve, reject) => {
  99. let a = uni.uploadFile({
  100. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  101. filePath: url,
  102. name: 'file',
  103. header: {
  104. 'api-token': uni.getStorageSync('token').token?uni.getStorageSync('token').token:'',
  105. 'api-name': 'wxapp'
  106. },
  107. formData: {
  108. user: 'test'
  109. },
  110. success: (res) => {
  111. console.log(res);
  112. setTimeout(() => {
  113. var data = JSON.parse(res.data)
  114. resolve(data.data)
  115. }, 1000)
  116. }
  117. });
  118. })
  119. },
  120. // 提交
  121. submit() {
  122. if($api.formCheck(that.problem,"requires") && $api.formCheck(that.phone,"phone")) {
  123. var imgs = ""
  124. if(that.fileList1.length > 0) {
  125. for(var i=0;i<that.fileList1.length;i++) {
  126. if(i == that.fileList1.length - 1) {
  127. imgs += that.fileList1[i].url
  128. } else {
  129. imgs += that.fileList1[i].url + ','
  130. }
  131. }
  132. }
  133. $api.req({
  134. url: '/data/api.auth.Center/subfeedback',
  135. method: 'POST',
  136. data: {
  137. content : that.problem,
  138. imgs: imgs,
  139. phone: that.phone,
  140. id: that.id
  141. }
  142. }, function(res) {
  143. if(res.code == 1) {
  144. console.log(res);
  145. $api.info(res.info)
  146. $api.jump('/pages/tabbar/mine/mine',3)
  147. }
  148. })
  149. }
  150. },
  151. toHistory() {
  152. $api.jump('/page_mine/pages/service/feed/history')
  153. }
  154. },
  155. }
  156. </script>
  157. <style lang="scss" scoped>
  158. .content::v-deep {
  159. background-color: #F5F5F5;
  160. padding: 20rpx 30rpx;
  161. .box {
  162. width: 100%;
  163. background-color: #fff;
  164. border-radius: 20rpx;
  165. box-sizing: border-box;
  166. padding: 32rpx 20rpx;
  167. margin-bottom: 20rpx;
  168. .left {
  169. font-size: 26rpx;
  170. color: #222222;
  171. margin-right: 20rpx;
  172. }
  173. .u-textarea {
  174. // margin: 28rpx auto 0;
  175. // background-color: #f4f4f4;
  176. // border-radius: 28rpx;
  177. box-sizing: border-box;
  178. padding: 0 0;
  179. width: 610rpx;
  180. border: none;
  181. }
  182. .upload {
  183. width: 100%;
  184. margin: 28rpx 0 24rpx;
  185. }
  186. }
  187. .history {
  188. width: 184rpx;
  189. height: 52rpx;
  190. border-radius: 26rpx;
  191. border: 1rpx solid #526FFF;
  192. margin: 34rpx auto 0;
  193. color: #506DFF;
  194. font-size: 26rpx;
  195. text-align: center;
  196. line-height: 52rpx;
  197. }
  198. .btn {
  199. width: 100%;
  200. height: 84rpx;
  201. background-color: #506dff;
  202. border-radius: 42rpx;
  203. font-size: 18px;
  204. color: #FFFFFF;
  205. text-align: center;
  206. line-height: 84rpx;
  207. margin-bottom: 80rpx;
  208. }
  209. }
  210. </style>