Commit fc599555 authored by 黄奎's avatar 黄奎

文件下载,文件名过长优化

parent 08a1060a
......@@ -540,8 +540,8 @@
//欧洲
if (this.dataAll.lineId == 168 || this.dataAll.lineId == 119) {
title = this.orderMsg.startDate;
if (this.dataAll.title.length > 100) {
title += this.dataAll.title.substring(0, 100);
if (this.dataAll.title.length > 80) {
title += this.dataAll.title.substring(0, 80);
} else {
title += this.dataAll.title;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment