evaluate.vue 8.5 KB

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