|
@@ -19,8 +19,8 @@
|
|
|
<div style="width: 2%; float:left;margin-left: 10%;">
|
|
|
<el-button type="primary" @click="dialogTableVisibleOpen()">对比</el-button>
|
|
|
</div>
|
|
|
- <div style="width: 2%; float:left;margin-left: 10%;">
|
|
|
- <el-button type="primary" @click="exportData()">导出</el-button>
|
|
|
+ <div style="width: 2%; float:left;margin-left: 10%;">
|
|
|
+ <el-button type="primary" @click="exportDayData()">导出</el-button>
|
|
|
</div>
|
|
|
<el-dialog class="el-dialog_body" width="65%" title="日信息对比" :visible.sync="dialogTableVisible" append-to-body>
|
|
|
<div class="margin">
|
|
@@ -91,6 +91,9 @@
|
|
|
<div style="width: 2%; float:left;margin-left: 10%;">
|
|
|
<el-button type="primary" @click="dialogTableVisibleOpenMonth()">对比</el-button>
|
|
|
</div>
|
|
|
+ <div style="width: 2%; float:left;margin-left: 10%;">
|
|
|
+ <el-button type="primary" @click="exportMonthData()">导出</el-button>
|
|
|
+ </div>
|
|
|
<el-dialog class="el-dialog_body" width="65%" title="月信息对比" :visible.sync="dialogTableVisibleMonth"
|
|
|
append-to-body>
|
|
|
<div class="margin">
|
|
@@ -161,6 +164,9 @@
|
|
|
<div style="width: 2%; float:left;margin-left: 10%;">
|
|
|
<el-button type="primary" @click="dialogTableVisibleOpenYear()">对比</el-button>
|
|
|
</div>
|
|
|
+ <div style="width: 2%; float:left;margin-left: 10%;">
|
|
|
+ <el-button type="primary" @click="exportYearData()">导出</el-button>
|
|
|
+ </div>
|
|
|
<el-dialog class="el-dialog_body" width="65%" title="年信息对比" :visible.sync="dialogTableVisibleYear" append-to-body>
|
|
|
<div class="margin">
|
|
|
<div class="dialogLeftData">
|
|
@@ -216,7 +222,7 @@
|
|
|
</el-tabs>
|
|
|
|
|
|
<el-main v-if="dailyInformation == true">
|
|
|
- <el-table id="test1" :data="gridData" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
|
|
|
+ <el-table id="daytable" :data="gridData" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
|
|
|
:cell-style="{ textAlign: 'center' }" style="font-size: 10px;">
|
|
|
<el-table-column label="等级评定日信息查看">
|
|
|
<el-table-column type="selection" width="55">
|
|
@@ -271,7 +277,7 @@
|
|
|
</div>
|
|
|
</el-main>
|
|
|
<el-main v-if="monthlyInformation == true">
|
|
|
- <el-table :data="gridDataMonth" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
|
|
|
+ <el-table id="monthtable" :data="gridDataMonth" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
|
|
|
:cell-style="{ textAlign: 'center' }" style="font-size: 10px;">
|
|
|
<el-table-column label="等级评定月信息查看">
|
|
|
<el-table-column type="selection" width="55">
|
|
@@ -326,7 +332,7 @@
|
|
|
</div>
|
|
|
</el-main>
|
|
|
<el-main v-if="annualInformation == true">
|
|
|
- <el-table :data="gridDataYear" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
|
|
|
+ <el-table id="yeartable" :data="gridDataYear" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
|
|
|
:cell-style="{ textAlign: 'center' }" style="font-size: 10px;">
|
|
|
<el-table-column label="等级评定年信息查看">
|
|
|
<el-table-column type="selection" width="55">
|
|
@@ -509,10 +515,17 @@ import excelHelper from "@/utils/excelHelper";
|
|
|
this.gradeByDaygData();
|
|
|
this.gamonthlistByPage();
|
|
|
this.gayearlistByPage();
|
|
|
- },
|
|
|
- exportData() {
|
|
|
+ },exportDayData() {
|
|
|
+
|
|
|
+ excelHelper.exportExcel("daytable","等级评估日数据",".xls",true);
|
|
|
+
|
|
|
+ },exportMonthData() {
|
|
|
+
|
|
|
+ excelHelper.exportExcel("monthtable","等级评估月数据",".xls",true);
|
|
|
+
|
|
|
+ },exportYearData() {
|
|
|
|
|
|
- excelHelper.exportExcel("test1","fileName",".xls",true);
|
|
|
+ excelHelper.exportExcel("yeartable","等级评估年数据",".xls",true);
|
|
|
|
|
|
},
|
|
|
dialogTableVisibleOpen() {
|