You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
322 B
13 lines
322 B
var fly = require('../utils/request.js')
|
|
module.exports = {
|
|
listGrid: listGrid,
|
|
removeGrid: removeGrid
|
|
}
|
|
// 网格管理
|
|
function listGrid (params) {
|
|
return fly.get('work/user/swagger/listGrid', params)
|
|
}
|
|
// 解绑网格
|
|
function removeGrid (params) {
|
|
return fly.post('work/user/swagger/removeGrid', params, '1')
|
|
}
|