2021-06-17 21:17:43 +08:00
|
|
|
Tea.context(function () {
|
|
|
|
|
this.success = NotifyPopup
|
2021-06-19 21:35:38 +08:00
|
|
|
|
|
|
|
|
this.type = ""
|
|
|
|
|
this.authDescription = ""
|
|
|
|
|
|
|
|
|
|
this.changeType = function () {
|
|
|
|
|
let that = this
|
|
|
|
|
let authType = this.authTypes.$find(function (k, v) {
|
|
|
|
|
return v.code == that.type
|
|
|
|
|
})
|
|
|
|
|
if (authType != null) {
|
|
|
|
|
this.authDescription = authType.description
|
|
|
|
|
} else {
|
|
|
|
|
this.authDescription = ""
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 基本认证
|
|
|
|
|
*/
|
|
|
|
|
this.moreBasicAuthOptionsVisible = false
|
|
|
|
|
|
|
|
|
|
this.showMoreBasicAuthOptions = function () {
|
|
|
|
|
this.moreBasicAuthOptionsVisible = !this.moreBasicAuthOptionsVisible
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 子请求
|
|
|
|
|
*/
|
|
|
|
|
this.subRequestFollowRequest = 1
|
2021-06-17 21:17:43 +08:00
|
|
|
})
|