index.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. <template>
  2. <view class="container">
  3. <navBar name="意见反馈" left="0"></navBar>
  4. <text class="title">问题类型</text>
  5. <view class="title-wrapper">
  6. <view v-for="(item, index) in typeList" @tap="tapType(item)" :key="index"
  7. :class="item.type_id == typeId ? 'text-wrapper text-wrapper-i' : 'text-wrapper text-wrapper-s'"
  8. >{{ item.type_name }}</view>
  9. </view>
  10. <view style="margin: 64rpx 0;">
  11. <view class="title">问题描述</view>
  12. <view class="text-description-input">
  13. <textarea :enableNative="false" @input="inputContent" :value="content"
  14. placeholder-class="description-placeholder" placeholder="请详细说明,以便我们解决问题,最多可填写300字。"
  15. maxlength="300"></textarea>
  16. </view>
  17. </view>
  18. <view>
  19. <view class="title-img">
  20. <view class="title-img-text">问题图片</view>
  21. <view class="img-text">{{ imgList.length }} / 3</view>
  22. </view>
  23. <view class="upload-img-row">
  24. <view class="upload-img-view" v-for="(item, index) in imgList" :key="index">
  25. <img @tap="bindChangeImg" :data-index="index" class="upload-img" :src="item" alt="">
  26. </view>
  27. <view class="upload-img-view" v-if="imgList.length < 3">
  28. <img @tap="bindUpImg" class="upload-img" src="https://qiniu.bms16.com/Fv3KFmim5gle_kWR9g1Mym56lJpC"
  29. alt="">
  30. </view>
  31. </view>
  32. </view>
  33. <view class="submit-btn-view">
  34. <view v-if="typeId != '' && imgList.length != 0 && content != ''" class="submit" @tap="submitFeedback">提交
  35. </view>
  36. <view v-else class="submit-btn">提交</view>
  37. </view>
  38. </view>
  39. </template>
  40. <script>
  41. const http = require('../../common/http.js');
  42. const config = require('../../common/config.js');
  43. const common = require('../../common/common.js');
  44. export default {
  45. data() {
  46. return {
  47. typeList: [
  48. { type_id: 1, type_name: '车辆' },
  49. { type_id: 2, type_name: '电池' },
  50. { type_id: 3, type_name: '电柜' },
  51. { type_id: 4, type_name: '应用操作' },
  52. { type_id: 5, type_name: '其他' },
  53. ],
  54. typeId: '',
  55. content: '',
  56. imgList: [],
  57. isDiabled: false,
  58. };
  59. },
  60. /**
  61. * 生命周期函数--监听页面加载
  62. */
  63. onLoad: function (options) {
  64. // this.loadTypeList()
  65. },
  66. /**
  67. * 生命周期函数--监听页面显示
  68. */
  69. onShow: function () {
  70. },
  71. methods: {
  72. loadTypeList() {
  73. http.postApi(config.API_DAYHIRE_REPORT_REPORT_TYPE, {}, (resp) => {
  74. if (resp.data.code === 200) {
  75. this.setData({
  76. typeList: resp.data.data.list
  77. });
  78. } else {
  79. common.simpleToast(resp.data.msg)
  80. }
  81. })
  82. },
  83. tapType({ type_id }) {
  84. this.setData({
  85. typeId: type_id
  86. })
  87. },
  88. inputContent(e) {
  89. const content_text = e.detail.value
  90. if (content_text.length >= 300) {
  91. common.simpleToast('最多输入300字');
  92. } else {
  93. this.setData({
  94. content: content_text
  95. })
  96. }
  97. },
  98. bindUpImg: function () {
  99. const that = this;
  100. let _imgList = this.imgList
  101. common.upLoadImgQiNiu(function (imgUrl) {
  102. _imgList.push(imgUrl)
  103. that.setData({
  104. imgList: _imgList
  105. });
  106. });
  107. },
  108. bindChangeImg(e) {
  109. const that = this;
  110. const index = e.currentTarget.dataset.index
  111. let _imgList1 = this.imgList
  112. common.upLoadImgQiNiu(function (imgUrl) {
  113. _imgList1.splice(index, 1, imgUrl)
  114. that.setData({
  115. imgList: _imgList1
  116. });
  117. });
  118. },
  119. submitFeedback() {
  120. const imgs = this.imgList.join(',')
  121. const pData = {
  122. content: this.content,
  123. imgs: imgs,
  124. type_id: this.typeId
  125. }
  126. const that = this
  127. http.postApi(config.API_DAYHIRE_REPORT_REPORT, pData, (resp) => {
  128. if (resp.data.code === 200) {
  129. // that.setData({
  130. // isDiabled:true
  131. // })
  132. common.simpleToast('上传成功')
  133. setTimeout(() => {
  134. wx.navigateBack({
  135. delta: 1 // 返回上一级页面
  136. })
  137. }, 1000)
  138. } else {
  139. common.simpleToast(resp.data.msg)
  140. }
  141. })
  142. }
  143. }
  144. };
  145. </script>
  146. <style scoped lang="scss">
  147. .container {
  148. padding: 0 32rpx 0;
  149. background-color: white;
  150. height: 100vh;
  151. }
  152. .title {
  153. font-size: 40rpx;
  154. color: #2A3A5A;
  155. font-weight: 600;
  156. margin-bottom: 40rpx;
  157. }
  158. .title-wrapper {
  159. display: flex;
  160. flex-wrap: wrap;
  161. margin-right: -32rpx;
  162. }
  163. .text-wrapper {
  164. padding: 24rpx 0;
  165. text-align: center;
  166. width: 218rpx;
  167. background: #F3F8FF;
  168. border-radius: 16rpx;
  169. margin: 0 16rpx 16rpx 0;
  170. font-size: 32rpx;
  171. border: 4rpx solid transparent
  172. }
  173. .text-wrapper-s {
  174. background-color: #F3F8FF;
  175. color: #2A3A5A;
  176. }
  177. .text-wrapper-i {
  178. color: #0A59F7;
  179. background: #FFFFFF;
  180. border-color: #0A59F7;
  181. }
  182. .text-description-input {
  183. background: #F3F8FF;
  184. padding-left: 32rpx;
  185. padding-top: 24rpx;
  186. }
  187. .description-placeholder {
  188. color: #828DA2;
  189. font-size: 28rpx;
  190. }
  191. .title-img {
  192. font-size: 40rpx;
  193. color: #2A3A5A;
  194. font-weight: 600;
  195. display: flex;
  196. justify-content: space-between;
  197. align-items: center;
  198. margin-bottom: 40rpx;
  199. }
  200. .img-text {
  201. font-size: 32rpx;
  202. color: #9FA7B7;
  203. font-weight: 400;
  204. }
  205. .upload-img-row {
  206. display: flex;
  207. justify-content: flex-start;
  208. flex-wrap: wrap;
  209. }
  210. .upload-img-view {
  211. margin-right: 20rpx;
  212. }
  213. .upload-img {
  214. width: 218rpx;
  215. height: 218rpx;
  216. }
  217. .submit-btn-view {
  218. border-top: 2rpx solid #F4F5F6;
  219. padding-top: 24rpx;
  220. position: fixed;
  221. bottom: 0;
  222. width: 93%
  223. }
  224. .submit-btn {
  225. background: #0074FF;
  226. opacity: 0.2;
  227. border-radius: 70rpx;
  228. color: #FFF;
  229. font-size: 32rpx;
  230. text-align: center;
  231. padding: 24rpx 0;
  232. margin: 0 0 24rpx 0;
  233. }
  234. .submit {
  235. background: #0074FF;
  236. border-radius: 40rpx;
  237. color: #FFF;
  238. font-size: 32rpx;
  239. text-align: center;
  240. padding: 24rpx 0;
  241. margin: 0 32rpx 24rpx 32rpx;
  242. }
  243. </style>