evaluateCompalin.vue 5.4 KB

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