index.vue 6.1 KB

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