cxmo 1 年之前
父节点
当前提交
9b10262aec
共有 1 个文件被更改,包括 14 次插入3 次删除
  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>