初始化
This commit is contained in:
66
frontend/packages/BigScreenDesign/BtnLoading/index.vue
Normal file
66
frontend/packages/BigScreenDesign/BtnLoading/index.vue
Normal file
@@ -0,0 +1,66 @@
|
||||
<template>
|
||||
<div
|
||||
class="head-btn"
|
||||
:class="{
|
||||
'head-btn-disabled': disabled
|
||||
}"
|
||||
@click="$emit('click')"
|
||||
>
|
||||
<slot />
|
||||
|
||||
<i
|
||||
v-if="loading"
|
||||
class="el-icon el-icon-loading"
|
||||
style="padding-left: 4px;"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
loading: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
click (e) {
|
||||
e.preventDefault()
|
||||
if (!this.loading) {
|
||||
this.$emit('click')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.head-btn {
|
||||
display: flex;
|
||||
background-color: #303640;
|
||||
cursor: pointer;
|
||||
width: auto;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-right: 4px;
|
||||
padding: 4px 10px;
|
||||
font-size: 12px;
|
||||
|
||||
&:hover {
|
||||
background-color: #414750;
|
||||
}
|
||||
|
||||
&-disabled {
|
||||
cursor: not-allowed;
|
||||
background-color: #303640;
|
||||
color: #999;
|
||||
&:hover {
|
||||
background-color: #303640;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user