vue2-client 1.4.33 → 1.4.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/package.json +1 -1
- package/src/services/api/cas.js +1 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/services/api/cas.js
CHANGED
|
@@ -2,7 +2,6 @@ import { post } from '@vue2-client/services/api/restTools'
|
|
|
2
2
|
import notification from 'ant-design-vue/lib/notification'
|
|
3
3
|
import { logout } from '@vue2-client/services/user'
|
|
4
4
|
import Cookie from 'js-cookie'
|
|
5
|
-
import {commonApi} from "vue2-client/src/services/api/common";
|
|
6
5
|
|
|
7
6
|
const casApi = {
|
|
8
7
|
// 根据用户信息校验服务访问权限并生成ST
|
|
@@ -74,7 +73,7 @@ export function CASLogin (serviceKey, inner) {
|
|
|
74
73
|
}
|
|
75
74
|
}
|
|
76
75
|
|
|
77
|
-
export function doOtherValidate(logicName, st, serviceKey) {
|
|
76
|
+
export function doOtherValidate (logicName, st, serviceKey) {
|
|
78
77
|
return post(casApi.otherValidate + '/' + logicName, {
|
|
79
78
|
st: st,
|
|
80
79
|
serviceKey: serviceKey
|