ATFUpload.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <template>
  2. <view>
  3. <view v-if="title" class="title">{{ title }}</view>
  4. <view class="upload-pane">
  5. <view class="left">
  6. <view v-if="!imgUrl" class="upload" @click="chooseImg">+</view>
  7. <image v-else-if="imgUrl" class="iamge-background" :src="imgUrl" mode="" />
  8. </view>
  9. <tui-icon v-show="imgUrl" name="delete" color="#767676" :size="18" @click="removeBackground"></tui-icon>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import { ANOTHER_TF_UPLOAD } from '../../config'
  15. import { T_STORAGE_KEY } from '../../constant'
  16. export default {
  17. name: 'ATFUpload',
  18. props: {
  19. imgUrl: String,
  20. title: String
  21. },
  22. methods: {
  23. removeBackground() {
  24. const _this = this
  25. uni.showModal({
  26. title: '提示',
  27. content: '确定删除当前图片吗?',
  28. success(res) {
  29. if (res.confirm) {
  30. _this.$emit('delete')
  31. }
  32. }
  33. })
  34. },
  35. chooseImg() {
  36. const _this = this
  37. uni.chooseImage({
  38. success: (chooseImageRes) => {
  39. uni.uploadFile({
  40. url: ANOTHER_TF_UPLOAD,
  41. filePath: chooseImageRes.tempFiles[0].path,
  42. name: 'file',
  43. header: {
  44. Authorization: (uni.getStorageSync(T_STORAGE_KEY) || {}).token
  45. },
  46. formData: {
  47. 'folderId': -1
  48. },
  49. success: (uploadFileRes) => {
  50. _this.$emit('upload', JSON.parse(uploadFileRes.data).data.url)
  51. }
  52. })
  53. }
  54. })
  55. }
  56. }
  57. }
  58. </script>
  59. <style lang="less" scoped>
  60. .title {
  61. color: #3d3d3d;
  62. font-size: 24upx;
  63. margin: 48upx 0 20upx 0;
  64. }
  65. .upload-pane {
  66. border: 1upx solid #d8d8d8;
  67. padding: 32upx 24upx;
  68. box-sizing: border-box;
  69. border-radius: 20upx;
  70. display: flex;
  71. justify-content: space-between;
  72. align-items: flex-end;
  73. .delete-icon {
  74. width: 32upx;
  75. height: 36upx;
  76. }
  77. .left {
  78. display: flex;
  79. align-items: center;
  80. }
  81. .upload {
  82. margin: 0;
  83. width: 160upx;
  84. height: 160upx;
  85. background-color: #ececec;
  86. border-radius: 20upx;
  87. color: #767676;
  88. text-align: center;
  89. line-height: 160upx;
  90. font-size: 60upx;
  91. }
  92. .iamge-background {
  93. width: 160upx;
  94. height: 160upx;
  95. object-fit: cover;
  96. }
  97. }
  98. </style>