cxmo há 1 ano atrás
pai
commit
9b10262aec
1 ficheiros alterados com 14 adições e 3 exclusões
  1. 14 3
      src/views/toolBox_manage/FederalReserveWatch.vue

+ 14 - 3
src/views/toolBox_manage/FederalReserveWatch.vue

@@ -12,20 +12,31 @@
             <el-button>下载</el-button>
         </div>
         <div class="table-box">
-            
+            <!-- <Sheet
+              v-if="sheetDetailInfo.ExcelInfoId"
+              ref="sheetRef"
+              :option="sheetDetailInfo.Content"
+              :sheetInfo="{
+                ExcelInfoId: sheetDetailInfo.ExcelInfoId,
+                ExcelName: sheetDetailInfo.ExcelName,
+                ExcelClassifyId: sheetDetailInfo.ExcelClassifyId,
+              }"
+            /> -->
         </div>
     </div>
 </template>
 
 <script>
+import Sheet from '@/views/datasheet_manage/components/SheetExcel.vue';
 export default {
+    components:{Sheet},
     data() {
         return {
-
+            sheetDetailInfo:{}
         };
     },
     methods: {
-
+        getSheetDetail(){}
     },
 };
 </script>