mirror of
https://gitee.com/lijingbo-2021/open-anylink-web.git
synced 2026-05-17 12:48:02 +00:00
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
import { CLIENT_TYPE, CLIENT_NAME, CLIENT_VERSION } from '@/const/userConst'
|
|
|
|
export const getReqBody = (obj) => {
|
|
return {
|
|
...obj,
|
|
clientType: CLIENT_TYPE,
|
|
clientName: CLIENT_NAME,
|
|
clientVersion: CLIENT_VERSION
|
|
}
|
|
}
|