Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yindong-tongbai-automation
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lichunliang
yindong-tongbai-automation
Commits
1eeeff71
Commit
1eeeff71
authored
Apr 30, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
环境监测实施数据、水仓实时数据、水泵实时数据 页面
parent
bcd98cac
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
708 additions
and
0 deletions
+708
-0
envMonitoringShishiData.js
src/api/tyler/envMonitoringShishiData.js
+53
-0
waterLevelShishiData.js
src/api/tyler/waterLevelShishiData.js
+19
-0
waterPumpShishiData.js
src/api/tyler/waterPumpShishiData.js
+71
-0
index.vue
src/views/drainage/waterLevelShishiData/index.vue
+120
-0
index.vue
src/views/drainage/waterPumpShishiData/index.vue
+206
-0
index.vue
...views/monitoringDevices/envMonitoringShishiData/index.vue
+239
-0
No files found.
src/api/tyler/envMonitoringShishiData.js
0 → 100644
View file @
1eeeff71
import
request
from
'
@/utils/request
'
// 查询环境监测的实时数据列表
export
function
list2502
(
query
)
{
return
request
({
url
:
'
/business/real/list
'
,
method
:
'
get
'
,
params
:
query
})
}
// 查询环境监测的实时数据所有列表
export
function
listAll2502
(
query
)
{
return
request
({
url
:
'
/business/2502/listAll
'
,
method
:
'
get
'
,
params
:
query
})
}
// 查询环境监测的实时数据详细
export
function
get2502
(
tpNum
)
{
return
request
({
url
:
'
/business/2502/getInfo/
'
+
tpNum
,
method
:
'
get
'
})
}
// 新增环境监测的实时数据
export
function
add2502
(
data
)
{
return
request
({
url
:
'
/business/2502/add
'
,
method
:
'
post
'
,
data
:
data
})
}
// 修改环境监测的实时数据
export
function
update2502
(
data
)
{
return
request
({
url
:
'
/business/2502/edit
'
,
method
:
'
post
'
,
data
:
data
})
}
// 删除环境监测的实时数据
export
function
del2502
(
tpNum
)
{
return
request
({
url
:
'
/business/2502/remove/
'
+
tpNum
,
method
:
'
get
'
})
}
src/api/tyler/waterLevelShishiData.js
0 → 100644
View file @
1eeeff71
import
request
from
'
@/utils/request
'
// 查询水泵历史信息列表
export
function
listSumpHistory
(
query
)
{
return
request
({
url
:
'
/business/sump/real/list
'
,
method
:
'
get
'
,
params
:
query
})
}
// 查询水泵历史信息所有列表
export
function
listAllSumpHistory
(
query
)
{
return
request
({
url
:
'
/business/pump/history/listAll
'
,
method
:
'
get
'
,
params
:
query
})
}
\ No newline at end of file
src/api/tyler/waterPumpShishiData.js
0 → 100644
View file @
1eeeff71
import
request
from
'
@/utils/request
'
// 查询水泵历史信息列表
export
function
listHistory
(
query
)
{
return
request
({
url
:
'
/business/pump/real/list
'
,
method
:
'
get
'
,
params
:
query
})
}
// 查询水泵历史信息所有列表
export
function
listAllHistory
(
query
)
{
return
request
({
url
:
'
/business/pump/history/listAll
'
,
method
:
'
get
'
,
params
:
query
})
}
// 查询水泵历史信息详细
export
function
getHistory
(
id
)
{
return
request
({
url
:
'
/business/pump/history/getInfo/
'
+
id
,
method
:
'
get
'
})
}
// 新增水泵历史信息
export
function
addHistory
(
data
)
{
return
request
({
url
:
'
/business/pump/history/add
'
,
method
:
'
post
'
,
data
:
data
})
}
// 修改水泵历史信息
export
function
updateHistory
(
data
)
{
return
request
({
url
:
'
/business/pump/history/edit
'
,
method
:
'
post
'
,
data
:
data
})
}
// 删除水泵历史信息
export
function
delHistory
(
id
)
{
return
request
({
url
:
'
/business/pump/history/remove/
'
+
id
,
method
:
'
get
'
})
}
// 查询水泵历史信息列表
export
function
listWarterPumpAlarmHis
(
query
)
{
return
request
({
url
:
'
/business/pump/alarm/history/list
'
,
method
:
'
get
'
,
params
:
query
})
}
// 修改水泵历史信息
export
function
updateWarterPumpAlarmHis
(
data
)
{
return
request
({
url
:
'
/business/pump/alarm/history/edit
'
,
method
:
'
post
'
,
data
:
data
})
}
\ No newline at end of file
src/views/drainage/waterLevelShishiData/index.vue
0 → 100644
View file @
1eeeff71
<
template
>
<div
class=
"app-container"
>
<!--
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
""
prop=
"sumpName"
>
<el-select
v-model=
"queryParams.sumpName"
placeholder=
"设备名称"
clearable
>
<el-option
v-for=
"dict in devList"
:key=
"dict.value"
:label=
"dict.name"
:value=
"dict.name"
/>
</el-select>
</el-form-item>
<el-form-item
label=
""
>
<el-date-picker
v-model=
"dateRange"
style=
"width: 240px"
value-format=
"yyyy-MM-dd"
type=
"daterange"
range-separator=
"-"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
</el-form>
-->
<el-table
v-loading=
"loading"
:data=
"historyList"
>
<el-table-column
label=
"设备名称"
align=
"center"
prop=
"sumpName"
/>
<el-table-column
label=
"设备编号"
align=
"center"
prop=
"sumpId"
/>
<el-table-column
label=
"设备安装位置"
align=
"center"
prop=
"installationLocation"
/>
<el-table-column
label=
"液位高度(m)"
align=
"center"
prop=
"heghtThreshold"
/>
<el-table-column
label=
"监测时间"
align=
"center"
prop=
"time"
width=
"180"
>
<template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
time
)
}}
</span>
</
template
>
</el-table-column>
</el-table>
<pagination
v-show=
"total>0"
:total=
"total"
:page.sync=
"queryParams.pageNum"
:limit.sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
</div>
</template>
<
script
>
import
{
getHistory
,
listSumpHistory
}
from
"
@/api/tyler/waterLevelShishiData
"
;
import
{
draDeviceName
}
from
"
@/api/tyler/common
"
;
export
default
{
name
:
"
History
"
,
data
()
{
return
{
// 根路径
baseURL
:
process
.
env
.
VUE_APP_BASE_API
,
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 设备历史信息表格数据
historyList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
sumpName
:
null
,
},
// 表单参数
form
:
{},
// 表单校验
rules
:
{},
// 日期范围
dateRange
:
[],
devList
:
[],
};
},
created
()
{
draDeviceName
({
typeId
:
2
}).
then
(
res
=>
{
this
.
devList
=
res
.
data
;
})
this
.
getList
();
},
methods
:
{
/** 查询设备历史信息列表 */
getList
()
{
this
.
loading
=
true
;
listSumpHistory
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
this
.
historyList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
});
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
dateRange
=
[]
this
.
resetForm
(
"
queryForm
"
);
this
.
handleQuery
();
},
}
};
</
script
>
src/views/drainage/waterPumpShishiData/index.vue
0 → 100644
View file @
1eeeff71
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
""
prop=
"deviceName"
>
<el-select
v-model=
"queryParams.deviceName"
placeholder=
"水泵名称"
clearable
>
<el-option
v-for=
"dict in devList"
:key=
"dict.name"
:label=
"dict.name"
:value=
"dict.name"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
</el-form>
<el-table
v-loading=
"loading"
:data=
"historyList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
label=
"水泵名称"
align=
"center"
prop=
"pumpName"
/>
<el-table-column
label=
"水泵编号"
align=
"center"
prop=
"pumpId"
/>
<el-table-column
label=
"水泵安装位置"
align=
"center"
prop=
"installationLocation"
/>
<el-table-column
label=
"电机电流"
align=
"center"
prop=
"motorCurrent"
/>
<el-table-column
label=
"电机轴承温度"
align=
"center"
prop=
"motorBearingTemp"
/>
<el-table-column
label=
"水泵轴承温度"
align=
"center"
prop=
"pumpBearingTemp"
/>
<el-table-column
label=
"水泵流量"
align=
"center"
prop=
"pumpFlow"
/>
<el-table-column
label=
"排水管路压力"
align=
"center"
prop=
"drainagePressure"
/>
<el-table-column
label=
"监测时间"
align=
"center"
prop=
"monitoringTime"
width=
"180"
>
<template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
monitoringTime
)
}}
</span>
</
template
>
</el-table-column>
</el-table>
<pagination
v-show=
"total>0"
:total=
"total"
:page.sync=
"queryParams.pageNum"
:limit.sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
</div>
</template>
<
script
>
import
{
getHistory
,
listHistory
}
from
"
@/api/tyler/waterPumpShishiData
"
;
import
{
draDeviceName
}
from
"
@/api/tyler/common
"
;
export
default
{
name
:
"
History
"
,
data
()
{
return
{
// 根路径
baseURL
:
process
.
env
.
VUE_APP_BASE_API
,
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 水泵历史信息表格数据
historyList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
pumpId
:
null
,
deviceName
:
null
,
motorCurrent
:
null
,
motorBearingTemp
:
null
,
pumpBearingTemp
:
null
,
pumpFlow
:
null
,
drainagePressure
:
null
,
monitoringTime
:
null
},
// 表单参数
form
:
{},
// 表单校验
rules
:
{},
// 日期范围
dateRange
:
[],
devList
:
[],
};
},
created
()
{
draDeviceName
({
typeId
:
1
}).
then
(
res
=>
{
this
.
devList
=
res
.
data
;
})
this
.
getList
();
},
methods
:
{
/** 查询水泵历史信息列表 */
getList
()
{
this
.
loading
=
true
;
listHistory
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
this
.
historyList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
},
// 表单重置
reset
()
{
this
.
form
=
{
id
:
null
,
pumpId
:
null
,
deviceName
:
null
,
motorCurrent
:
null
,
motorBearingTemp
:
null
,
pumpBearingTemp
:
null
,
pumpFlow
:
null
,
drainagePressure
:
null
,
monitoringTime
:
null
};
this
.
resetForm
(
"
form
"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
dateRange
=
[]
this
.
resetForm
(
"
queryForm
"
);
this
.
handleQuery
();
},
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
(
item
=>
item
.
id
)
this
.
single
=
selection
.
length
!==
1
this
.
multiple
=
!
selection
.
length
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"
添加水泵历史信息
"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
const
id
=
row
.
id
||
this
.
ids
getHistory
(
id
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"
修改水泵历史信息
"
;
});
},
/** 提交按钮 */
submitForm
()
{
this
.
$refs
[
"
form
"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
form
.
id
!=
null
)
{
updateHistory
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"
修改成功
"
);
this
.
open
=
false
;
this
.
getList
();
});
}
else
{
addHistory
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"
新增成功
"
);
this
.
open
=
false
;
this
.
getList
();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
ids
=
row
.
id
||
this
.
ids
;
this
.
$modal
.
confirm
(
'
是否确认删除水泵历史信息编号为"
'
+
ids
+
'
"的数据项?
'
).
then
(
function
()
{
return
delHistory
(
ids
);
}).
then
(()
=>
{
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"
删除成功
"
);
}).
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
this
.
download
(
'
business/history/export
'
,
{
...
this
.
queryParams
},
`history_
${
new
Date
().
getTime
()}
.xlsx`
)
}
}
};
</
script
>
src/views/monitoringDevices/envMonitoringShishiData/index.vue
0 → 100644
View file @
1eeeff71
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
""
prop=
"tpName"
>
<el-input
v-model=
"queryParams.tpName"
placeholder=
"请输入测点名称"
clearable
@
keyup.enter.native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
""
prop=
"typeName"
>
<el-select
v-model=
"queryParams.typeName"
placeholder=
"请选择监测项名称"
clearable
>
<el-option
v-for=
"dict in typeName"
:key=
"dict"
:label=
"dict"
:value=
"dict"
/>
</el-select>
</el-form-item>
<el-form-item
label=
"日期查询"
>
<el-date-picker
v-model=
"dateRange"
style=
"width: 240px"
value-format=
"yyyy-MM-dd"
type=
"daterange"
range-separator=
"-"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
</el-form>
<el-table
v-loading=
"loading"
:data=
"alarmList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
label=
"测点名称"
align=
"center"
prop=
"tpName"
/>
<el-table-column
label=
"测点编号"
align=
"center"
prop=
"tpNum"
/>
<el-table-column
label=
"监测项名称"
align=
"center"
prop=
"typeName"
/>
<el-table-column
label=
"单位"
align=
"center"
prop=
"unit"
/>
<el-table-column
label=
"监测值"
align=
"center"
prop=
"value"
/>
<el-table-column
label=
"测量时间"
align=
"center"
prop=
"time"
width=
"180"
>
<template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
time
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"状态"
align=
"center"
prop=
"state"
>
<
template
slot-scope=
"scope"
>
<el-tag
v-if=
"scope.row.state==1"
>
正常
</el-tag>
<el-tag
v-else
type=
"warning"
>
异常
</el-tag>
</
template
>
</el-table-column>
</el-table>
<pagination
v-show=
"total>0"
:total=
"total"
:page.sync=
"queryParams.pageNum"
:limit.sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
<!-- 添加或修改环境监测报警数据对话框 -->
<el-dialog
:title=
"title"
:visible.sync=
"open"
width=
"500px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<el-form-item
label=
"解除报警时长"
prop=
"updateHour"
>
<el-input-number
:min=
"0"
v-model=
"form.updateHour"
></el-input-number>
</el-form-item>
<el-form-item
label=
"解除原因"
prop=
"delAlarmReason"
>
<el-input
type=
"textarea"
v-model=
"form.delAlarmReason"
placeholder=
"请输入解除原因"
/>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
{
get2502
,
list2502
}
from
"
@/api/tyler/envMonitoringShishiData
"
;
import
{
typeNameList
}
from
"
@/api/tyler/common
"
;
export
default
{
name
:
"
envMonitoringAlarm
"
,
data
()
{
return
{
// 根路径
baseURL
:
process
.
env
.
VUE_APP_BASE_API
,
// 遮罩层
loading
:
true
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 环境监测报警数据表格数据
alarmList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
tpNum
:
null
,
typeName
:
null
,
tpName
:
null
,
status
:
null
,
delAlarmTime
:
null
,
delAlarmReason
:
null
,
updateHour
:
null
,
},
// 日期范围
dateRange
:
[],
// 表单参数
form
:
{},
// 表单校验
rules
:
{
updateHour
:
[
{
required
:
true
,
message
:
"
解除报警时长不能为空
"
,
trigger
:
"
blur
"
}
],
delAlarmReason
:
[
{
required
:
true
,
message
:
"
解除报警原因不能为空
"
,
trigger
:
"
blur
"
}
],
},
typeName
:[]
};
},
created
()
{
typeNameList
().
then
(
res
=>
{
// console.log(res,'res')
this
.
typeName
=
res
.
data
})
this
.
getList
();
},
methods
:
{
/** 查询环境监测报警数据列表 */
getList
()
{
this
.
loading
=
true
;
list2502
(
this
.
addDateRange
(
this
.
queryParams
,
this
.
dateRange
)).
then
(
response
=>
{
this
.
alarmList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
},
// 表单重置
reset
()
{
this
.
form
=
{
id
:
null
,
tpNum
:
null
,
alarmTime
:
null
,
status
:
null
,
delAlarmTime
:
null
,
delAlarmReason
:
null
,
typeName
:
null
,
tpName
:
null
,
updateHour
:
null
,
};
this
.
resetForm
(
"
form
"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
dateRange
=
[];
this
.
resetForm
(
"
queryForm
"
);
this
.
handleQuery
();
},
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
(
item
=>
item
.
id
)
this
.
single
=
selection
.
length
!==
1
this
.
multiple
=
!
selection
.
length
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"
添加环境监测报警数据
"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
this
.
form
=
row
;
this
.
form
.
updateHour
=
row
.
updateHour
||
0
;
this
.
open
=
true
;
this
.
title
=
"
修改环境监测报警数据
"
;
// const id = row.id || this.ids
// getAlarm(id).then(response => {
// this.form = response.data;
// this.open = true;
// this.title = "修改环境监测报警数据";
// });
},
/** 提交按钮 */
submitForm
()
{
this
.
$refs
[
"
form
"
].
validate
(
valid
=>
{
updateAlarm
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"
修改成功
"
);
this
.
open
=
false
;
this
.
getList
();
});
});
},
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
ids
=
row
.
id
||
this
.
ids
;
this
.
$modal
.
confirm
(
'
是否确认删除?
'
).
then
(
function
()
{
return
delAlarm
(
ids
);
}).
then
(()
=>
{
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"
删除成功
"
);
}).
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
this
.
download
(
'
business/alarm/export
'
,
{
...
this
.
queryParams
},
`alarm_
${
new
Date
().
getTime
()}
.xlsx`
)
}
}
};
</
script
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment