evaluate.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <template>
  2. <view class="app-container">
  3. <view class="form-container">
  4. <view class="top">
  5. <view class="left">您对订单满意吗?</view>
  6. <view class="right" @tap="isAnonymous = !isAnonymous">
  7. <image src="@/static/icon/select_0.png" v-if="!isAnonymous"></image>
  8. <image src="@/static/icon/select_1.png" v-if="isAnonymous"></image>
  9. <text>匿名评价</text>
  10. </view>
  11. </view>
  12. <view class="rate">
  13. <view class="item">
  14. <view class="left">商品质量:<uni-rate :size="18" :margin="4" v-model="rateVal1" /></view>
  15. <view class="right">{{rateVal1 | rateFilter}}</view>
  16. </view>
  17. <view class="item">
  18. <view class="left">服务质量:<uni-rate :size="18" :margin="4" v-model="rateVal2" /></view>
  19. <view class="right">{{rateVal2 | rateFilter}}</view>
  20. </view>
  21. <view class="item">
  22. <view class="left">配送质量:<uni-rate :size="18" :margin="4" v-model="rateVal3" /></view>
  23. <view class="right">{{rateVal3 | rateFilter}}</view>
  24. </view>
  25. </view>
  26. <view class="title" v-if="tagList.length > 0">选择评价标签:</view>
  27. <view class="tags" v-if="tagList.length > 0">
  28. <block v-for="(item, index) in tagList" :key="index">
  29. <view class="item" :class="item.checked ? 'current':''" @tap="changeTag(item, item.checked, index)">{{item.tag}}</view>
  30. </block>
  31. </view>
  32. <view class="title">评价内容:</view>
  33. <view class="content">
  34. <textarea maxlength="120" v-model="content"></textarea>
  35. <view class="length">{{content.length > 120 ? 120 : content.length}}/120</view>
  36. </view>
  37. <view class="title">上传图片:<span>(最多9张)</span></view>
  38. <view class="images">
  39. <block v-for="(item, index) in images" :key='index'>
  40. <view class="img">
  41. <image :src="item.url" mode="aspectFill"></image>
  42. <text @tap="delImage(index)">x</text>
  43. </view>
  44. </block>
  45. <view class="add" @tap="addImage" v-if="images.length < 9">
  46. <image src="@/static/icon/camera.png"></image>
  47. <text>点击上传</text>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="bottom-container">
  52. <view class="button" @tap="submitForm">提交</view>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. import { base_url } from '@/utils/config.js';
  58. export default {
  59. filters: {
  60. rateFilter(val) {
  61. if(!val) {
  62. return '';
  63. }else if(val === 5) {
  64. return '满意';
  65. }else if(val >= 3) {
  66. return '中评';
  67. }else if(val >= 1) {
  68. return '不满意';
  69. }
  70. }
  71. },
  72. data() {
  73. return {
  74. orderId: null, // 订单id
  75. isAnonymous: false,
  76. tagList: [],
  77. rateVal1: 1,
  78. rateVal2: 1,
  79. rateVal3: 1,
  80. content: '',
  81. images: [],
  82. }
  83. },
  84. onLoad({orderId}) {
  85. this.orderId = orderId;
  86. this.getTagList();
  87. this.rateVal1 = 0;
  88. this.rateVal2 = 0;
  89. this.rateVal3 = 0;
  90. },
  91. methods: {
  92. getTagList() {
  93. this.$axios({
  94. url: '/order/comment/tag/list',
  95. method: 'get',
  96. }).then(res => {
  97. if(res.data && res.data.length > 0) {
  98. res.data.forEach(item => {
  99. item.checked = false;
  100. })
  101. this.tagList = res.data;
  102. }else {
  103. this.tagList = [];
  104. }
  105. })
  106. },
  107. changeTag(item, checked, index) {
  108. checked = !checked;
  109. this.$set(this.tagList, index, {...item, checked });
  110. },
  111. // 删除图片
  112. delImage(index) {
  113. this.images.splice(index, 1);
  114. },
  115. // 添加图片
  116. async addImage() {
  117. const files = await new Promise((resolve,reject)=>{
  118. uni.chooseImage({
  119. count: 9 - this.images.length,
  120. success:res=>{
  121. resolve(res.tempFilePaths)
  122. },fail:err=>{
  123. reject()
  124. }
  125. })
  126. });
  127. uni.showLoading({
  128. title:'上传中'
  129. })
  130. let arr = [];
  131. files.forEach(item=>{
  132. arr.push(this.uploadFile(item))
  133. });
  134. Promise.all(arr).then(res=>{
  135. this.images = this.images.concat(res.map(item=>{
  136. return JSON.parse(item).data;
  137. }))
  138. console.log(this.images);
  139. }).catch(err=>{
  140. uni.showModal({
  141. title:'上传失败'
  142. })
  143. }).finally(()=>{
  144. uni.hideLoading();
  145. })
  146. },
  147. // 上传图片
  148. async uploadFile(file) {
  149. const result = new Promise((resolve, reject) => {
  150. uni.uploadFile({
  151. url: base_url + '/common/upload',
  152. header: {
  153. "Content-Type": 'multipart/form-data',
  154. "x-token": uni.getStorageSync('token')
  155. },
  156. name: 'file',
  157. filePath: file,
  158. success(res) {
  159. resolve(res.data)
  160. }
  161. })
  162. })
  163. return result;
  164. },
  165. // 提交
  166. submitForm() {
  167. if(!this.rateVal1 || !this.rateVal2 || !this.rateVal3) {
  168. return this.$toast('请对该订单进行评分');
  169. }
  170. if(!this.content) {
  171. return this.$toast('请填写评价内容');
  172. }
  173. let tags = [];
  174. this.tagList.forEach(item => {
  175. if(item.checked) {
  176. tags.push(item.tag);
  177. }
  178. })
  179. if(tags.length <= 0) {
  180. return this.$toast('请选择评价标签');
  181. }
  182. let imgIds = [];
  183. this.images.forEach(item => {
  184. imgIds.push(item.id);
  185. })
  186. this.$axios({
  187. url: '/order/comment/add',
  188. type: 'application/json',
  189. params: {
  190. orderId: this.orderId,
  191. commentGoods: this.rateVal1,
  192. commentService: this.rateVal2,
  193. commentExpress: this.rateVal3,
  194. tags: tags,
  195. content: this.content,
  196. fileIds: imgIds,
  197. isAnonymous: this.isAnonymous,
  198. }
  199. }).then(res => {
  200. this.$successToast('提交成功');
  201. // uni.$emit('refreshOrderList', res.data);
  202. uni.$emit('refreshOrderDetail', res.data);
  203. setTimeout(() => {
  204. uni.navigateBack({
  205. delta: 1
  206. })
  207. }, 1000)
  208. })
  209. },
  210. }
  211. }
  212. </script>
  213. <style lang="scss">
  214. .app-container {
  215. background: #F4F2F2;
  216. padding: 20rpx 20rpx 150rpx;
  217. box-sizing: border-box;
  218. }
  219. .form-container {
  220. padding: 30rpx;
  221. background: #FFFFFF;
  222. border-radius: 20rpx;
  223. .top {
  224. display: flex;
  225. justify-content: space-between;
  226. align-items: center;
  227. margin-bottom: 20rpx;
  228. .left {
  229. font-size: 32rpx;
  230. font-weight: 500;
  231. }
  232. .right {
  233. display: flex;
  234. align-items: center;
  235. color: #666666;
  236. image {
  237. width: 28rpx;
  238. height: 28rpx;
  239. margin-right: 16rpx;
  240. }
  241. }
  242. }
  243. .rate {
  244. .item {
  245. display: flex;
  246. justify-content: space-between;
  247. align-items: center;
  248. padding: 10rpx 0;
  249. .left {
  250. display: flex;
  251. }
  252. }
  253. }
  254. .title {
  255. margin-top: 30rpx;
  256. span {
  257. color: #999999;
  258. }
  259. }
  260. .tags {
  261. display: flex;
  262. flex-wrap: wrap;
  263. .item {
  264. height: 48rpx;
  265. padding: 0 30rpx;
  266. border-radius: 48rpx;
  267. border: 1px solid #eaeaea;
  268. font-size: 24rpx;
  269. color: #333333;
  270. line-height: 48rpx;
  271. margin-right: 20rpx;
  272. margin-top: 20rpx;
  273. &.current {
  274. background: #FE781F;
  275. color: #FFFFFF;
  276. border: 1px solid #FE781F;
  277. }
  278. }
  279. }
  280. .content {
  281. border: 1px solid #eaeaea;
  282. border-radius: 10rpx;
  283. position: relative;
  284. margin-top: 20rpx;
  285. textarea {
  286. width: 100%;
  287. height: 200rpx;
  288. padding: 20rpx;
  289. box-sizing: border-box;
  290. }
  291. .length {
  292. position: absolute;
  293. right: 20rpx;
  294. bottom: 20rpx;
  295. font-size: 24rpx;
  296. color: #999999;
  297. line-height: 24rpx;
  298. }
  299. }
  300. .images {
  301. display: flex;
  302. flex-wrap: wrap;
  303. margin-top: 20rpx;
  304. .add {
  305. display: flex;
  306. flex-direction: column;
  307. align-items: center;
  308. justify-content: center;
  309. width: 146rpx;
  310. height: 146rpx;
  311. border: 2rpx dashed #dadada;
  312. border-radius: 10rpx;
  313. image {
  314. width: 48rpx;
  315. height: 34rpx;
  316. display: block;
  317. margin-bottom: 8rpx;
  318. }
  319. text {
  320. font-size: 22rpx;
  321. color: #999999;
  322. line-height: 24rpx;
  323. }
  324. }
  325. .img {
  326. position: relative;
  327. margin-right: 20rpx;
  328. margin-bottom: 20rpx;
  329. image {
  330. width: 150rpx;
  331. height: 150rpx;
  332. border-radius: 10rpx;
  333. overflow: hidden;
  334. display: block;
  335. }
  336. text {
  337. position: absolute;
  338. right: -10rpx;
  339. top: -10rpx;
  340. width: 40rpx;
  341. height: 40rpx;
  342. border-radius: 50%;
  343. background: #FF3F42;
  344. font-size: 28rpx;
  345. color: #FFFFFF;
  346. text-align: center;
  347. line-height: 36rpx;
  348. display: block;
  349. }
  350. }
  351. }
  352. }
  353. .bottom-container {
  354. position: fixed;
  355. bottom: 0;
  356. left: 0;
  357. width: 100%;
  358. padding: 0 20rpx;
  359. box-sizing: border-box;
  360. height: 100rpx;
  361. display: flex;
  362. justify-content: center;
  363. align-items: center;
  364. background: #FFFFFF;
  365. border-top: 1px solid #F4F2F2;
  366. .button {
  367. width: 100%;
  368. height: 70rpx;
  369. line-height: 70rpx;
  370. text-align: center;
  371. border-radius: 70rpx;
  372. background: linear-gradient(-90deg,#ff3f42 0%, #fe781f 100%);
  373. font-size: 32rpx;
  374. color: #FFFFFF;
  375. }
  376. }
  377. </style>