add.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <!-- 评价 -->
  2. <template>
  3. <s-layout title="评价">
  4. <view>
  5. <view v-for="(item, index) in state.orderInfo.items" :key="item.id">
  6. <view>
  7. <view class="commont-from-wrap">
  8. <!-- 评价商品 -->
  9. <s-goods-item
  10. :img="item.picUrl"
  11. :title="item.spuName"
  12. :skuText="item.properties.map((property) => property.valueName).join(' ')"
  13. :price="item.payPrice"
  14. :num="item.count"
  15. />
  16. </view>
  17. <view class="form-item">
  18. <!-- 评分 -->
  19. <view class="star-box ss-flex ss-col-center">
  20. <view class="star-title ss-m-r-40">商品质量</view>
  21. <uni-rate v-model="state.commentList[index].descriptionScores" />
  22. </view>
  23. <view class="star-box ss-flex ss-col-center">
  24. <view class="star-title ss-m-r-40">服务态度</view>
  25. <uni-rate v-model="state.commentList[index].benefitScores" />
  26. </view>
  27. <!-- 评价 -->
  28. <view class="area-box">
  29. <uni-easyinput :inputBorder="false" type="textarea" maxlength="120" autoHeight
  30. v-model="state.commentList[index].content"
  31. placeholder="宝贝满足你的期待吗?说说你的使用心得,分享给想买的他们吧~" />
  32. <!-- TODO 非繁人:文件上传 -->
  33. <view class="img-box">
  34. <s-uploader v-model:url="state.commentList[index].images" fileMediatype="image"
  35. limit="9" mode="grid" :imageStyles="{ width: '168rpx', height: '168rpx' }" />
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. <!-- TODO 非繁人:是否匿名 -->
  43. <su-fixed bottom placeholder>
  44. <view class="foot_box ss-flex ss-row-center ss-col-center">
  45. <button class="ss-reset-button post-btn ui-BG-Main-Gradient ui-Shadow-Main" @tap="onSubmit">
  46. 发布
  47. </button>
  48. </view>
  49. </su-fixed>
  50. </s-layout>
  51. </template>
  52. <script setup>
  53. import sheep from '@/sheep';
  54. import { onLoad } from '@dcloudio/uni-app';
  55. import { reactive } from 'vue';
  56. import OrderApi from '@/sheep/api/trade/order';
  57. const state = reactive({
  58. orderInfo: {},
  59. commentList: [],
  60. id: null
  61. });
  62. async function onSubmit() {
  63. // 顺序提交评论
  64. for (const comment of state.commentList) {
  65. await OrderApi.createOrderItemComment(comment);
  66. }
  67. // 都评论好,返回
  68. sheep.$router.back();
  69. }
  70. onLoad(async (options) => {
  71. if (!options.id) {
  72. sheep.$helper.toast(`缺少订单信息,请检查`);
  73. return
  74. }
  75. state.id = options.id;
  76. const { code, data } = await OrderApi.getOrder(state.id);
  77. if (code !== 0) {
  78. sheep.$helper.toast('无待评价订单');
  79. return
  80. }
  81. // 处理评论
  82. data.items.forEach((item) => {
  83. state.commentList.push({
  84. anonymous: false,
  85. orderItemId: item.id,
  86. descriptionScores: 5,
  87. benefitScores: 5,
  88. content: '',
  89. picUrls: []
  90. });
  91. });
  92. state.orderInfo = data;
  93. });
  94. </script>
  95. <style lang="scss" scoped>
  96. // 评价商品
  97. .goods-card {
  98. margin: 10rpx 0;
  99. padding: 20rpx;
  100. background: #fff;
  101. }
  102. // 评论,选择图片
  103. .form-item {
  104. background: #fff;
  105. .star-box {
  106. height: 100rpx;
  107. padding: 0 25rpx;
  108. }
  109. .star-title {
  110. font-weight: 600;
  111. }
  112. }
  113. .area-box {
  114. width: 690rpx;
  115. min-height: 306rpx;
  116. background: rgba(249, 250, 251, 1);
  117. border-radius: 20rpx;
  118. padding: 28rpx;
  119. margin: auto;
  120. .img-box {
  121. margin-top: 20rpx;
  122. }
  123. }
  124. .post-btn {
  125. width: 690rpx;
  126. line-height: 80rpx;
  127. border-radius: 40rpx;
  128. color: rgba(#fff, 0.9);
  129. margin-bottom: 20rpx;
  130. }
  131. </style>