duy 1 month ago
parent
commit
f1f3a0b08a
1 changed files with 8 additions and 2 deletions
  1. 8 2
      src/views/codeRule/ruleManage.vue

+ 8 - 2
src/views/codeRule/ruleManage.vue

@@ -164,7 +164,11 @@
                         实施日期:{{ ruleDataDetail.actualizeDate }}
                       </div>
                       <div>
-                      <i class="el-icon-document"></i>{{ ruleDataDetail.standardFileUrl  }}
+                      <i class="el-icon-document"></i>
+
+                      <el-link v-for="item in ruleDataDetail.standardFiles" :key="item.id" type="primary" :href="item.standardFileUrl"  style="margin-right: 5px;">{{ item.fileName }}</el-link>
+                      
+
                       </div>
                     </div>
                     <div  class="box-card-content1-right">
@@ -668,7 +672,7 @@ import { getStore, setStore } from "@/util/store";
               parentId: item.id,
               privateId: this.treeId,
             }).then((res) => {
-              console.log(res,'res');
+
               
               this.ruleItemOptionsDetailLoading = false;
               if (res.data.code === 200) {
@@ -697,6 +701,8 @@ import { getStore, setStore } from "@/util/store";
             }).then((res) => {
               if (res.data.code === 200) {
                 this.ruleDataDetail = res.data.data;
+                console.log( this.ruleDataDetail,' this.ruleDataDetail');
+                
               } else {
                 this.$message.error(res.data.msg);
               }