evaluate.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <template>
  2. <view>
  3. <view class="content" v-for="item in orderDetail.goods">
  4. <view class="goods-title">
  5. <image class="goods-img" :src="item.goods_image" mode="scaleToFill" />
  6. <view class="title"> 立白大师香氛洗衣液持久留香香水机洗护理洗… </view>
  7. </view>
  8. <view class="rate">
  9. <view class="_label"> 商品评价 </view>
  10. <u-rate :count="count" v-model="value" size="22"></u-rate>
  11. </view>
  12. <u-upload
  13. :fileList="fileList1"
  14. @afterRead="afterRead"
  15. @delete="deletePic"
  16. name="1"
  17. multiple
  18. :maxCount="10"
  19. >
  20. <view class="upload-photo">
  21. <u-icon name="camera" size="26"></u-icon>
  22. <text>添加图片/视频</text>
  23. </view>
  24. </u-upload>
  25. <view class="_text">
  26. <u--textarea
  27. border="none"
  28. v-model="value1"
  29. height="150"
  30. placeholder="展开说说对商品的想法"
  31. ></u--textarea>
  32. </view>
  33. </view>
  34. <button class="btn-1" @click="submit">提交评价</button>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. count: 5,
  42. value: 5,
  43. value1: "",
  44. fileList1: [],
  45. status: "",
  46. orderDetail: {},
  47. };
  48. },
  49. onLoad(options) {
  50. this.status = options.orderId;
  51. this.getDetail();
  52. },
  53. methods: {
  54. //提交评价
  55. submit() {
  56. let imgList = [];
  57. this.fileList1.map((item) => {
  58. imgList.push(item.thumb);
  59. });
  60. uni.$u.http
  61. .post(`/api/order/comment`, {
  62. order_goods_id: this.orderDetail.goods[0].id,
  63. content: this.value1,
  64. score: this.value,
  65. image: imgList.join(","),
  66. video: "",
  67. })
  68. .then((res) => {
  69. console.log(res);
  70. });
  71. },
  72. // 删除图片
  73. deletePic(event) {
  74. this[`fileList${event.name}`].splice(event.index, 1);
  75. },
  76. // 新增图片
  77. async afterRead(event) {
  78. console.log(event);
  79. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  80. let lists = [].concat(event.file);
  81. let fileListLen = this[`fileList${event.name}`].length;
  82. lists.map((item) => {
  83. this[`fileList${event.name}`].push({
  84. ...item,
  85. status: "uploading",
  86. message: "上传中",
  87. });
  88. });
  89. for (let i = 0; i < lists.length; i++) {
  90. const result = await this.uploadFilePromise(lists[i].url);
  91. let item = this[`fileList${event.name}`][fileListLen];
  92. this[`fileList${event.name}`].splice(
  93. fileListLen,
  94. 1,
  95. Object.assign(item, {
  96. status: "success",
  97. message: "",
  98. url: result,
  99. })
  100. );
  101. fileListLen++;
  102. }
  103. },
  104. uploadFilePromise(url) {
  105. return new Promise((resolve, reject) => {
  106. let a = uni.uploadFile({
  107. url: `${uni.$u.http.config.baseURL}/api/upload/images`, // 仅为示例,非真实的接口地址
  108. filePath: url,
  109. name: "file",
  110. formData: {
  111. user: "test",
  112. },
  113. success: (res) => {
  114. setTimeout(() => {
  115. resolve(res.data.data);
  116. }, 1000);
  117. },
  118. });
  119. });
  120. },
  121. getDetail() {
  122. uni.$u.http.get(`/api/order/read?id=${this.status}`).then((res) => {
  123. this.orderDetail = res;
  124. });
  125. },
  126. },
  127. mounted() {
  128. uni.setNavigationBarTitle({
  129. title: "评价",
  130. });
  131. },
  132. };
  133. </script>
  134. <style lang="scss" scoped>
  135. .content {
  136. background-color: #fff;
  137. padding: 40rpx 24rpx;
  138. .goods-title {
  139. display: flex;
  140. justify-content: flex-start;
  141. align-items: center;
  142. .goods-img {
  143. width: 52rpx;
  144. height: 52rpx;
  145. border-radius: 6rpx;
  146. }
  147. .title {
  148. font-size: 24rpx;
  149. color: rgba(51, 51, 51, 0.5);
  150. margin-left: 20rpx;
  151. }
  152. }
  153. .rate {
  154. display: flex;
  155. align-items: center;
  156. margin-bottom: 20rpx;
  157. ._label {
  158. font-size: 32rpx;
  159. font-weight: 600;
  160. margin-right: 22rpx;
  161. }
  162. }
  163. ._text {
  164. margin-top: 32rpx;
  165. padding-top: 26rpx;
  166. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  167. }
  168. .upload-photo {
  169. width: 180rpx;
  170. height: 180rpx;
  171. border: 2rpx dashed #979797;
  172. border-radius: 8rpx;
  173. display: flex;
  174. align-items: center;
  175. flex-direction: column;
  176. justify-content: center;
  177. font-size: 24rpx;
  178. color: rgba(34, 34, 34, 0.8);
  179. }
  180. ::v-deep .u-textarea {
  181. background-color: #fff;
  182. }
  183. }
  184. .btn-1 {
  185. background-color: #f83224;
  186. color: #fff;
  187. border-radius: 40rpx;
  188. height: 80rpx;
  189. line-height: 80rpx;
  190. width: 90%;
  191. margin: 0 auto;
  192. margin-top: 70rpx;
  193. font-size: 32rpx;
  194. }
  195. </style>