SEC_Warehouse/api/scene.js

10 lines
236 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import request from '@/api/http/client'
/**
* 获取场景列表。
* 约定data 为数组,每项至少含 { id, name },多余字段不影响前端。
*/
export function getSceneList() {
return request.get('/scene/list')
}