@@ -1,6 +1,11 @@
<template>
<div id="isleave">
- <p>退出提示</p>
+ <van-row>
+ <van-col span="24" class="isleave">
+ <p><van-icon name="warning-o" /></p>
+ <p>您已退出,无需使用本系统!</p>
+ </van-col>
+ </van-row>
</div>
</template>
@@ -27,4 +32,21 @@ export default {
};
</script>
-<style lang="less" scoped></style>
+<style lang="less" scoped>
+p {
+ padding: 0;
+ margin: 0;
+}
+.isleave {
+ padding: 10% 0;
+ text-align: center;
+ p {
+ font-size: 25px;
+ margin: 50px 0;
+ .van-icon {
+ font-size: 90px;
+ color: #ffa500;
+ }
+</style>