evaluate.vue 6.1 KB

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