提交 c90b4238 编写于 作者: laizhilong's avatar laizhilong

去掉不必要的函数注释

上级 0c40ca6f
......@@ -64,29 +64,25 @@
// 表单
public form: any = {loginname: '', password: ''};
// 按钮可点击
public canClick: any = true;
// 按钮内容
public BtnContent: any = "注册并绑定钉钉";
// 钉钉授权成功返回的code和state
public code: any;
public state: any;
// 钉钉用户信息
public dingtalkUserInfo:any ={
openid:'',// 钉钉用户身份的唯一标识
nickname:'',// 钉钉用户名称
unionid:'',// 钉钉用户唯一标识
}
};
/**
* 应用名称
*
* @type {string}
* @memberof Register
*/
public appTitle: string = Environment.AppTitle;
......@@ -100,8 +96,6 @@
/**
* 设置值规则
*
* @memberof Register
*/
public setRules() {
this.rules = {
......@@ -115,16 +109,14 @@
};
/**
* 生命周期Create
*
* @memberof Register
* 生命周期created
*/
public created() {
this.setRules();
}
/**
* 挂载
* 生命周期mounted
*/
public mounted() {
// 从url获取授权code和state
......@@ -159,8 +151,6 @@
/**
* 监听语言变化
*
* @memberof Login
*/
@Watch('$i18n.locale')
onLocaleChange(newval: any, val: any) {
......@@ -169,8 +159,6 @@
/**
* 跳转登录页面
*
* @memberof Register
*/
public goLogin(): void {
const _this = this;
......
......@@ -87,7 +87,6 @@
* 表单对象
*
* @type {*}
* @memberof Login
*/
public form: any = {loginname: 'ibzadmin', password: '123456'};
......@@ -96,7 +95,6 @@
* 应用名称
*
* @type {string}
* @memberof Login
*/
public appTitle: string = Environment.AppTitle;
......@@ -104,14 +102,12 @@
* 值规则
*
* @type {*}
* @memberof Login
*/
public rules = {};
/**
* 设置值规则
*
* @memberof Login
*/
public setRules() {
this.rules = {
......@@ -125,14 +121,15 @@
};
/**
* 生命周期Create
*
* @memberof Login
* 生命周期created
*/
public created() {
this.setRules();
}
/**
* 生命周期mounted
*/
public mounted() {
if (this.getCookie("loginname") && this.getCookie("loginname") !== 'undefined') {
this.form.loginname = this.getCookie("loginname");
......@@ -150,8 +147,6 @@
/**
* 监听语言变化
*
* @memberof Login
*/
@Watch('$i18n.locale')
onLocaleChange(newval: any, val: any) {
......@@ -160,8 +155,6 @@
/**
* 登陆处理
*
* @memberof Login
*/
public handleSubmit(): void {
const form: any = this.$refs.loginForm;
......@@ -214,8 +207,6 @@
/**
* 重置页面
*
* @memberof Login
*/
public goReset(): void {
const _this = this;
......@@ -224,6 +215,8 @@
/**
* 跳转注册页面
*
* @memberof Login
*/
public goRegister(): void {
const _this = this;
......@@ -435,8 +428,7 @@
// 截取地址,拼接需要部分组成新地址
const scheme = window.location.protocol;
const host = window.location.host;
let baseUrl: any;
baseUrl = scheme + "//" + host;
let baseUrl: any = scheme + "//" + host;
const port = window.location.port;
if (port) {
if (port == '80' || port == '443') {
......@@ -447,7 +439,6 @@
} else {
baseUrl += "/";
}
// console.log(baseUrl);
return baseUrl;
}
......
......@@ -77,13 +77,12 @@
nickname:'',// QQ用户名称
access_token: '',// 临时授权token
refresh_token:'',// 刷新授权token
}
};
/**
* 应用名称
*
* @type {string}
* @memberof Register
*/
public appTitle: string = Environment.AppTitle;
......@@ -91,14 +90,11 @@
* 值规则
*
* @type {*}
* @memberof Register
*/
public rules = {};
/**
* 设置值规则
*
* @memberof Register
*/
public setRules() {
this.rules = {
......@@ -113,16 +109,14 @@
/**
* 生命周期Create
*
* @memberof Register
* 生命周期created
*/
public created() {
this.setRules();
}
/**
* 挂载
* 生命周期mounted
*/
public mounted() {
// 从url获取授权code和state
......@@ -156,8 +150,6 @@
/**
* 监听语言变化
*
* @memberof Login
*/
@Watch('$i18n.locale')
onLocaleChange(newval: any, val: any) {
......@@ -166,8 +158,6 @@
/**
* 跳转登录页面
*
* @memberof Register
*/
public goLogin(): void {
const _this = this;
......
......@@ -68,11 +68,9 @@
public canClick: any = true;
// 按钮内容
public BtnContent: any = "注册并绑定微信";
// 微信授权成功返回的code和state
public code: any;
public state: any;
// 微信用户信息
public wechatUserInfo:any = {
openid:'',//微信用户身份的唯一标识
......@@ -80,13 +78,12 @@
access_token: '',// 临时授权token
refresh_token:'',// 刷新授权token
unionid:'',//微信用户唯一标识
}
};
/**
* 应用名称
*
* @type {string}
* @memberof Register
*/
public appTitle: string = Environment.AppTitle;
......@@ -94,7 +91,6 @@
* 值规则
*
* @type {*}
* @memberof Register
*/
public rules = {};
......@@ -115,16 +111,14 @@
};
/**
* 生命周期Create
*
* @memberof Register
* 生命周期created
*/
public created() {
this.setRules();
}
/**
* 挂载
* 生命周期mounted
*/
public mounted() {
// 从url获取授权code和state
......@@ -162,8 +156,6 @@
/**
* 监听语言变化
*
* @memberof Login
*/
@Watch('$i18n.locale')
onLocaleChange(newval: any, val: any) {
......@@ -172,8 +164,6 @@
/**
* 跳转登录页面
*
* @memberof Register
*/
public goLogin(): void {
const _this = this;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册