evaluateCompalin.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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: 100%;height: 100%;" 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.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. <view class="submit" :class="{active:starNum && textRea}" @tap="submit">提交</view>
  39. </view>
  40. </template>
  41. <script>
  42. import uniRate from '@/components/uni-rate/uni-rate.vue'
  43. export default {
  44. data() {
  45. return {
  46. textRea:'',//评价内容
  47. starNum:0,//星星数量
  48. phoneHeight: 0, //手机状态栏的高度
  49. isShow: false,
  50. imgData: []
  51. }
  52. },
  53. components: {uniRate},
  54. created() {
  55. // 获取状态栏的高度
  56. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  57. },
  58. methods: {
  59. // 选择评分
  60. changeRate(e){
  61. this.starNum=e.value
  62. },
  63. // 图片上传
  64. uploadImg(item) {
  65. let that = this
  66. uni.chooseImage({
  67. count: 3, //默认9
  68. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  69. sourceType: ['album'], //从相册选择
  70. success:(res)=> {
  71. console.log(res);
  72. this.imgData = res.tempFiles
  73. },
  74. });
  75. },
  76. // 提交
  77. submit(){
  78. if(!this.textRea || !this.starNum){
  79. return
  80. }else{
  81. uni.navigateTo({
  82. url:"../onlineRpair/evalueSuccess"
  83. })
  84. }
  85. },
  86. // 返回上一层
  87. back(){
  88. uni.navigateBack({
  89. delta:1
  90. })
  91. }
  92. },
  93. }
  94. </script>
  95. <style scoped>
  96. .submit {
  97. width: 702rpx;
  98. height: 90rpx;
  99. background: rgba(244, 244, 244, 1);
  100. opacity: 1;
  101. border-radius: 18rpx;
  102. font-size: 32rpx;
  103. font-family: PingFang SC;
  104. font-weight: bold;
  105. color: rgba(204, 204, 204, 1);
  106. position: absolute;
  107. bottom:56rpx;
  108. left: 26rpx;
  109. text-align: center;
  110. line-height: 90rpx;
  111. }
  112. .textContent {
  113. width: 646rpx;
  114. height: 168rpx;
  115. background: rgba(246, 250, 255, 1);
  116. border: 2rpx solid rgba(197, 224, 255, 1);
  117. opacity: 1;
  118. border-radius: 6rpx;
  119. position: absolute;
  120. left: 24rpx;
  121. bottom: 180rpx;
  122. }
  123. .contentImg {
  124. width: 33rpx;
  125. height: 40rpx;
  126. position: absolute;
  127. bottom: 460rpx;
  128. left: 330rpx;
  129. }
  130. .contentTitle {
  131. width: 116rpx;
  132. height: 40rpx;
  133. font-size: 28rpx;
  134. font-family: PingFang SC;
  135. font-weight: bold;
  136. color: rgba(41, 138, 253, 1);
  137. position: absolute;
  138. bottom: 388rpx;
  139. left: 290rpx;
  140. }
  141. .star {
  142. width: 386rpx;
  143. height: 49rpx;
  144. display: flex;
  145. justify-content: space-between;
  146. position: absolute;
  147. left: 156rpx;
  148. top: 194rpx;
  149. }
  150. .starImg {
  151. width: 51rpx;
  152. height: 49rpx;
  153. }
  154. .fa {
  155. width: 116rpx;
  156. height: 40rpx;
  157. font-size: 28rpx;
  158. font-family: PingFang SC;
  159. font-weight: bold;
  160. color: rgba(41, 138, 253, 1);
  161. position: absolute;
  162. top: 114rpx;
  163. left: 288rpx;
  164. }
  165. .mainImg {
  166. width: 40rpx;
  167. height: 46rpx;
  168. position: absolute;
  169. top: 40rpx;
  170. left: 326rpx;
  171. }
  172. .main {
  173. width: 692rpx;
  174. height: 844rpx;
  175. margin: 0 auto;
  176. margin-top: 24rpx;
  177. position: relative;
  178. }
  179. .topTitle {
  180. width: 128rpx;
  181. height: 44rpx;
  182. font-size: 32rpx;
  183. font-family: PingFang SC;
  184. font-weight: 400;
  185. color: rgba(255, 255, 255, 1);
  186. margin: 0 auto;
  187. margin-top: 26rpx;
  188. }
  189. .topImg {
  190. width: 122rpx;
  191. height: 122rpx;
  192. margin: 0 auto;
  193. margin-top: 4rpx;
  194. }
  195. .pageBg {
  196. width: 100%;
  197. height: 100vh;
  198. background: linear-gradient(180deg, rgba(205, 227, 255, 1) 0%, rgba(133, 188, 255, 1) 100%);
  199. opacity: 1;
  200. }
  201. .content {
  202. width: 100%;
  203. position: absolute;
  204. top: 0;
  205. }
  206. .active{
  207. color:rgba(255,255,255,1);
  208. background:rgba(41,138,253,1);
  209. opacity:1;
  210. }
  211. </style>