feed.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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" maxlength="18" border="bottom" placeholder="请填写标题(最多18个字)"></u-input>
  13. <u-textarea v-model="problem" confirmType="done" 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="200rpx" height="200rpx">
  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. if(list[i].image) {
  70. var imgs = list[i].image.split(',')
  71. let obj = {}
  72. for(let key in imgs) {
  73. obj[key] = imgs[key]
  74. }
  75. var fileList1 = Object.keys(obj).map(item => ({
  76. url: obj[item]
  77. }))
  78. that.fileList1 = fileList1
  79. } else {
  80. that.fileList1 = []
  81. }
  82. that.phone = list[i].phone
  83. }
  84. }
  85. },
  86. // 删除图片
  87. deletePic(event) {
  88. // that.userInfo.imgList.splice(event.index, 1)
  89. console.log(event)
  90. this[`fileList${event.name}`].splice(event.index, 1)
  91. },
  92. // 新增图片
  93. async afterRead(event) {
  94. uni.showLoading({
  95. title: '上传中',
  96. mask: true
  97. })
  98. console.log(`fileList${event.name}`);
  99. console.log(this[`fileList${event.name}`]);
  100. let lists = [].concat(event.file)
  101. let fileListLen = this[`fileList${event.name}`].length
  102. lists.map((item) => {
  103. this[`fileList${event.name}`].push({
  104. ...item,
  105. status: 'uploading',
  106. message: '上传中'
  107. })
  108. })
  109. for (let i = 0; i < lists.length; i++) {
  110. const result = await this.uploadFilePromise(lists[i].url)
  111. let item = this[`fileList${event.name}`][fileListLen]
  112. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  113. status: 'success',
  114. message: '',
  115. url: result.url
  116. }))
  117. fileListLen++
  118. if(lists.length - 1 == i) {
  119. uni.hideLoading()
  120. }
  121. }
  122. },
  123. // 上传图片
  124. uploadFilePromise(url) {
  125. return new Promise((resolve, reject) => {
  126. let a = uni.uploadFile({
  127. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  128. filePath: url,
  129. name: 'file',
  130. header: {
  131. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  132. 'api-name': 'iosapp'
  133. },
  134. formData: {
  135. user: 'test'
  136. },
  137. success: (res) => {
  138. console.log(res);
  139. setTimeout(() => {
  140. var data = JSON.parse(res.data)
  141. resolve(data.data)
  142. }, 1000)
  143. }
  144. });
  145. })
  146. },
  147. // 提交
  148. submit() {
  149. if($api.formCheck(that.problem,"requires") && $api.formCheck(that.phone,"phone")) {
  150. var imgs = ""
  151. if(that.fileList1.length > 0) {
  152. for(var i=0;i<that.fileList1.length;i++) {
  153. if(i == that.fileList1.length - 1) {
  154. imgs += that.fileList1[i].url
  155. } else {
  156. imgs += that.fileList1[i].url + ','
  157. }
  158. }
  159. }
  160. if(that.id == "") {
  161. $api.req({
  162. url: '/data/api.business.User/feedback',
  163. method: 'POST',
  164. data: {
  165. title: that.title,
  166. content : that.problem,
  167. image: imgs,
  168. phone: that.phone,
  169. }
  170. }, function(res) {
  171. if(res.code == 1) {
  172. console.log(res);
  173. $api.info(res.info)
  174. $api.jump('/pages/tabbar/mine/mine',2)
  175. }
  176. })
  177. } else {
  178. $api.req({
  179. url: '/data/api.business.User/save_feedback',
  180. method: 'POST',
  181. data: {
  182. feedback_id: that.id,
  183. title: that.title,
  184. content : that.problem,
  185. image: imgs,
  186. phone: that.phone,
  187. }
  188. }, function(res) {
  189. if(res.code == 1) {
  190. console.log(res);
  191. $api.info(res.info)
  192. $api.jump(-1)
  193. }
  194. })
  195. }
  196. }
  197. },
  198. toHistory() {
  199. $api.jump('/pages/mine/service/feed/history')
  200. }
  201. },
  202. }
  203. </script>
  204. <style lang="scss" scoped>
  205. .content::v-deep {
  206. background-color: #FFFFFF;
  207. padding: 20rpx 30rpx;
  208. .nav_text {
  209. font-size: 30rpx;
  210. font-weight: 400;
  211. color: #506DFF;
  212. line-height: 42rpx;
  213. padding-left: 4rpx;
  214. }
  215. .box {
  216. width: 100%;
  217. background-color: #F5F5F5;
  218. border-radius: 20rpx;
  219. box-sizing: border-box;
  220. padding: 32rpx 20rpx;
  221. margin-bottom: 20rpx;
  222. .left {
  223. font-size: 30rpx;
  224. color: #B2B2B2;
  225. margin-right: 20rpx;
  226. }
  227. .top {
  228. .u-input {
  229. padding: 0 0 28rpx !important;
  230. }
  231. .u-textarea {
  232. // margin: 28rpx auto 0;
  233. // background-color: #f4f4f4;
  234. // border-radius: 28rpx;
  235. box-sizing: border-box;
  236. padding: 28rpx 0;
  237. width: 610rpx;
  238. border: none;
  239. background-color: #F5F5F5;
  240. }
  241. }
  242. .upload {
  243. width: 100%;
  244. margin: 28rpx 0 24rpx;
  245. }
  246. }
  247. .text_style1 {
  248. // padding: 20rpx 0;
  249. font-size: 22rpx;
  250. font-weight: 400;
  251. color: #BABABA;
  252. line-height: 32rpx;
  253. }
  254. .history {
  255. width: 184rpx;
  256. height: 52rpx;
  257. border-radius: 26rpx;
  258. border: 1rpx solid #526FFF;
  259. margin: 34rpx auto 0;
  260. color: #506DFF;
  261. font-size: 26rpx;
  262. text-align: center;
  263. line-height: 52rpx;
  264. }
  265. .btn {
  266. width: 100%;
  267. height: 84rpx;
  268. background-color: #506dff;
  269. border-radius: 42rpx;
  270. font-size: 18px;
  271. color: #FFFFFF;
  272. text-align: center;
  273. line-height: 84rpx;
  274. margin-bottom: 80rpx;
  275. }
  276. }
  277. </style>