index.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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. <uploaders :max="3" :car_info="imgList"
  43. @update-car-images="handleCarImagesUpdate"></uploaders>
  44. </view>
  45. <view class="submit-btn-view">
  46. <view v-if="typeId != '' && imgList.length != 0 && content != ''" class="submit" @tap="submitFeedback">提交
  47. </view>
  48. <view v-else class="submit-btn">提交</view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. const http = require('../../common/http.js');
  54. const config = require('../../common/config.js');
  55. const common = require('../../common/common.js');
  56. import uploaders from '@/component/uploaders/uploaders';
  57. export default {
  58. components:{
  59. uploaders
  60. },
  61. data() {
  62. return {
  63. typeList: [{
  64. type_id: 1,
  65. type_name: '车辆'
  66. },
  67. {
  68. type_id: 2,
  69. type_name: '电池'
  70. },
  71. {
  72. type_id: 3,
  73. type_name: '电柜'
  74. },
  75. {
  76. type_id: 4,
  77. type_name: '应用操作'
  78. },
  79. {
  80. type_id: 5,
  81. type_name: '其他'
  82. },
  83. ],
  84. typeId: '',
  85. content: '',
  86. imgList: [],
  87. isDiabled: false,
  88. };
  89. },
  90. /**
  91. * 生命周期函数--监听页面加载
  92. */
  93. onLoad: function(options) {
  94. // this.loadTypeList()
  95. },
  96. /**
  97. * 生命周期函数--监听页面显示
  98. */
  99. onShow: function() {
  100. },
  101. methods: {
  102. handleCarImagesUpdate(updatedImages) {
  103. // 这里会接收到子组件传来的更新后的图片URL数组
  104. this.imgList = updatedImages
  105. },
  106. loadTypeList() {
  107. http.postApi(config.API_DAYHIRE_REPORT_REPORT_TYPE, {}, (resp) => {
  108. if (resp.data.code === 200) {
  109. this.setData({
  110. typeList: resp.data.data.list
  111. });
  112. } else {
  113. common.simpleToast(resp.data.msg)
  114. }
  115. })
  116. },
  117. tapType({
  118. type_id
  119. }) {
  120. this.setData({
  121. typeId: type_id
  122. })
  123. },
  124. inputContent(e) {
  125. const content_text = e.detail.value
  126. if (content_text.length >= 300) {
  127. common.simpleToast('最多输入300字');
  128. } else {
  129. this.setData({
  130. content: content_text
  131. })
  132. }
  133. },
  134. bindUpImg: function() {
  135. const that = this;
  136. let _imgList = this.imgList
  137. common.upLoadImgQiNiu(function(imgUrl) {
  138. _imgList.push(imgUrl)
  139. that.setData({
  140. imgList: _imgList
  141. });
  142. });
  143. },
  144. bindChangeImg(e) {
  145. const that = this;
  146. const index = e.currentTarget.dataset.index
  147. let _imgList1 = this.imgList
  148. common.upLoadImgQiNiu(function(imgUrl) {
  149. _imgList1.splice(index, 1, imgUrl)
  150. that.setData({
  151. imgList: _imgList1
  152. });
  153. });
  154. },
  155. submitFeedback() {
  156. const imgList = this.imgList.map(item=>{
  157. return item.url
  158. })
  159. const pData = {
  160. content: this.content,
  161. image_list: imgList,
  162. type_id: this.typeId
  163. }
  164. const that = this
  165. http.postApi(config.API_DAYHIRE_REPORT_REPORT, pData, (resp) => {
  166. if (resp.data.code === 200) {
  167. // that.setData({
  168. // isDiabled:true
  169. // })
  170. common.simpleToast('提交成功')
  171. setTimeout(() => {
  172. wx.navigateBack({
  173. delta: 1 // 返回上一级页面
  174. })
  175. }, 1000)
  176. } else {
  177. common.simpleToast(resp.data.msg)
  178. }
  179. })
  180. }
  181. }
  182. };
  183. </script>
  184. <style scoped lang="scss">
  185. .container {
  186. padding: 0 32rpx 0;
  187. background-color: white;
  188. height: 100vh;
  189. }
  190. .title {
  191. font-size: 40rpx;
  192. color: #2A3A5A;
  193. font-weight: 600;
  194. margin-bottom: 40rpx;
  195. }
  196. .title-wrapper {
  197. display: flex;
  198. flex-wrap: wrap;
  199. margin-right: -32rpx;
  200. }
  201. .text-wrapper {
  202. padding: 24rpx 0;
  203. text-align: center;
  204. width: 218rpx;
  205. background: #F3F8FF;
  206. border-radius: 16rpx;
  207. margin: 0 16rpx 16rpx 0;
  208. font-size: 32rpx;
  209. border: 4rpx solid transparent
  210. }
  211. .text-wrapper-s {
  212. background-color: #F3F8FF;
  213. color: #2A3A5A;
  214. }
  215. .text-wrapper-i {
  216. color: #0A59F7;
  217. background: #FFFFFF;
  218. border-color: #0A59F7;
  219. }
  220. .text-description-input {
  221. background: #F3F8FF;
  222. padding-left: 32rpx;
  223. padding-top: 24rpx;
  224. }
  225. .description-placeholder {
  226. color: #828DA2;
  227. font-size: 28rpx;
  228. }
  229. .title-img {
  230. font-size: 40rpx;
  231. color: #2A3A5A;
  232. font-weight: 600;
  233. display: flex;
  234. justify-content: space-between;
  235. align-items: center;
  236. margin-bottom: 40rpx;
  237. }
  238. .img-text {
  239. font-size: 32rpx;
  240. color: #9FA7B7;
  241. font-weight: 400;
  242. }
  243. .upload-img-row {
  244. display: flex;
  245. justify-content: flex-start;
  246. flex-wrap: wrap;
  247. }
  248. .upload-img-view {
  249. margin-right: 20rpx;
  250. }
  251. .upload-img {
  252. width: 206rpx;
  253. height: 206rpx;
  254. }
  255. .submit-btn-view {
  256. border-top: 2rpx solid #F4F5F6;
  257. padding-top: 24rpx;
  258. position: fixed;
  259. bottom: 0;
  260. width: 93%
  261. }
  262. .submit-btn {
  263. background: #060809;
  264. opacity: 0.2;
  265. border-radius: 70rpx;
  266. color: #FFF;
  267. font-size: 32rpx;
  268. text-align: center;
  269. padding: 24rpx 0;
  270. margin: 0 0 24rpx 0;
  271. }
  272. .submit {
  273. background: #060809;
  274. border-radius: 40rpx;
  275. color: #FFF;
  276. font-size: 32rpx;
  277. text-align: center;
  278. padding: 24rpx 0;
  279. margin: 0 32rpx 24rpx 32rpx;
  280. }
  281. </style>