|
@@ -231,8 +231,8 @@ export default defineComponent({
|
|
|
input.onchange = async function () {
|
|
|
const file = this.files[0] // 为 HTMLInputElement 构造函数中的 this,指向 input 实例对象
|
|
|
fileName = file.name
|
|
|
- if (file.size / 1024 / 1024 > 1024) {
|
|
|
- message.error("文件大小超过1G,请压缩或降低质量")
|
|
|
+ if (file.size / 1024 / 1024 > 2048) {
|
|
|
+ message.error("文件大小超过2G,请压缩或降低质量")
|
|
|
spinning.value = false;
|
|
|
tox.style.zIndex = 2;
|
|
|
return
|
|
@@ -263,10 +263,10 @@ export default defineComponent({
|
|
|
input.onchange = async function () {
|
|
|
const file = this.files[0] // 为 HTMLInputElement 构造函数中的 this,指向 input 实例对象
|
|
|
fileName = file.name
|
|
|
- if (file.size / 1024 / 1024 > 1024) {
|
|
|
+ if (file.size / 1024 / 1024 > 2048) {
|
|
|
spinning.value = false;
|
|
|
tox.style.zIndex = 2;
|
|
|
- message.error("视频大小超过1G,请压缩或降低质量")
|
|
|
+ message.error("视频大小超过2G,请压缩或降低质量")
|
|
|
return
|
|
|
}
|
|
|
let params = {
|
|
@@ -293,8 +293,8 @@ export default defineComponent({
|
|
|
input.onchange = async function () {
|
|
|
const file = this.files[0] // 为 HTMLInputElement 构造函数中的 this,指向 input 实例对象
|
|
|
fileName = file.name
|
|
|
- if (file.size / 1024 / 1024 > 1024) {
|
|
|
- message.error("图片大小超过1G,请压缩或降低质量")
|
|
|
+ if (file.size / 1024 / 1024 > 100) {
|
|
|
+ message.error("图片大小超过100MB,请压缩或降低质量")
|
|
|
spinning.value = false;
|
|
|
tox.style.zIndex = 2;
|
|
|
return
|