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;
|
||||
}
|
||||
},
|
||||
|
||||
|
14
resources/assets/sass/pages/common.scss
vendored
14
resources/assets/sass/pages/common.scss
vendored
@ -246,6 +246,7 @@ body {
|
||||
}
|
||||
}
|
||||
}
|
||||
.ivu-drawer-right {
|
||||
.ivu-drawer-content {
|
||||
border-radius: 18px 0 0 18px;
|
||||
.ivu-drawer-header {
|
||||
@ -264,6 +265,19 @@ body {
|
||||
}
|
||||
}
|
||||
}
|
||||
.ivu-drawer-bottom {
|
||||
.ivu-drawer-content {
|
||||
border-radius: 18px 18px 0 0;
|
||||
.ivu-drawer-close {
|
||||
top: -42px;
|
||||
.ivu-icon {
|
||||
font-size: 40px;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
*[hidden="hidden"] {
|
||||
display: none !important;
|
||||
|
Loading…
x
Reference in New Issue
Block a user