|
@@ -19,6 +19,9 @@
|
|
<div style="width: 2%; float:left;margin-left: 10%;">
|
|
<div style="width: 2%; float:left;margin-left: 10%;">
|
|
<el-button type="primary" @click="dialogTableVisibleOpen()">对比</el-button>
|
|
<el-button type="primary" @click="dialogTableVisibleOpen()">对比</el-button>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div style="width: 2%; float:left;margin-left: 10%;">
|
|
|
|
+ <el-button type="primary" @click="exportData()">导出</el-button>
|
|
|
|
+ </div>
|
|
<el-dialog class="el-dialog_body" width="65%" title="日信息对比" :visible.sync="dialogTableVisible" append-to-body>
|
|
<el-dialog class="el-dialog_body" width="65%" title="日信息对比" :visible.sync="dialogTableVisible" append-to-body>
|
|
<div class="margin">
|
|
<div class="margin">
|
|
<div class="dialogLeftData">
|
|
<div class="dialogLeftData">
|
|
@@ -217,7 +220,7 @@
|
|
</el-tabs>
|
|
</el-tabs>
|
|
|
|
|
|
<el-main v-if="dailyInformation == true">
|
|
<el-main v-if="dailyInformation == true">
|
|
- <el-table :data="gridData" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
|
|
|
|
|
|
+ <el-table id="test1" :data="gridData" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
|
|
:cell-style="{ textAlign: 'center' }" style="font-size: 10px;">
|
|
:cell-style="{ textAlign: 'center' }" style="font-size: 10px;">
|
|
<el-table-column label="等级评定日信息查看">
|
|
<el-table-column label="等级评定日信息查看">
|
|
<el-table-column type="selection" width="55">
|
|
<el-table-column type="selection" width="55">
|
|
@@ -382,7 +385,12 @@
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
+
|
|
<script>
|
|
<script>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+import excelHelper from "@/utils/excelHelper";
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
@@ -499,6 +507,11 @@
|
|
this.gamonthlistByPage();
|
|
this.gamonthlistByPage();
|
|
this.gayearlistByPage();
|
|
this.gayearlistByPage();
|
|
},
|
|
},
|
|
|
|
+ exportData() {
|
|
|
|
+
|
|
|
|
+ excelHelper.exportExcel("test1","fileName",".xls",true);
|
|
|
|
+
|
|
|
|
+ },
|
|
dialogTableVisibleOpen() {
|
|
dialogTableVisibleOpen() {
|
|
this.dialogTableVisible = true;
|
|
this.dialogTableVisible = true;
|
|
this.radatChartWindturbineid1 = this.multipleSelection[0].windturbineid;
|
|
this.radatChartWindturbineid1 = this.multipleSelection[0].windturbineid;
|