generated from ccsens_fe/uni-vue3-template
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.
12 lines
430 B
12 lines
430 B
import { post } from '@/api/base'
|
|
// import { useUserStoreWidthOut } from '@/store/modules/user'
|
|
|
|
// const userStore = useUserStoreWidthOut()
|
|
|
|
export const serviceApi = {
|
|
// 查平车信息
|
|
getCarInfo: () => post('/car/queryByPadNo', { param: {} }),
|
|
// 查急救列表
|
|
getAidList: (keywords: string, pageNum = 1, pageSize = 20, sort = '') =>
|
|
post('/firstAid/list', { param: { keywords }, pageSize, pageNum, sort }),
|
|
}
|
|
|