wantCompalin.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <!-- 我要投诉 -->
  2. <template>
  3. <view class="pageBg">
  4. <view class="content">
  5. <view class="topBack" :style="{marginTop:phoneHeight + 'px'}">
  6. <image src="../../static/icon_back@2x(1).png" style="width:48rpx ;height: 48rpx;margin-left: 36rpx;margin-top: 18rpx;"
  7. @tap="back"></image>
  8. </view>
  9. <view class="topImg">
  10. <image src="../../static/complain_icon_complain@2x.png" style="width: 100%;height: 100%;"></image>
  11. </view>
  12. <view class="topTitle">
  13. 我要投诉
  14. </view>
  15. <view class="main">
  16. <image src="../../static/appraise_bgimage@2x.png" style="width: 100%;height: 100%;"></image>
  17. <image src="../../static/guarantee_icon_summary@2x.png" class="mainImg"></image>
  18. <view class="fa">投诉摘要</view>
  19. <view class="star">
  20. <input placeholder="请填写投诉摘要" style="width: 95%;height: 100%;margin: 0 auto;" v-model="digest"/>
  21. </view>
  22. <image src="../../static/guarantee_icon_content@2x.png" class="contentImg"></image>
  23. <view class="contentTitle">
  24. 投诉内容
  25. </view>
  26. <view class="textContent">
  27. <textarea placeholder="请填写投诉内容" style="width: 95%;height: 96%;margin-left: 10rpx;margin-top: 10rpx;" v-model="textRea"></textarea>
  28. </view>
  29. <!-- 图片盒字 -->
  30. <view style="width:646rpx;height: 114rpx;position: absolute;left: 24rpx;bottom: 40rpx;display: flex;">
  31. <view style="height: 114rpx;margin-right: 10rpx;display: flex;justify-content: space-between;" v-show="imgData" >
  32. <image style="width: 114rpx;height: 114rpx;margin-right: 10rpx;" :src="item.path" v-for="(item,index) in imgData" :key="index"></image>
  33. </view>
  34. <image src="../../static/circle_image@2x.png" style="width: 114rpx;height: 114rpx;" @tap="uploadImg(item)"></image>
  35. </view>
  36. </view>
  37. </view>
  38. <button class="submit" :class="{active:digest && textRea}" @tap="submit" :loading="isloading">提交</button>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {
  45. isloading:false,
  46. digest:'',//报修摘要
  47. textRea:'',//评价内容
  48. starNum:0,//星星数量
  49. phoneHeight: 0, //手机状态栏的高度
  50. isShow: false,
  51. imgData: []
  52. }
  53. },
  54. components: {},
  55. created() {
  56. // 获取状态栏的高度
  57. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  58. },
  59. methods: {
  60. // 选择评分
  61. changeRate(e){
  62. this.starNum=e.value
  63. },
  64. // 图片上传
  65. uploadImg(item) {
  66. if (this.imgData.length == 3) {
  67. uni.showToast({
  68. "icon": 'none',
  69. title: "最多可以上传三张图片"
  70. })
  71. return
  72. } else {
  73. uni.chooseImage({
  74. count: 3, //默认9
  75. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  76. // sourceType: ['album'], //从相册选择
  77. success: (res) => {
  78. console.log(res)
  79. var successUp = 0; //成功个数
  80. var failUp = 0; //失败个数
  81. var length = res.tempFilePaths.length; //总共个数
  82. var i = 0; //第几个
  83. this.uploadDIY(res.tempFilePaths, successUp, failUp, i, length);
  84. },
  85. });
  86. }
  87. },
  88. // 上传图片
  89. uploadDIY(filePaths, successUp, failUp, i, length) {
  90. wx.uploadFile({
  91. filePath: filePaths[i],
  92. url: 'https://www.szdeao.com/wxapplet/upload/imgPhoto ', //仅为示例,非真实的接口地址
  93. name: 'photo',
  94. method: 'post',
  95. success: (resp) => {
  96. let data =JSON.parse(resp.data)
  97. console.log(data)
  98. let reg=/,$/gi;
  99. let str=data.data.imagesPath.replace(reg,"");
  100. this.imgData.push(str)
  101. console.log(this.imgData)
  102. successUp++;
  103. },
  104. fail: (res) => {
  105. failUp++;
  106. },
  107. complete: () => {
  108. i++;
  109. if (i == length) {
  110. } else { //递归调用uploadDIY函数
  111. this.uploadDIY(filePaths, successUp, failUp, i, length);
  112. }
  113. },
  114. });
  115. },
  116. // 提交
  117. submit(){
  118. if(!this.digest || !this.textRea){
  119. return
  120. }else{
  121. this.isloading=true
  122. this.http.httpRequest('/wxapplet/owneradvice/add', 'post', {
  123. userId: uni.getStorageSync('userId'),
  124. createBy: uni.getStorageSync('createBy'),
  125. content:this.textRea,
  126. PhotosUrlList:this.imgData,
  127. complType:this.digest,
  128. ownerPhone:uni.getStorageSync('phoneNumber')
  129. }, true).then((res)=>{
  130. console.log(res)
  131. if(res.code==0){
  132. this.isloading=false
  133. uni.navigateTo({
  134. url:'./compalinSuccess'
  135. })
  136. }else{
  137. this.isLoading=false
  138. uni.showToast({
  139. title:res.msg,
  140. 'icon':'none'
  141. })
  142. }
  143. })
  144. }
  145. },
  146. // 返回上一页
  147. back(){
  148. uni.navigateBack({
  149. delta:1
  150. })
  151. }
  152. },
  153. }
  154. </script>
  155. <style scoped>
  156. .submit {
  157. width: 702rpx;
  158. height: 90rpx;
  159. background: rgba(244, 244, 244, 1);
  160. opacity: 1;
  161. border-radius: 18rpx;
  162. font-size: 32rpx;
  163. font-family: PingFang SC;
  164. font-weight: bold;
  165. color: rgba(204, 204, 204, 1);
  166. position: absolute;
  167. bottom:56rpx;
  168. left: 26rpx;
  169. text-align: center;
  170. line-height: 90rpx;
  171. }
  172. .textContent {
  173. width: 646rpx;
  174. height: 168rpx;
  175. background: rgba(246, 250, 255, 1);
  176. border: 2rpx solid rgba(197, 224, 255, 1);
  177. opacity: 1;
  178. border-radius: 6rpx;
  179. position: absolute;
  180. left: 24rpx;
  181. bottom: 180rpx;
  182. }
  183. .contentImg {
  184. width: 33rpx;
  185. height: 40rpx;
  186. position: absolute;
  187. bottom: 460rpx;
  188. left: 330rpx;
  189. }
  190. .contentTitle {
  191. width: 116rpx;
  192. height: 40rpx;
  193. font-size: 28rpx;
  194. font-family: PingFang SC;
  195. font-weight: bold;
  196. color: rgba(41, 138, 253, 1);
  197. position: absolute;
  198. bottom: 388rpx;
  199. left: 290rpx;
  200. }
  201. .star {
  202. width: 646rpx;
  203. height: 80rpx;
  204. display: flex;
  205. justify-content: space-between;
  206. position: absolute;
  207. left: 24rpx;
  208. top: 164rpx;
  209. background:rgba(246,250,255,1);
  210. border:2rpx solid rgba(197,224,255,1);
  211. opacity:1;
  212. border-radius:6rpx;
  213. }
  214. .starImg {
  215. width: 51rpx;
  216. height: 49rpx;
  217. }
  218. .fa {
  219. width: 116rpx;
  220. height: 40rpx;
  221. font-size: 28rpx;
  222. font-family: PingFang SC;
  223. font-weight: bold;
  224. color: rgba(41, 138, 253, 1);
  225. position: absolute;
  226. top: 114rpx;
  227. left: 288rpx;
  228. }
  229. .mainImg {
  230. width: 40rpx;
  231. height: 46rpx;
  232. position: absolute;
  233. top: 40rpx;
  234. left: 326rpx;
  235. }
  236. .main {
  237. width: 692rpx;
  238. height: 844rpx;
  239. margin: 0 auto;
  240. margin-top: 24rpx;
  241. position: relative;
  242. }
  243. .topTitle {
  244. width: 128rpx;
  245. height: 44rpx;
  246. font-size: 32rpx;
  247. font-family: PingFang SC;
  248. font-weight: 400;
  249. color: rgba(255, 255, 255, 1);
  250. margin: 0 auto;
  251. margin-top: 26rpx;
  252. }
  253. .topImg {
  254. width: 122rpx;
  255. height: 122rpx;
  256. margin: 0 auto;
  257. margin-top: 4rpx;
  258. }
  259. .pageBg {
  260. width: 100%;
  261. height: 100vh;
  262. background: linear-gradient(180deg, rgba(205, 227, 255, 1) 0%, rgba(133, 188, 255, 1) 100%);
  263. opacity: 1;
  264. }
  265. .content {
  266. width: 100%;
  267. position: absolute;
  268. top: 0;
  269. }
  270. .active{
  271. color:rgba(255,255,255,1);
  272. background:rgba(41,138,253,1);
  273. opacity:1;
  274. }
  275. </style>