wantRepair.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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: 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:digest && textRea}" @tap="submit">提交</view>
  39. </view>
  40. </template>
  41. <script>
  42. export default {
  43. data() {
  44. return {
  45. digest:'',//报修摘要
  46. textRea:'',//评价内容
  47. starNum:0,//星星数量
  48. phoneHeight: 0, //手机状态栏的高度
  49. isShow: false,
  50. imgData: []
  51. }
  52. },
  53. components: {},
  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. console.log(this.textRea,this.imgData,this.starNum)
  79. },
  80. // 返回上一层
  81. back(){
  82. uni.navigateBack({
  83. delta:1
  84. })
  85. }
  86. },
  87. }
  88. </script>
  89. <style scoped>
  90. .submit {
  91. width: 702rpx;
  92. height: 90rpx;
  93. background: rgba(244, 244, 244, 1);
  94. opacity: 1;
  95. border-radius: 18rpx;
  96. font-size: 32rpx;
  97. font-family: PingFang SC;
  98. font-weight: bold;
  99. color: rgba(204, 204, 204, 1);
  100. position: absolute;
  101. bottom:56rpx;
  102. left: 26rpx;
  103. text-align: center;
  104. line-height: 90rpx;
  105. }
  106. .textContent {
  107. width: 646rpx;
  108. height: 168rpx;
  109. background: rgba(246, 250, 255, 1);
  110. border: 2rpx solid rgba(197, 224, 255, 1);
  111. opacity: 1;
  112. border-radius: 6rpx;
  113. position: absolute;
  114. left: 24rpx;
  115. bottom: 180rpx;
  116. }
  117. .contentImg {
  118. width: 33rpx;
  119. height: 40rpx;
  120. position: absolute;
  121. bottom: 460rpx;
  122. left: 330rpx;
  123. }
  124. .contentTitle {
  125. width: 116rpx;
  126. height: 40rpx;
  127. font-size: 28rpx;
  128. font-family: PingFang SC;
  129. font-weight: bold;
  130. color: rgba(41, 138, 253, 1);
  131. position: absolute;
  132. bottom: 388rpx;
  133. left: 290rpx;
  134. }
  135. .star {
  136. width: 646rpx;
  137. height: 80rpx;
  138. display: flex;
  139. justify-content: space-between;
  140. position: absolute;
  141. left: 24rpx;
  142. top: 164rpx;
  143. background:rgba(246,250,255,1);
  144. border:2rpx solid rgba(197,224,255,1);
  145. opacity:1;
  146. border-radius:6rpx;
  147. }
  148. .starImg {
  149. width: 51rpx;
  150. height: 49rpx;
  151. }
  152. .fa {
  153. width: 116rpx;
  154. height: 40rpx;
  155. font-size: 28rpx;
  156. font-family: PingFang SC;
  157. font-weight: bold;
  158. color: rgba(41, 138, 253, 1);
  159. position: absolute;
  160. top: 114rpx;
  161. left: 288rpx;
  162. }
  163. .mainImg {
  164. width: 40rpx;
  165. height: 46rpx;
  166. position: absolute;
  167. top: 40rpx;
  168. left: 326rpx;
  169. }
  170. .main {
  171. width: 692rpx;
  172. height: 844rpx;
  173. margin: 0 auto;
  174. margin-top: 24rpx;
  175. position: relative;
  176. }
  177. .topTitle {
  178. width: 128rpx;
  179. height: 44rpx;
  180. font-size: 32rpx;
  181. font-family: PingFang SC;
  182. font-weight: 400;
  183. color: rgba(255, 255, 255, 1);
  184. margin: 0 auto;
  185. margin-top: 26rpx;
  186. }
  187. .topImg {
  188. width: 122rpx;
  189. height: 122rpx;
  190. margin: 0 auto;
  191. margin-top: 4rpx;
  192. }
  193. .pageBg {
  194. width: 100%;
  195. height: 100vh;
  196. background: linear-gradient(180deg, rgba(205, 227, 255, 1) 0%, rgba(133, 188, 255, 1) 100%);
  197. opacity: 1;
  198. }
  199. .content {
  200. width: 100%;
  201. position: absolute;
  202. top: 0;
  203. }
  204. .active{
  205. color:rgba(255,255,255,1);
  206. background:rgba(41,138,253,1);
  207. opacity:1;
  208. }
  209. </style>