evaluate.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <template>
  2. <view>
  3. <view class="content">
  4. <view class="rate">
  5. <view class="_label">
  6. 商品评价
  7. </view>
  8. <u-rate :count="count" v-model="value" size="22"></u-rate>
  9. </view>
  10. <view class="_text">
  11. <u--textarea border='none' v-model="value1" height="150" placeholder="展开说说对商品的想法"></u--textarea>
  12. </view>
  13. <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" multiple :maxCount="10">
  14. <view class="upload-photo">
  15. <u-icon name="camera" size="26"></u-icon>
  16. <text>添加图片/视频</text>
  17. </view>
  18. </u-upload>
  19. </view>
  20. <button class="btn-1">提交评价</button>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. count: 5,
  28. value: 1,
  29. value1: "",
  30. fileList1: [],
  31. };
  32. },
  33. methods: {
  34. // 删除图片
  35. deletePic(event) {
  36. this[`fileList${event.name}`].splice(event.index, 1)
  37. },
  38. // 新增图片
  39. async afterRead(event) {
  40. console.log(event)
  41. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  42. let lists = [].concat(event.file)
  43. let fileListLen = this[`fileList${event.name}`].length
  44. lists.map((item) => {
  45. this[`fileList${event.name}`].push({
  46. ...item,
  47. status: 'uploading',
  48. message: '上传中'
  49. })
  50. })
  51. for (let i = 0; i < lists.length; i++) {
  52. const result = await this.uploadFilePromise(lists[i].url)
  53. let item = this[`fileList${event.name}`][fileListLen]
  54. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  55. status: 'success',
  56. message: '',
  57. url: result
  58. }))
  59. fileListLen++
  60. }
  61. },
  62. uploadFilePromise(url) {
  63. return new Promise((resolve, reject) => {
  64. let a = uni.uploadFile({
  65. url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
  66. filePath: url,
  67. name: 'file',
  68. formData: {
  69. user: 'test'
  70. },
  71. success: (res) => {
  72. setTimeout(() => {
  73. resolve(res.data.data)
  74. }, 1000)
  75. }
  76. });
  77. })
  78. },
  79. },
  80. mounted() {
  81. uni.setNavigationBarTitle({
  82. title: '评价'
  83. })
  84. }
  85. }
  86. </script>
  87. <style lang="scss" scoped>
  88. .content {
  89. background-color: #fff;
  90. padding: 40rpx 24rpx;
  91. .rate {
  92. display: flex;
  93. align-items: center;
  94. ._label {
  95. font-size: 32rpx;
  96. font-weight: 600;
  97. margin-right: 22rpx;
  98. }
  99. }
  100. ._text {
  101. margin-top: 32rpx;
  102. padding-top: 26rpx;
  103. border-top: 2rpx solid rgba(151, 151, 151, .1);
  104. }
  105. .upload-photo {
  106. width: 180rpx;
  107. height: 180rpx;
  108. border: 2rpx dashed #979797;
  109. border-radius: 8rpx;
  110. display: flex;
  111. align-items: center;
  112. flex-direction: column;
  113. justify-content: center;
  114. font-size: 24rpx;
  115. color: rgba(34, 34, 34, .8);
  116. }
  117. ::v-deep .u-textarea {
  118. background-color: #fff;
  119. }
  120. }
  121. .btn-1{
  122. background-color: #f83224;
  123. color: #fff;
  124. border-radius: 40rpx;
  125. height: 80rpx;
  126. line-height: 80rpx;
  127. width: 90%;
  128. margin: 0 auto;
  129. margin-top: 70rpx;
  130. font-size: 32rpx;
  131. }
  132. </style>