no message
This commit is contained in:
parent
86b3cbeb66
commit
3f2167868a
@ -74,6 +74,15 @@
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--查看修改文件-->
|
||||
<Drawer
|
||||
v-model="editShow"
|
||||
placement="bottom"
|
||||
height="94%"
|
||||
:mask-style="{backgroundColor:'rgba(0,0,0,0.7)'}">
|
||||
|
||||
</Drawer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -99,6 +108,9 @@ export default {
|
||||
],
|
||||
|
||||
files: [],
|
||||
|
||||
editShow: false,
|
||||
editInfo: {},
|
||||
}
|
||||
},
|
||||
|
||||
@ -215,6 +227,9 @@ export default {
|
||||
if (item.type == 'folder') {
|
||||
this.searchKey = '';
|
||||
this.pid = item.id;
|
||||
} else {
|
||||
this.editShow = true;
|
||||
this.editInfo = item;
|
||||
}
|
||||
},
|
||||
|
||||
|
40
resources/assets/sass/pages/common.scss
vendored
40
resources/assets/sass/pages/common.scss
vendored
@ -246,21 +246,35 @@ body {
|
||||
}
|
||||
}
|
||||
}
|
||||
.ivu-drawer-content {
|
||||
border-radius: 18px 0 0 18px;
|
||||
.ivu-drawer-header {
|
||||
padding-top: 16px;
|
||||
padding-bottom: 6px;
|
||||
border-bottom: 1px solid transparent;
|
||||
.ivu-drawer-header-inner {
|
||||
font-size: 18px;
|
||||
padding: 0 4px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
.ivu-drawer-right {
|
||||
.ivu-drawer-content {
|
||||
border-radius: 18px 0 0 18px;
|
||||
.ivu-drawer-header {
|
||||
padding-top: 16px;
|
||||
padding-bottom: 6px;
|
||||
border-bottom: 1px solid transparent;
|
||||
.ivu-drawer-header-inner {
|
||||
font-size: 18px;
|
||||
padding: 0 4px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
}
|
||||
}
|
||||
.ivu-drawer-body {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
}
|
||||
.ivu-drawer-body {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
.ivu-drawer-bottom {
|
||||
.ivu-drawer-content {
|
||||
border-radius: 18px 18px 0 0;
|
||||
.ivu-drawer-close {
|
||||
top: -42px;
|
||||
.ivu-icon {
|
||||
font-size: 40px;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user