evaluate.vue 8.6 KB

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