'保安项目提交'

This commit is contained in:
esacpe
2025-09-22 09:01:41 +08:00
commit 21e2a12e3c
1439 changed files with 336271 additions and 0 deletions

View File

@ -0,0 +1,19 @@
// 装备到期提醒
import request from "@/utils/request";
const api = "/mosty-api/mosty-jmxf";
// 智能装备到期提醒列表
export function getZnzbTx(params) {
return request({
url: api + `/tpjcglZnzb/znzbDqtx`,
method: 'get',
params
})
}
// 常用装备到期提醒
export function getJyqxTx(params) {
return request({
url: api + `/tpJcglJyqx/jyqxDqtx`,
method: 'get',
params
})
}