wantCompalin.vue 8.3 KB

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