no message
This commit is contained in:
parent
86b3cbeb66
commit
3f2167868a
@ -74,6 +74,15 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!--查看修改文件-->
|
||||||
|
<Drawer
|
||||||
|
v-model="editShow"
|
||||||
|
placement="bottom"
|
||||||
|
height="94%"
|
||||||
|
:mask-style="{backgroundColor:'rgba(0,0,0,0.7)'}">
|
||||||
|
|
||||||
|
</Drawer>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -99,6 +108,9 @@ export default {
|
|||||||
],
|
],
|
||||||
|
|
||||||
files: [],
|
files: [],
|
||||||
|
|
||||||
|
editShow: false,
|
||||||
|
editInfo: {},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -215,6 +227,9 @@ export default {
|
|||||||
if (item.type == 'folder') {
|
if (item.type == 'folder') {
|
||||||
this.searchKey = '';
|
this.searchKey = '';
|
||||||
this.pid = item.id;
|
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 {
|
.ivu-drawer-right {
|
||||||
border-radius: 18px 0 0 18px;
|
.ivu-drawer-content {
|
||||||
.ivu-drawer-header {
|
border-radius: 18px 0 0 18px;
|
||||||
padding-top: 16px;
|
.ivu-drawer-header {
|
||||||
padding-bottom: 6px;
|
padding-top: 16px;
|
||||||
border-bottom: 1px solid transparent;
|
padding-bottom: 6px;
|
||||||
.ivu-drawer-header-inner {
|
border-bottom: 1px solid transparent;
|
||||||
font-size: 18px;
|
.ivu-drawer-header-inner {
|
||||||
padding: 0 4px;
|
font-size: 18px;
|
||||||
height: 32px;
|
padding: 0 4px;
|
||||||
line-height: 32px;
|
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