|
@@ -434,7 +434,7 @@ export default {
|
|
|
Keyword:''
|
|
|
}).then((res) => {
|
|
|
if (res.Ret !== 200) return;
|
|
|
- if (!res.Data.List) {
|
|
|
+ if (!res.Data.List&&this.formData.type===2) {
|
|
|
this.$message.warning(
|
|
|
this.$t("ReportManage.ReportList.no_reports_msg")
|
|
|
);
|
|
@@ -444,7 +444,7 @@ export default {
|
|
|
if(this.formData.type===1) { //默认只带出作者
|
|
|
this.formData.author = res.Data.List
|
|
|
? res.Data.List[0].Author.split(",")
|
|
|
- : [''];
|
|
|
+ : [];
|
|
|
}else {
|
|
|
this.chooseInheritReport(res.Data.List[0])
|
|
|
}
|