|
|
@@ -141,7 +141,7 @@
|
|
|
|
|
|
[_fileProgresslabel mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
|
make.left.mas_equalTo(_fileImageView.mas_right).offset(10);
|
|
|
- make.right.mas_equalTo(_progressBgView.mas_centerX).offset(100);
|
|
|
+ make.right.mas_equalTo(_progressBgView.mas_right).offset(-10);
|
|
|
make.height.mas_equalTo(15);
|
|
|
make.top.mas_equalTo(_progressBgView.mas_bottom).offset(3);
|
|
|
}];
|
|
|
@@ -361,7 +361,13 @@
|
|
|
}
|
|
|
|
|
|
if(curUploadFileDataModel.curUploadStateType == uploadStateDone){
|
|
|
- _fileProgresslabel.text = [[NSString alloc] initWithFormat:@"%@ %@:%@",totalSizeStr,NSLocalizedString(@"File_upload_to_tip",nil),Const_default_upload_path];
|
|
|
+
|
|
|
+ NSString *savePath = curUploadFileDataModel.savePath;
|
|
|
+ if(!savePath||savePath.length == 0){
|
|
|
+ savePath = Const_default_upload_path;
|
|
|
+ }
|
|
|
+
|
|
|
+ _fileProgresslabel.text = [[NSString alloc] initWithFormat:@"%@ %@:%@",totalSizeStr,NSLocalizedString(@"File_upload_to_tip",nil),savePath];
|
|
|
}
|
|
|
else if(curUploadFileDataModel.curUploadStateType == uploadStateFail){
|
|
|
_fileProgresslabel.text = [[NSString alloc] initWithFormat:@"%@",totalSizeStr];
|