repairsEvaluate.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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/appraise_icon_appraise@2x.png" class="mainImg"></image>
  18. <view class="fa">发表评价</view>
  19. <view class="star">
  20. <uni-rate :value="starNum" style="margin-top: 10rpx;margin-left: 80rpx;" @change="changeRate()"></uni-rate>
  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" cursor-spacing="120" maxlength="300"></textarea>
  28. </view>
  29. </view>
  30. </view>
  31. <button class="submit" :class="{active:starNum && textRea}" @tap="submit" >提交</button>
  32. </view>
  33. </template>
  34. <script>
  35. import uniRate from '@/components/uni-rate/uni-rate.vue'
  36. export default {
  37. data() {
  38. return {
  39. isLoading: false, //按钮加载
  40. textRea: '', //评价内容
  41. starNum: 0, //星星数量
  42. phoneHeight: 0, //手机状态栏的高度
  43. isShow: false,
  44. imgData: [],
  45. id: ''
  46. }
  47. },
  48. components: {
  49. uniRate
  50. },
  51. onLoad(option) {
  52. this.id = option.id
  53. },
  54. created() {
  55. // 获取状态栏的高度
  56. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  57. },
  58. methods: {
  59. // 选择评分
  60. changeRate(e) {
  61. console.log(e)
  62. this.starNum = e.value.toFixed(1)
  63. },
  64. // 提交
  65. submit() {
  66. if (!this.starNum || !this.textRea) {
  67. return
  68. } else {
  69. uni.showLoading({
  70. mask:true,
  71. title:'加载中'
  72. })
  73. this.http.httpRequest('/wxapplet/ownerreprair/edit', 'post', {
  74. id: Number(this.id),
  75. score: this.starNum,
  76. ownerEvalu: this.textRea
  77. }).then((res) => {
  78. // 判断请求是否成功 0 成功
  79. if (res.code == 0) {
  80. uni.setStorageSync('rateType',1)
  81. this.textRea=''
  82. this.starNum=0
  83. setTimeout(()=>{
  84. uni.redirectTo({
  85. url: './evalueSuccess'
  86. })
  87. },1000)
  88. uni.hideLoading()
  89. } else {
  90. uni.hideLoading()
  91. uni.showToast({
  92. title: res.msg,
  93. "icon": 'none'
  94. })
  95. }
  96. }).catch(()=>{
  97. uni.hideLoading()
  98. })
  99. }
  100. },
  101. // 返回上一层
  102. back() {
  103. uni.navigateBack({
  104. delta: 1
  105. })
  106. }
  107. },
  108. }
  109. </script>
  110. <style scoped>
  111. .submit {
  112. width: 702rpx;
  113. height: 90rpx;
  114. background: rgba(244, 244, 244, 1);
  115. opacity: 1;
  116. border-radius: 18rpx;
  117. font-size: 32rpx;
  118. font-family: PingFang SC;
  119. font-weight: bold;
  120. color: rgba(204, 204, 204, 1);
  121. position: absolute;
  122. bottom: 56rpx;
  123. left: 26rpx;
  124. text-align: center;
  125. line-height: 90rpx;
  126. }
  127. .textContent {
  128. width: 646rpx;
  129. height: 168rpx;
  130. background: rgba(246, 250, 255, 1);
  131. border: 2rpx solid rgba(197, 224, 255, 1);
  132. opacity: 1;
  133. border-radius: 6rpx;
  134. position: absolute;
  135. left: 24rpx;
  136. bottom: 180rpx;
  137. }
  138. .contentImg {
  139. width: 33rpx;
  140. height: 40rpx;
  141. position: absolute;
  142. bottom: 460rpx;
  143. left: 330rpx;
  144. }
  145. .contentTitle {
  146. width: 116rpx;
  147. height: 40rpx;
  148. font-size: 28rpx;
  149. font-family: PingFang SC;
  150. font-weight: bold;
  151. color: rgba(41, 138, 253, 1);
  152. position: absolute;
  153. bottom: 388rpx;
  154. left: 290rpx;
  155. }
  156. .star {
  157. width: 386rpx;
  158. height: 49rpx;
  159. display: flex;
  160. justify-content: space-between;
  161. position: absolute;
  162. left: 156rpx;
  163. top: 194rpx;
  164. }
  165. .starImg {
  166. width: 51rpx;
  167. height: 49rpx;
  168. }
  169. .fa {
  170. width: 116rpx;
  171. height: 40rpx;
  172. font-size: 28rpx;
  173. font-family: PingFang SC;
  174. font-weight: bold;
  175. color: rgba(41, 138, 253, 1);
  176. position: absolute;
  177. top: 114rpx;
  178. left: 288rpx;
  179. }
  180. .mainImg {
  181. width: 40rpx;
  182. height: 46rpx;
  183. position: absolute;
  184. top: 40rpx;
  185. left: 326rpx;
  186. }
  187. .main {
  188. width: 692rpx;
  189. height: 844rpx;
  190. margin: 0 auto;
  191. margin-top: 24rpx;
  192. position: relative;
  193. }
  194. .topTitle {
  195. width: 128rpx;
  196. height: 44rpx;
  197. font-size: 32rpx;
  198. font-family: PingFang SC;
  199. font-weight: 400;
  200. color: rgba(255, 255, 255, 1);
  201. margin: 0 auto;
  202. margin-top: 26rpx;
  203. }
  204. .topImg {
  205. width: 122rpx;
  206. height: 122rpx;
  207. margin: 0 auto;
  208. margin-top: 4rpx;
  209. }
  210. .pageBg {
  211. width: 100%;
  212. height: 100vh;
  213. background: linear-gradient(180deg, rgba(205, 227, 255, 1) 0%, rgba(133, 188, 255, 1) 100%);
  214. opacity: 1;
  215. }
  216. .content {
  217. width: 100%;
  218. position: absolute;
  219. top: 0;
  220. }
  221. .active {
  222. color: rgba(255, 255, 255, 1);
  223. background: rgba(41, 138, 253, 1);
  224. opacity: 1;
  225. }
  226. </style>