123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <template>
- <view>
- <view v-if="title" class="title">{{ title }}</view>
- <view class="upload-pane">
- <view class="left">
- <view v-if="!imgUrl" class="upload" @click="chooseImg">+</view>
- <image v-else-if="imgUrl" class="iamge-background" :src="imgUrl" mode="" />
- </view>
- <tui-icon v-show="imgUrl" name="delete" color="#767676" :size="18" @click="removeBackground"></tui-icon>
- </view>
- </view>
- </template>
- <script>
- import { ANOTHER_TF_UPLOAD } from '../../config'
- import { T_STORAGE_KEY } from '../../constant'
- export default {
- name: 'ATFUpload',
- props: {
- imgUrl: String,
- title: String
- },
- methods: {
- removeBackground() {
- const _this = this
- uni.showModal({
- title: '提示',
- content: '确定删除当前图片吗?',
- success(res) {
- if (res.confirm) {
- _this.$emit('delete')
- }
- }
- })
- },
- chooseImg() {
- const _this = this
- uni.chooseImage({
- success: (chooseImageRes) => {
- uni.uploadFile({
- url: ANOTHER_TF_UPLOAD,
- filePath: chooseImageRes.tempFiles[0].path,
- name: 'file',
- header: {
- Authorization: (uni.getStorageSync(T_STORAGE_KEY) || {}).token
- },
- formData: {
- 'folderId': -1
- },
- success: (uploadFileRes) => {
- _this.$emit('upload', JSON.parse(uploadFileRes.data).data.url)
- }
- })
- }
- })
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .title {
- color: #3d3d3d;
- font-size: 24upx;
- margin: 48upx 0 20upx 0;
- }
- .upload-pane {
- border: 1upx solid #d8d8d8;
- padding: 32upx 24upx;
- box-sizing: border-box;
- border-radius: 20upx;
- display: flex;
- justify-content: space-between;
- align-items: flex-end;
- .delete-icon {
- width: 32upx;
- height: 36upx;
- }
- .left {
- display: flex;
- align-items: center;
- }
- .upload {
- margin: 0;
- width: 160upx;
- height: 160upx;
- background-color: #ececec;
- border-radius: 20upx;
- color: #767676;
- text-align: center;
- line-height: 160upx;
- font-size: 60upx;
- }
- .iamge-background {
- width: 160upx;
- height: 160upx;
- object-fit: cover;
- }
- }
- </style>
|