添加文本预览、创建文件功能,调整通用智能布局,添加提示,修改第三方绑定及登录最长等待时间
This commit is contained in:
parent
f991a8033d
commit
3abec78c71
|
|
@ -120,7 +120,7 @@ const rules = {
|
||||||
};
|
};
|
||||||
// 表单引用
|
// 表单引用
|
||||||
const login = ref(null);
|
const login = ref(null);
|
||||||
const maxLoginRepeatRequest = 30; //最大请求次数
|
const maxLoginRepeatRequest = 60; //最大请求次数
|
||||||
const currentLoginRequest = ref(0); //当前请求次数
|
const currentLoginRequest = ref(0); //当前请求次数
|
||||||
|
|
||||||
const thirdPartyLogoInfoList = ref([
|
const thirdPartyLogoInfoList = ref([
|
||||||
|
|
@ -158,13 +158,6 @@ var loginData = ref({
|
||||||
password: "",
|
password: "",
|
||||||
ip: "",
|
ip: "",
|
||||||
});
|
});
|
||||||
const thirdPartyPlatform = ref([
|
|
||||||
{ label: 'QQ', value: 'qq' },
|
|
||||||
{ label: 'Github', value: 'github' },
|
|
||||||
{ label: 'Gitee', value: 'gitee' },
|
|
||||||
{ label: 'Google', value: 'google' },
|
|
||||||
{ label: 'Facebook', value: 'facebook'}
|
|
||||||
]);
|
|
||||||
|
|
||||||
const thirdLogin = async (type) => {
|
const thirdLogin = async (type) => {
|
||||||
//获取uuid
|
//获取uuid
|
||||||
|
|
|
||||||
|
|
@ -158,7 +158,7 @@ const avatarImg = ref('');
|
||||||
const imgSrc = ref('');
|
const imgSrc = ref('');
|
||||||
const cropImg = ref('');
|
const cropImg = ref('');
|
||||||
const cropper: any = ref();
|
const cropper: any = ref();
|
||||||
const maxLoginRepeatRequest = 30; //最大请求次数
|
const maxLoginRepeatRequest = 60; //最大请求次数
|
||||||
const currentLoginRequest = ref(0); //当前请求次数
|
const currentLoginRequest = ref(0); //当前请求次数
|
||||||
|
|
||||||
const thirdPartyUserInfo = ref<ThirdPartyUserInfo[]>([]);
|
const thirdPartyUserInfo = ref<ThirdPartyUserInfo[]>([]);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue