Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
101cf0c0
提交
101cf0c0
编写于
11月 03, 2022
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 登录按钮更新
上级
d996f3fa
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
103 行增加
和
13 行删除
+103
-13
app-login-button.less
...yout-element/login/app-login-button/app-login-button.less
+2
-2
app-login-button.vue
...ayout-element/login/app-login-button/app-login-button.vue
+101
-11
未找到文件。
src/components/layout-element/login/app-login-button/app-login-button.less
浏览文件 @
101cf0c0
.app-user-button {
width: 100%;
.app-login-button {
.ivu-btn {
width: 100%;
height: 100%;
}
}
\ No newline at end of file
src/components/layout-element/login/app-login-button/app-login-button.vue
浏览文件 @
101cf0c0
<
template
>
<div
class=
"app-user-button"
>
<i-button
@
click=
"handleSubmit"
:type=
"type"
>
{{
caption
}}
</i-button>
<div
:class=
"[model.sysCss, 'app-login-button']"
:style=
"containerStyle"
>
<i-button
@
click=
"handleClick"
:type=
"curStyle"
>
<span
v-show=
"model.isShowCaption"
>
{{
model
.
caption
}}
</span>
</i-button>
</div>
</
template
>
<
script
lang=
"ts"
>
import
{
Vue
,
Component
,
Watch
,
Prop
,
Model
}
from
"vue-property-decorator"
;
import
{
PanelButtonModel
}
from
"@/model/panel-detail"
;
import
{
Vue
,
Component
,
Prop
}
from
"vue-property-decorator"
;
@
Component
({})
export
default
class
AppUserId
extends
Vue
{
@
Prop
()
public
predefinedType
!
:
string
;
export
default
class
AppLoginButton
extends
Vue
{
/**
* 模型
*
* @type {PanelButtonModel}
* @memberof AppLoginButton
*/
@
Prop
()
public
model
!
:
PanelButtonModel
;
@
Prop
()
public
type
?:
string
;
/**
* 类型
*
* @type {string}
* @memberof AppLoginButton
*/
@
Prop
()
public
defaultStyle
?:
string
;
@
Prop
()
public
caption
!
:
string
;
/**
* 当前按钮类型
*
* @type {string}
* @memberof AppLoginButton
*/
get
curStyle
():
string
{
if
(
this
.
model
.
buttonStyle
!=
"DEFAULT"
&&
this
.
defaultStyle
)
{
return
this
.
defaultStyle
;
}
else
{
return
this
.
model
.
buttonStyle
.
toLowerCase
();
}
}
/**
* 按钮样式
*
* @type {string}
* @memberof AppLoginButton
*/
public
containerStyle
:
any
=
null
;
/**
* 处理点击
*
* @type {string}
* @memberof AppLoginButton
*/
public
handleClick
()
{
switch
(
this
.
model
.
predefinedType
)
{
case
"APP_LOGOUT"
:
this
.
logout
();
break
;
case
"APP_REGISTER"
:
this
.
register
();
break
;
default
:
this
.
$emit
(
"itemClick"
,
this
.
model
.
predefinedType
);
}
}
public
mounted
()
{
if
(
this
.
model
)
{
this
.
containerStyle
=
this
.
model
.
getElementStyle
();
}
}
/**
* 登出
*
* @type {string}
* @memberof AppLoginButton
*/
public
logout
()
{
this
.
$http
.
get
(
"/v7/logout"
)
.
then
((
response
:
any
)
=>
{
if
(
response
&&
response
.
status
===
200
)
{
localStorage
.
removeItem
(
"user"
);
localStorage
.
removeItem
(
"token"
);
let
leftTime
=
new
Date
();
leftTime
.
setTime
(
leftTime
.
getSeconds
()
-
1
);
document
.
cookie
=
"ibzuaa-token=;expires="
+
leftTime
.
toUTCString
();
this
.
$router
.
push
({
name
:
"login"
});
}
})
.
catch
((
error
:
any
)
=>
{
console
.
error
(
error
);
});
}
public
handleSubmit
()
{
this
.
$emit
(
'itemClick'
,
this
.
predefinedType
);
/**
* 注册
*
* @type {string}
* @memberof AppLoginButton
*/
public
register
()
{
// todo
}
}
</
script
>
<
style
lang=
"less"
>
@import './app-login-button.less';
</
style
>
\ No newline at end of file
@import "./app-login-button.less";
</
style
>
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录