修正 七牛图片处理 已“-”分割
This commit is contained in:
parent
6f45fd441e
commit
2b3d4d2dcb
|
|
@ -82,7 +82,7 @@ export default class Qiniu {
|
|||
: 0;
|
||||
protocol2 = protocol[index];
|
||||
}
|
||||
return `${protocol2}://${domain}/${this.formKey(extraFile)}${style ? '?' + style : ''}`;
|
||||
return `${protocol2}://${domain}/${this.formKey(extraFile)}${style ? '-' + style : ''}`;
|
||||
}
|
||||
}
|
||||
return '';
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ class Qiniu {
|
|||
: 0;
|
||||
protocol2 = protocol[index];
|
||||
}
|
||||
return `${protocol2}://${domain}/${this.formKey(extraFile)}${style ? '?' + style : ''}`;
|
||||
return `${protocol2}://${domain}/${this.formKey(extraFile)}${style ? '-' + style : ''}`;
|
||||
}
|
||||
}
|
||||
return '';
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ export default class Qiniu implements Cos<ED, BRC, FRC> {
|
|||
: 0;
|
||||
protocol2 = protocol[index];
|
||||
}
|
||||
return `${protocol2}://${domain}/${this.formKey(extraFile)}${style ? '?' + style : ''}`;
|
||||
return `${protocol2}://${domain}/${this.formKey(extraFile)}${style ? '-' + style : ''}`;
|
||||
}
|
||||
}
|
||||
return '';
|
||||
|
|
|
|||
Loading…
Reference in New Issue