14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
import {
|
|
http_use,
|
|
http_post
|
|
} from '../http.js'
|
|
|
|
class message {
|
|
//更新用户信息
|
|
async getList(parames) {
|
|
let res = await http_use('/message/getList', parames)
|
|
return res
|
|
}
|
|
}
|
|
export default new message
|