feed.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <template>
  2. <view class="content vflex jbetween">
  3. <view class="">
  4. <u-navbar title="意见反馈" @leftClick="leftClick" :autoBack="true" :placeholder="true" bgColor="#fff">
  5. <view class="nav_right hflex acenter" slot="right" @click="toHistory">
  6. <image src="/static/images/mine/history.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  7. <view class="nav_text">记录</view>
  8. </view>
  9. </u-navbar>
  10. <view class="box">
  11. <view class="top">
  12. <u-input v-model="title" border="bottom" placeholder="请填写标题(最多18个字)"></u-input>
  13. <u--textarea v-model="problem" placeholder="请填写具体描述" ></u--textarea>
  14. </view>
  15. </view>
  16. <view class="box">
  17. <view class="left">请提供问题截图或者照片(选题)</view>
  18. <view class="upload">
  19. <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" :maxCount="9" name="1" multiple :previewFullImage="true" width="204rpx" height="204rpx">
  20. <image src="/static/images/common/image_add.png" style="width: 204rpx; height: 204rpx ;"></image>
  21. </u-upload>
  22. </view>
  23. </view>
  24. <view class="box">
  25. <view class="hflex acenter">
  26. <view class="left">联系方式</view>
  27. <u-input v-model="phone" border="none" placeholder="请输入您的联系方式"></u-input>
  28. </view>
  29. </view>
  30. <view class="text_style1">您的反馈我们会尽快解决,但无法保证每一条都及时反馈,如果有紧急 咨询,请直接拨打客服电话:400-988-7788</view>
  31. <!-- <view class="history" @click="toHistory">反馈记录</view> -->
  32. </view>
  33. <view class="btn" @click="submit">提交</view>
  34. </view>
  35. </template>
  36. <script>
  37. import $api from '@/static/js/api.js'
  38. var that = ''
  39. export default {
  40. data() {
  41. return {
  42. title: '',
  43. problem: '',
  44. fileList1: [
  45. ],
  46. phone: '',
  47. id: '',
  48. }
  49. },
  50. onLoad(options) {
  51. that = this
  52. if(options.id) {
  53. that.id = options.id
  54. that.getData(options.id)
  55. }
  56. },
  57. methods: {
  58. leftClick() {
  59. console.log('leftClick');
  60. },
  61. getData(id) {
  62. var pages = getCurrentPages()
  63. var prePage = pages[pages.length - 2]
  64. var list = prePage.$vm.pageList
  65. for(var i=0;i<list.length;i++) {
  66. if(list[i].id == id) {
  67. that.title = list[i].title
  68. that.problem = list[i].content
  69. var imgs = list[i].image.split(',')
  70. let obj = {}
  71. for(let key in imgs) {
  72. obj[key] = imgs[key]
  73. }
  74. var fileList1 = Object.keys(obj).map(item => ({
  75. url: obj[item]
  76. }))
  77. that.fileList1 = fileList1
  78. that.phone = list[i].phone
  79. }
  80. }
  81. },
  82. // 删除图片
  83. deletePic(event) {
  84. // that.userInfo.imgList.splice(event.index, 1)
  85. console.log(event)
  86. this[`fileList${event.name}`].splice(event.index, 1)
  87. },
  88. // 新增图片
  89. async afterRead(event) {
  90. console.log(`fileList${event.name}`);
  91. console.log(this[`fileList${event.name}`]);
  92. let lists = [].concat(event.file)
  93. let fileListLen = this[`fileList${event.name}`].length
  94. lists.map((item) => {
  95. this[`fileList${event.name}`].push({
  96. ...item,
  97. status: 'uploading',
  98. message: '上传中'
  99. })
  100. })
  101. for (let i = 0; i < lists.length; i++) {
  102. const result = await this.uploadFilePromise(lists[i].url)
  103. let item = this[`fileList${event.name}`][fileListLen]
  104. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  105. status: 'success',
  106. message: '',
  107. url: result.url
  108. }))
  109. fileListLen++
  110. }
  111. },
  112. // 上传图片
  113. uploadFilePromise(url) {
  114. return new Promise((resolve, reject) => {
  115. let a = uni.uploadFile({
  116. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  117. filePath: url,
  118. name: 'file',
  119. header: {
  120. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  121. 'api-name': 'iosapp'
  122. },
  123. formData: {
  124. user: 'test'
  125. },
  126. success: (res) => {
  127. console.log(res);
  128. setTimeout(() => {
  129. var data = JSON.parse(res.data)
  130. resolve(data.data)
  131. }, 1000)
  132. }
  133. });
  134. })
  135. },
  136. // 提交
  137. submit() {
  138. if($api.formCheck(that.problem,"requires") && $api.formCheck(that.phone,"phone")) {
  139. var imgs = ""
  140. if(that.fileList1.length > 0) {
  141. for(var i=0;i<that.fileList1.length;i++) {
  142. if(i == that.fileList1.length - 1) {
  143. imgs += that.fileList1[i].url
  144. } else {
  145. imgs += that.fileList1[i].url + ','
  146. }
  147. }
  148. }
  149. if(that.id == "") {
  150. $api.req({
  151. url: '/data/api.business.User/feedback',
  152. method: 'POST',
  153. data: {
  154. title: that.title,
  155. content : that.problem,
  156. image: imgs,
  157. phone: that.phone,
  158. }
  159. }, function(res) {
  160. if(res.code == 1) {
  161. console.log(res);
  162. $api.info(res.info)
  163. $api.jump('/pages/tabbar/mine/mine',3)
  164. }
  165. })
  166. } else {
  167. $api.req({
  168. url: '/data/api.business.User/save_feedback',
  169. method: 'POST',
  170. data: {
  171. feedback_id: that.id,
  172. title: that.title,
  173. content : that.problem,
  174. image: imgs,
  175. phone: that.phone,
  176. }
  177. }, function(res) {
  178. if(res.code == 1) {
  179. console.log(res);
  180. $api.info(res.info)
  181. $api.jump(-1)
  182. }
  183. })
  184. }
  185. }
  186. },
  187. toHistory() {
  188. $api.jump('/pages/mine/service/feed/history')
  189. }
  190. },
  191. }
  192. </script>
  193. <style lang="scss" scoped>
  194. .content::v-deep {
  195. background-color: #FFFFFF;
  196. padding: 20rpx 30rpx;
  197. .nav_text {
  198. font-size: 30rpx;
  199. font-weight: 400;
  200. color: #506DFF;
  201. line-height: 42rpx;
  202. padding-left: 4rpx;
  203. }
  204. .box {
  205. width: 100%;
  206. background-color: #F5F5F5;
  207. border-radius: 20rpx;
  208. box-sizing: border-box;
  209. padding: 32rpx 20rpx;
  210. margin-bottom: 20rpx;
  211. .left {
  212. font-size: 30rpx;
  213. color: #B2B2B2;
  214. margin-right: 20rpx;
  215. }
  216. .top {
  217. .u-input {
  218. padding: 28rpx 0 !important;
  219. }
  220. .u-textarea {
  221. // margin: 28rpx auto 0;
  222. // background-color: #f4f4f4;
  223. // border-radius: 28rpx;
  224. box-sizing: border-box;
  225. padding: 28rpx 0;
  226. width: 610rpx;
  227. border: none;
  228. background-color: #F5F5F5;
  229. }
  230. }
  231. .upload {
  232. width: 100%;
  233. margin: 28rpx 0 24rpx;
  234. }
  235. }
  236. .text_style1 {
  237. // padding: 20rpx 0;
  238. font-size: 22rpx;
  239. font-weight: 400;
  240. color: #BABABA;
  241. line-height: 32rpx;
  242. }
  243. .history {
  244. width: 184rpx;
  245. height: 52rpx;
  246. border-radius: 26rpx;
  247. border: 1rpx solid #526FFF;
  248. margin: 34rpx auto 0;
  249. color: #506DFF;
  250. font-size: 26rpx;
  251. text-align: center;
  252. line-height: 52rpx;
  253. }
  254. .btn {
  255. width: 100%;
  256. height: 84rpx;
  257. background-color: #506dff;
  258. border-radius: 42rpx;
  259. font-size: 18px;
  260. color: #FFFFFF;
  261. text-align: center;
  262. line-height: 84rpx;
  263. margin-bottom: 80rpx;
  264. }
  265. }
  266. </style>