|
@@ -12,11 +12,8 @@
|
|
|
</div>
|
|
|
<div class="table-box">
|
|
|
<div class="sheet-wrap">
|
|
|
- <Sheet
|
|
|
- v-if="sheetDetailInfo.MeetingInfoId"
|
|
|
- ref="sheetRef"
|
|
|
- :option="sheetDetailInfo.Content"
|
|
|
- />
|
|
|
+ <div id="sheet-container" v-if="this.sheetDetailInfo.MeetingInfoId">
|
|
|
+ </div>
|
|
|
<div v-else style="text-align: center;">
|
|
|
<tableNoData text="该日期暂无数据"/>
|
|
|
</div>
|
|
@@ -27,10 +24,8 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import Sheet from '@/views/datasheet_manage/components/SheetExcel.vue';
|
|
|
import {ToolBoxInterface} from "@/api/modules/toolBoxApi.js";
|
|
|
export default {
|
|
|
- components:{Sheet},
|
|
|
data() {
|
|
|
return {
|
|
|
sheetDetailInfo:{},
|
|
@@ -137,6 +132,11 @@ export default {
|
|
|
position: relative;
|
|
|
/* cursor:not-allowed;
|
|
|
pointer-events: none; */
|
|
|
+ #sheet-container {
|
|
|
+ margin:0;padding:0;
|
|
|
+ position:absolute;
|
|
|
+ width:100%;left: 0px;top: 0;bottom:0px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|