evaluate.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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. <!-- accept="all" 可以上传视频是配置该字段 -->
  13. <!-- <u-upload :previewFullImage='true' @clickPreview="openvideo" accept="all" :fileList="item.list" @afterRead="afterRead" @delete="deletePic" :name="idx" multiple
  14. :maxCount="10"> -->
  15. <u-upload accept=" image/*,video/*" :fileList="fileList0" @afterRead="afterRead" @delete="deletePic" name="0" multiple :maxCount="10"
  16. >
  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. goods:[]
  40. },
  41. fileList0: [],
  42. goods_name: ''
  43. };
  44. },
  45. onLoad(options) {
  46. this.status = options.orderId;
  47. console.log(JSON.parse(options.goods));
  48. this.orderDetail.goods.push(JSON.parse(options.goods))
  49. console.log(this.orderDetail.goods);
  50. // this.getDetail();
  51. },
  52. methods: {
  53. openvideo(url, lists, name) {
  54. console.log(url, lists, name);
  55. },
  56. //提交评价
  57. submit() {
  58. let imgList = [];
  59. let videoList = []
  60. this.fileList0.map((item) => {
  61. console.log(item);
  62. if (item.url.slice(-4) == '.png' || item.url.slice(-4) == '.jpg'){
  63. imgList.push(item.url);
  64. }
  65. if (item.url.slice(-4) == '.mp4'){
  66. videoList.push(item.url);
  67. }
  68. });
  69. uni.$u.http
  70. .post(`/api/order/comment`, {
  71. order_goods_id: this.orderDetail.goods[0].id,
  72. content: this.value1,
  73. score: this.value,
  74. image: imgList.join(","),
  75. video: videoList.join(","),
  76. })
  77. .then((res) => {
  78. uni.showToast({
  79. title: "评价成功",
  80. icon: "none",
  81. });
  82. let timer = setTimeout(() => {
  83. uni.navigateBack({
  84. delta: 1,
  85. });
  86. clearTimeout(timer);
  87. }, 1000);
  88. });
  89. },
  90. // 删除图片
  91. deletePic(event) {
  92. this[`fileList${event.name}`].splice(event.index, 1);
  93. },
  94. // deletePic(event) {
  95. // this.orderDetail.goods[event.name].list.splice(event.index, 1);
  96. // //触发响应式
  97. // let name = this.orderDetail.goods[event.name].goods_name + " "
  98. // this.orderDetail.goods[event.name].goods_name = name.substring(-2)
  99. // },
  100. // async afterRead(event) {
  101. // console.log(event);
  102. // var that = this
  103. // let lists = [].concat(event.file);
  104. // let imglist = [].concat(that.orderDetail.goods[event.name].list)
  105. // let fileListLen = that.orderDetail.goods[event.name].list.length;
  106. // // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  107. // // lists.map((item) => {
  108. // // this.orderDetail.goods[event.name].list.push({
  109. // // ...item,
  110. // // status: "uploading",
  111. // // message: "上传中",
  112. // // });
  113. // // });
  114. // that.orderDetail.goods[event.name].list.push({
  115. // ...event.file[0],
  116. // status: "uploading",
  117. // message: "上传中",
  118. // });
  119. // console.log(that.orderDetail.goods[event.name].list);
  120. // // console.log()
  121. // const result = await that.uploadFilePromise(event.file[0].url);
  122. // console.log(result);
  123. // let item = that.orderDetail.goods[event.name].list[fileListLen];
  124. // that.orderDetail.goods[event.name].list.splice(
  125. // fileListLen,
  126. // 1,
  127. // Object.assign(item, {
  128. // status: "success",
  129. // message: "",
  130. // url: result,
  131. // })
  132. // );
  133. // let imgs = [].concat(that.orderDetail.goods[event.name].list)
  134. // // that.$set(that.orderDetail.goods[event.name],"list",imgs)
  135. // this.$set(that.orderDetail.goods[event.name], "length", imgs.length)
  136. // that.orderDetail.goods[event.name].length = imgs.length
  137. // that.orderDetail.goods[event.name].list = imgs
  138. // //触发响应式
  139. // let name = that.orderDetail.goods[event.name].goods_name + " "
  140. // that.orderDetail.goods[event.name].goods_name = name.substring(-2)
  141. // },
  142. // 新增图片
  143. async afterRead(event) {
  144. console.log(event);
  145. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  146. let lists = [].concat(event.file);
  147. let fileListLen = this[`fileList${event.name}`].length;
  148. lists.map((item) => {
  149. this[`fileList${event.name}`].push({
  150. ...item,
  151. });
  152. });
  153. console.log('list', this[`fileList${event.name}`]);
  154. for (let i = 0; i < lists.length; i++) {
  155. const result = await this.uploadFilePromise(lists[i].url);
  156. console.log(result);
  157. let item = this[`fileList${event.name}`][fileListLen];
  158. this[`fileList${event.name}`].splice(
  159. fileListLen,
  160. 1,
  161. Object.assign(item, {
  162. status: "success",
  163. message: "",
  164. url: result,
  165. })
  166. );
  167. fileListLen++;
  168. console.log('list', this[`fileList${event.name}`]);
  169. }
  170. },
  171. uploadFilePromise(url) {
  172. console.log(url);
  173. return new Promise((resolve, reject) => {
  174. let a = uni.uploadFile({
  175. url: `${uni.$u.http.config.baseURL}/api/upload/images`, // 仅为示例,非真实的接口地址
  176. filePath: url,
  177. name: "file",
  178. formData: {
  179. user: "test",
  180. },
  181. success: (res) => {
  182. setTimeout(() => {
  183. resolve(JSON.parse(res.data).data.filePath);
  184. // resolve(res.data.data);
  185. }, 1000);
  186. },
  187. });
  188. });
  189. },
  190. getDetail() {
  191. uni.$u.http.get(`/api/order/read?id=${this.status}`).then((res) => {
  192. this.orderDetail = res;
  193. this.orderDetail.goods.forEach((item) => {
  194. item.list = []
  195. item.length = 0
  196. })
  197. console.log(this.orderDetail);
  198. });
  199. },
  200. },
  201. mounted() {
  202. uni.setNavigationBarTitle({
  203. title: "评价",
  204. });
  205. },
  206. };
  207. </script>
  208. <style lang="scss" scoped>
  209. ::v-deep .u-upload__wrap__preview__image {
  210. width: 180rpx;
  211. height: 180rpx;
  212. }
  213. .content {
  214. background-color: #fff;
  215. padding: 40rpx 24rpx;
  216. .goods-title {
  217. display: flex;
  218. justify-content: flex-start;
  219. align-items: center;
  220. .goods-img {
  221. width: 52rpx;
  222. height: 52rpx;
  223. border-radius: 6rpx;
  224. }
  225. .title {
  226. font-size: 24rpx;
  227. color: rgba(51, 51, 51, 0.5);
  228. margin-left: 20rpx;
  229. }
  230. }
  231. .rate {
  232. display: flex;
  233. align-items: center;
  234. margin-bottom: 20rpx;
  235. ._label {
  236. font-size: 32rpx;
  237. font-weight: 600;
  238. margin-right: 22rpx;
  239. }
  240. }
  241. ._text {
  242. margin-top: 32rpx;
  243. padding-top: 26rpx;
  244. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  245. }
  246. .upload-photo {
  247. width: 180rpx;
  248. height: 180rpx;
  249. border: 2rpx dashed #979797;
  250. border-radius: 8rpx;
  251. display: flex;
  252. align-items: center;
  253. flex-direction: column;
  254. justify-content: center;
  255. font-size: 24rpx;
  256. color: rgba(34, 34, 34, 0.8);
  257. }
  258. ::v-deep .u-textarea {
  259. background-color: #fff;
  260. }
  261. }
  262. .btn-1 {
  263. background-color: #f83224;
  264. color: #fff;
  265. border-radius: 40rpx;
  266. height: 80rpx;
  267. line-height: 80rpx;
  268. width: 90%;
  269. margin: 0 auto;
  270. margin-top: 70rpx;
  271. font-size: 32rpx;
  272. }
  273. </style>