Browse Source

Merge branch 'bug5732'

Karsa 6 months ago
parent
commit
aac1f396c8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/report_manage/reportV2/components/reportBaseInfoDia.vue

+ 2 - 2
src/views/report_manage/reportV2/components/reportBaseInfoDia.vue

@@ -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])
           }