zmc
2023-12-01 5244fdb5f7932f2cbce43f4bfaa9dc06c9dd4c95
1
2
3
4
5
6
7
8
9
import { $http } from './index';
export default {
    login(username,password){
        const param = {}
        param.uiAccountName = username
        param.uiPassword = password
        return $http.post('/dust/login',param)
    }
}