wantCompalin.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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" v-for="(item,index) in imgData" :key="index" @longtap="deleteImg(index)" @tap="prew(imgData)"></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" >提交</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. prew(item){
  62. uni.previewImage({
  63. // current:item.imgArr[index],
  64. urls:item,
  65. success:(res)=>{
  66. },
  67. })
  68. },
  69. // 长按图片删除
  70. deleteImg(index){
  71. wx.showModal({
  72. title: '提示',
  73. content: '确定要删除此图片吗?',
  74. success: (res) =>{
  75. if (res.confirm) {
  76. this.imgData.splice(index, 1);
  77. } else if (res.cancel) {
  78. return false;
  79. }
  80. }
  81. })
  82. },
  83. // 选择评分
  84. changeRate(e){
  85. this.starNum=e.value
  86. },
  87. // 图片上传
  88. uploadImg(item) {
  89. if (this.imgData.length == 3) {
  90. uni.showToast({
  91. "icon": 'none',
  92. title: "最多可以上传三张图片"
  93. })
  94. return
  95. } else {
  96. uni.chooseImage({
  97. count: 3, //默认9
  98. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  99. // sourceType: ['album'], //从相册选择
  100. success: (res) => {
  101. console.log(res)
  102. var successUp = 0; //成功个数
  103. var failUp = 0; //失败个数
  104. var length = res.tempFilePaths.length; //总共个数
  105. var i = 0; //第几个
  106. this.uploadDIY(res.tempFilePaths, successUp, failUp, i, length);
  107. },
  108. });
  109. }
  110. },
  111. // 上传图片
  112. uploadDIY(filePaths, successUp, failUp, i, length) {
  113. wx.uploadFile({
  114. filePath: filePaths[i],
  115. url: 'https://www.szdeao.com/wxapplet/upload/imgPhoto ', //仅为示例,非真实的接口地址
  116. name: 'photo',
  117. method: 'post',
  118. success: (resp) => {
  119. let data =JSON.parse(resp.data)
  120. console.log(data)
  121. let reg=/,$/gi;
  122. let str=data.data.imagesPath.replace(reg,"");
  123. this.imgData.push(str)
  124. console.log(this.imgData)
  125. successUp++;
  126. },
  127. fail: (res) => {
  128. failUp++;
  129. },
  130. complete: () => {
  131. i++;
  132. if (i == length) {
  133. } else { //递归调用uploadDIY函数
  134. this.uploadDIY(filePaths, successUp, failUp, i, length);
  135. }
  136. },
  137. });
  138. },
  139. // 提交
  140. submit(){
  141. if(!this.digest || !this.textRea){
  142. return
  143. }else{
  144. uni.showLoading({
  145. mask:true,
  146. title:'加载中'
  147. })
  148. this.http.httpRequest('/wxapplet/owneradvice/add', 'post', {
  149. userId: uni.getStorageSync('userId'),
  150. createBy: uni.getStorageSync('createBy'),
  151. content:this.textRea,
  152. PhotosUrlList:this.imgData,
  153. comtyId:uni.getStorageSync('comtyId'),
  154. complType:this.digest,
  155. ownerPhone:uni.getStorageSync('phoneNumber')
  156. }, true).then((res)=>{
  157. console.log(res)
  158. if(res.code==0){
  159. uni.navigateTo({
  160. url:'./compalinSuccess'
  161. })
  162. uni.hideLoading()
  163. }else{
  164. uni.hideLoading()
  165. uni.showToast({
  166. title:res.msg,
  167. 'icon':'none'
  168. })
  169. }
  170. }).catch(()=>{
  171. uni.hideLoading()
  172. })
  173. }
  174. },
  175. // 返回上一页
  176. back(){
  177. uni.navigateBack({
  178. delta:1
  179. })
  180. }
  181. },
  182. }
  183. </script>
  184. <style scoped>
  185. .submit {
  186. width: 702rpx;
  187. height: 90rpx;
  188. background: rgba(244, 244, 244, 1);
  189. opacity: 1;
  190. border-radius: 18rpx;
  191. font-size: 32rpx;
  192. font-family: PingFang SC;
  193. font-weight: bold;
  194. color: rgba(204, 204, 204, 1);
  195. position: absolute;
  196. bottom:56rpx;
  197. left: 26rpx;
  198. text-align: center;
  199. line-height: 90rpx;
  200. }
  201. .textContent {
  202. width: 646rpx;
  203. height: 168rpx;
  204. background: rgba(246, 250, 255, 1);
  205. border: 2rpx solid rgba(197, 224, 255, 1);
  206. opacity: 1;
  207. border-radius: 6rpx;
  208. position: absolute;
  209. left: 24rpx;
  210. bottom: 180rpx;
  211. }
  212. .contentImg {
  213. width: 33rpx;
  214. height: 40rpx;
  215. position: absolute;
  216. bottom: 460rpx;
  217. left: 330rpx;
  218. }
  219. .contentTitle {
  220. width: 116rpx;
  221. height: 40rpx;
  222. font-size: 28rpx;
  223. font-family: PingFang SC;
  224. font-weight: bold;
  225. color: rgba(41, 138, 253, 1);
  226. position: absolute;
  227. bottom: 388rpx;
  228. left: 290rpx;
  229. }
  230. .star {
  231. width: 646rpx;
  232. height: 80rpx;
  233. display: flex;
  234. justify-content: space-between;
  235. position: absolute;
  236. left: 24rpx;
  237. top: 164rpx;
  238. background:rgba(246,250,255,1);
  239. border:2rpx solid rgba(197,224,255,1);
  240. opacity:1;
  241. border-radius:6rpx;
  242. }
  243. .starImg {
  244. width: 51rpx;
  245. height: 49rpx;
  246. }
  247. .fa {
  248. width: 116rpx;
  249. height: 40rpx;
  250. font-size: 28rpx;
  251. font-family: PingFang SC;
  252. font-weight: bold;
  253. color: rgba(41, 138, 253, 1);
  254. position: absolute;
  255. top: 114rpx;
  256. left: 288rpx;
  257. }
  258. .mainImg {
  259. width: 40rpx;
  260. height: 46rpx;
  261. position: absolute;
  262. top: 40rpx;
  263. left: 326rpx;
  264. }
  265. .main {
  266. width: 692rpx;
  267. height: 844rpx;
  268. margin: 0 auto;
  269. margin-top: 24rpx;
  270. position: relative;
  271. }
  272. .topTitle {
  273. width: 128rpx;
  274. height: 44rpx;
  275. font-size: 32rpx;
  276. font-family: PingFang SC;
  277. font-weight: 400;
  278. color: rgba(255, 255, 255, 1);
  279. margin: 0 auto;
  280. margin-top: 26rpx;
  281. }
  282. .topImg {
  283. width: 122rpx;
  284. height: 122rpx;
  285. margin: 0 auto;
  286. margin-top: 4rpx;
  287. }
  288. .pageBg {
  289. width: 100%;
  290. height: 100vh;
  291. background: linear-gradient(180deg, rgba(205, 227, 255, 1) 0%, rgba(133, 188, 255, 1) 100%);
  292. opacity: 1;
  293. }
  294. .content {
  295. width: 100%;
  296. position: absolute;
  297. top: 0;
  298. }
  299. .active{
  300. color:rgba(255,255,255,1);
  301. background:rgba(41,138,253,1);
  302. opacity:1;
  303. }
  304. </style>