ATFMoreUpload.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view>
  3. <view v-if="title" class="title">{{ title }}</view>
  4. <view class="upload-pane">
  5. <view class="left">
  6. <view class="upload" @click="chooseImg">+</view>
  7. <view v-for="item in imgs" :key="item" class="img-wrapper">
  8. <img class="iamge-background img" :src="item" mode="" />
  9. <JIcon
  10. class="delete-icon"
  11. width="40"
  12. height="40"
  13. type="delete"
  14. @click="removeBackground(item)"
  15. ></JIcon>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import { ANOTHER_TF_UPLOAD } from '../../config'
  23. import { T_STORAGE_KEY } from '../../constant'
  24. export default {
  25. name: 'ATFMoreUpload',
  26. props: {
  27. title: String,
  28. imgs: {
  29. type: Array,
  30. required: true
  31. }
  32. },
  33. methods: {
  34. removeBackground(item) {
  35. console.log(item)
  36. const _this = this
  37. uni.showModal({
  38. title: '提示',
  39. content: '确定删除当前图片吗?',
  40. success(res) {
  41. if (res.confirm) {
  42. _this.$emit('delete', item)
  43. }
  44. }
  45. })
  46. },
  47. chooseImg() {
  48. const _this = this
  49. uni.chooseImage({
  50. extension: ['png', 'jpg', 'jpeg', 'webp', 'gif', 'image'],
  51. success: (chooseImageRes) => {
  52. uni.uploadFile({
  53. url: ANOTHER_TF_UPLOAD,
  54. filePath: chooseImageRes.tempFiles[0].path,
  55. name: 'file',
  56. header: {
  57. Authorization: (uni.getStorageSync(T_STORAGE_KEY) || {}).token
  58. },
  59. formData: {
  60. 'folderId': -1
  61. },
  62. success: (uploadFileRes) => {
  63. _this.$emit('upload', JSON.parse(uploadFileRes.data).data.url)
  64. }
  65. })
  66. }
  67. })
  68. }
  69. }
  70. }
  71. </script>
  72. <style lang="less" scoped>
  73. .title {
  74. color: #3d3d3d;
  75. font-size: 24upx;
  76. margin: 48upx 0 20upx 0;
  77. }
  78. .upload-pane {
  79. border: 1upx solid #d8d8d8;
  80. padding: 32upx 24upx;
  81. box-sizing: border-box;
  82. border-radius: 20upx;
  83. display: flex;
  84. justify-content: space-between;
  85. align-items: flex-end;
  86. .delete-icon {
  87. width: 32upx;
  88. height: 36upx;
  89. }
  90. .left {
  91. display: flex;
  92. justify-content: flex-start;
  93. align-items: center;
  94. flex-wrap: wrap;
  95. }
  96. .upload {
  97. margin: 0;
  98. width: 160upx;
  99. // height: 160upx;
  100. background-color: #ececec;
  101. border-radius: 20upx;
  102. color: #767676;
  103. text-align: center;
  104. line-height: 160upx;
  105. font-size: 60upx;
  106. margin-right: 40upx;
  107. margin-bottom: 20upx;
  108. }
  109. .iamge-background {
  110. width: 160upx;
  111. height: 160upx;
  112. object-fit: cover;
  113. }
  114. .img-wrapper {
  115. margin-right: 40upx;
  116. position: relative;
  117. .delete-icon {
  118. position: absolute;
  119. top: -10upx;
  120. right: -10px;
  121. border-radius: 50%;
  122. background-color: #ffffff;
  123. }
  124. .img {
  125. border-radius: 20upx;
  126. margin-bottom: 20upx;
  127. }
  128. }
  129. }
  130. </style>