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;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
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 {
|
.ivu-drawer-content {
|
||||||
border-radius: 18px 0 0 18px;
|
border-radius: 18px 0 0 18px;
|
||||||
.ivu-drawer-header {
|
.ivu-drawer-header {
|
||||||
@ -263,6 +264,19 @@ body {
|
|||||||
padding: 10px 20px;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*[hidden="hidden"] {
|
*[hidden="hidden"] {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user