wantRepair.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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/guarantee_icon_guarantee@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. uni.showToast({
  130. title: res.msg,
  131. 'icon': 'none'
  132. })
  133. },
  134. complete: () => {
  135. i++;
  136. if (i == length) {
  137. } else { //递归调用uploadDIY函数
  138. this.uploadDIY(filePaths, successUp, failUp, i, length);
  139. }
  140. },
  141. });
  142. },
  143. // 提交
  144. submit() {
  145. if (!this.digest || !this.textRea || !this.imgData) {
  146. return
  147. } else {
  148. uni.showLoading({
  149. mask:true,
  150. title:'加载中'
  151. })
  152. this.http.httpRequest('/wxapplet/ownerreprair/add', 'post', {
  153. userId: uni.getStorageSync('userId'),
  154. createBy: uni.getStorageSync('createBy'),
  155. content: this.textRea,
  156. PhotosUrlList: this.imgData,
  157. reprairType: this.digest,
  158. comtyId:uni.getStorageSync('comtyId'),
  159. ownerPhone: uni.getStorageSync('phoneNumber')
  160. }, true).then((res) => {
  161. if (res.code == 0) {
  162. uni.navigateTo({
  163. url: './repairSuccess'
  164. })
  165. uni.hideLoading()
  166. } else {
  167. uni.hideLoading()
  168. uni.showToast({
  169. title: res.msg,
  170. 'icon': 'none'
  171. })
  172. }
  173. }).catch(()=>{
  174. uni.hideLoading()
  175. })
  176. }
  177. },
  178. // 返回上一层
  179. back() {
  180. uni.navigateBack({
  181. delta: 1
  182. })
  183. }
  184. },
  185. }
  186. </script>
  187. <style scoped>
  188. .submit {
  189. width: 702rpx;
  190. height: 90rpx;
  191. background: rgba(244, 244, 244, 1);
  192. opacity: 1;
  193. border-radius: 18rpx;
  194. font-size: 32rpx;
  195. font-family: PingFang SC;
  196. font-weight: bold;
  197. color: rgba(204, 204, 204, 1);
  198. position: absolute;
  199. bottom: 56rpx;
  200. left: 26rpx;
  201. text-align: center;
  202. line-height: 90rpx;
  203. }
  204. .textContent {
  205. width: 646rpx;
  206. height: 168rpx;
  207. background: rgba(246, 250, 255, 1);
  208. border: 2rpx solid rgba(197, 224, 255, 1);
  209. opacity: 1;
  210. border-radius: 6rpx;
  211. position: absolute;
  212. left: 24rpx;
  213. bottom: 180rpx;
  214. }
  215. .contentImg {
  216. width: 33rpx;
  217. height: 40rpx;
  218. position: absolute;
  219. bottom: 460rpx;
  220. left: 330rpx;
  221. }
  222. .contentTitle {
  223. width: 116rpx;
  224. height: 40rpx;
  225. font-size: 28rpx;
  226. font-family: PingFang SC;
  227. font-weight: bold;
  228. color: rgba(41, 138, 253, 1);
  229. position: absolute;
  230. bottom: 388rpx;
  231. left: 290rpx;
  232. }
  233. .star {
  234. width: 646rpx;
  235. height: 80rpx;
  236. display: flex;
  237. justify-content: space-between;
  238. position: absolute;
  239. left: 24rpx;
  240. top: 164rpx;
  241. background: rgba(246, 250, 255, 1);
  242. border: 2rpx solid rgba(197, 224, 255, 1);
  243. opacity: 1;
  244. border-radius: 6rpx;
  245. }
  246. .starImg {
  247. width: 51rpx;
  248. height: 49rpx;
  249. }
  250. .fa {
  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. top: 114rpx;
  259. left: 288rpx;
  260. }
  261. .mainImg {
  262. width: 40rpx;
  263. height: 46rpx;
  264. position: absolute;
  265. top: 40rpx;
  266. left: 326rpx;
  267. }
  268. .main {
  269. width: 692rpx;
  270. height: 844rpx;
  271. margin: 0 auto;
  272. margin-top: 24rpx;
  273. position: relative;
  274. }
  275. .topTitle {
  276. width: 128rpx;
  277. height: 44rpx;
  278. font-size: 32rpx;
  279. font-family: PingFang SC;
  280. font-weight: 400;
  281. color: rgba(255, 255, 255, 1);
  282. margin: 0 auto;
  283. margin-top: 26rpx;
  284. }
  285. .topImg {
  286. width: 122rpx;
  287. height: 122rpx;
  288. margin: 0 auto;
  289. margin-top: 4rpx;
  290. }
  291. .pageBg {
  292. width: 100%;
  293. height: 100vh;
  294. background: linear-gradient(180deg, rgba(205, 227, 255, 1) 0%, rgba(133, 188, 255, 1) 100%);
  295. opacity: 1;
  296. }
  297. .content {
  298. width: 100%;
  299. position: absolute;
  300. top: 0;
  301. }
  302. .active {
  303. color: rgba(255, 255, 255, 1);
  304. background: rgba(41, 138, 253, 1);
  305. opacity: 1;
  306. }
  307. </style>