parent
755a4a1579
commit
decb8439df
|
After Width: | Height: | Size: 3.4 MiB |
|
After Width: | Height: | Size: 9.9 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 6.4 KiB |
@ -0,0 +1,72 @@
|
|||||||
|
<template>
|
||||||
|
<div class="department">
|
||||||
|
<div class="container">
|
||||||
|
<div class="title">
|
||||||
|
<div class="title__text">所有部门</div>
|
||||||
|
<el-input placeholder="请输入内容" v-model="input" class="title__input">
|
||||||
|
<template #append>
|
||||||
|
<el-button class="title__input--btn" icon="el-icon-search"></el-button>
|
||||||
|
</template>
|
||||||
|
</el-input>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
input: ''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {},
|
||||||
|
computed: {},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.department {
|
||||||
|
background: #f8f8f8;
|
||||||
|
|
||||||
|
padding: 31px 18.75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 2px;
|
||||||
|
box-shadow: 0 0 15px 0 rgba(130,127,126,0.1);
|
||||||
|
|
||||||
|
padding: 24px 23px 59px 22px;
|
||||||
|
.title {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
&__text {
|
||||||
|
|
||||||
|
padding-left: 5px;
|
||||||
|
}
|
||||||
|
&__input {
|
||||||
|
width: 207px;
|
||||||
|
|
||||||
|
& ::v-deep .el-input__inner {
|
||||||
|
height: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&--btn {
|
||||||
|
width: 48px;
|
||||||
|
height: 35px;
|
||||||
|
background: #3788D6;
|
||||||
|
color: #fff;
|
||||||
|
border: none;
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Loading…
Reference in new issue