问题修改
This commit is contained in:
@@ -615,7 +615,8 @@ export default {
|
||||
//台区台账表头
|
||||
tableHeaderMonitoring: [
|
||||
// { prop: 'id', label: '监测点编号', width: 120 },
|
||||
{ prop: 'name', label: '监测点名称', width: 220 },
|
||||
{ prop: 'monitorObjectName', label: '监测对象名称', width: 250 },
|
||||
{ prop: 'name', label: '测点名称', width: 220 },
|
||||
{ prop: 'orgName', label: '组织机构名称', width: 170 },
|
||||
{ prop: 'operationName', label: '运维单位名称', width: 170 },
|
||||
{ prop: 'powerrName', label: '变电站名称', width: 120 },
|
||||
@@ -654,7 +655,7 @@ export default {
|
||||
{ prop: 'objType', label: '对象类型', width: 170 },
|
||||
|
||||
// { prop: "monitorObjectId", label: "监测对象编号", width:170 },
|
||||
{ prop: 'monitorObjectName', label: '监测对象名称', width: 170 },
|
||||
|
||||
{ prop: 'tradeCode', label: '行业分类', width: 170 },
|
||||
{ prop: 'statisticalInterval', label: '统计间隔(min)', width: 140 },
|
||||
{ prop: 'terminalCode', label: '关联的监测终端编号', width: 190 },
|
||||
@@ -1401,7 +1402,7 @@ export default {
|
||||
const url = window.URL.createObjectURL(blob)
|
||||
const link = document.createElement('a') // 创建a标签
|
||||
link.href = url // link.download = "电压暂降事件分析报告"; // 设置下载的文件名
|
||||
link.download = '上送典型台账.xls' // 设置下载的文件名
|
||||
link.download = '典型台账.xls' // 设置下载的文件名
|
||||
document.body.appendChild(link)
|
||||
link.click() //执行下载
|
||||
document.body.removeChild(link)
|
||||
|
||||
Reference in New Issue
Block a user