luobisheng
2022-11-29 4641a877cd6a94e4d35dca7f7f14bc1443e2d2ad
src/components/Upload/index.vue
@@ -23,7 +23,6 @@
    },
    methods: {
        beforeUpload(rawFile) {
            console.log(rawFile);
            if (rawFile.type !== 'image/png' && rawFile.type !== 'image/svg+xml' && rawFile.type !== 'image/jpg' && rawFile.type !== 'image/jpeg') {
                this.$message.error('图片必须是 jpg/svg/jpeg/png 格式!')
                return false
@@ -34,7 +33,6 @@
            return true
        },
        handleSuccess(res, file, filelist) {
            console.log(res);
            this.$emit('getPicUrl', { obj: res.data, value: this.mykey });
        },
        getToken() {