diff --git a/src/views/basicdata/carrier/basicdataCarrier2.vue b/src/views/basicdata/carrier/basicdataCarrier2.vue index 2733e8b7..d394f362 100644 --- a/src/views/basicdata/carrier/basicdataCarrier2.vue +++ b/src/views/basicdata/carrier/basicdataCarrier2.vue @@ -95,6 +95,7 @@ :fullscreen="details.fullscreenObj.dialogVisible" :show-close="false" draggable + overflow > + + +
+ + + + +
+
+ +
+
+
+
+ + @@ -242,6 +284,8 @@ import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue'; import functions from '@/utils/functions.js'; import dayjs from 'dayjs'; import { mapGetters } from 'vuex'; +import { getToken } from '@/utils/auth'; +import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js'; /** 获取字典 */ import { getDictionaryBiz } from '@/api/system/dict'; import { @@ -334,6 +378,7 @@ const details = reactive({ dialogVisible: false, }, formOptions: deepClone(formOptions), + imgList: [], }); const { search, query, shortcuts, stockupDate, data, loadingObj, selectionList, drawerShow, page } = @@ -547,6 +592,56 @@ const handleDelete = (isBatch, row: any = {}) => { }) .catch(() => {}); }; + +// 图片上传接口 +const doubledCount = computed(() => { + return '/api/blade-resource/oss/endpoint/put-file'; +}); + +// 上传图片规则 +const beforeAvatarUpload = async rawFile => { + console.log(rawFile); + if (rawFile.type !== 'image/png' && rawFile.type !== 'image/jpeg') { + ElMessage.error('图片格式只能为 png/jpg!'); + return false; + } else if (rawFile.size / 1024 / 1024 > 10) { + ElMessage.error('图片大小不能大于10MB!'); + return false; + } + const res = await compressImageBlob(rawFile); + return res; +}; + +// 图片上传必须携带TOKEN +const headers = computed(() => { + return { 'Blade-Auth': 'Bearer ' + getToken() }; +}); + +// 图片上传成功 +const handleAvatarSuccess = response => { + for (let i = 0; i < details.imgList.length; i++) { + const value = details.imgList[i]; + console.log('value :>> ', value); + value.imgUrl = + value.response && value.response.code === 200 ? value.response.data.link : value.imgUrl || ''; + } + ElMessage.success('上传成功'); +}; + +/** 确认清空 */ +const handleEmpty = item => { + if (item.imgList.length === 0) return ElMessage.warning('没有图片可以清空'); + + ElMessageBox.confirm('确定要清空吗?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + }) + .then(() => { + item.imgList = []; + }) + .catch(() => {}); +};