feat:v1.4前端更新

This commit is contained in:
超凡
2025-06-24 14:43:09 +08:00
parent 0268aa5033
commit 35fec82e4a
1026 changed files with 118424 additions and 56490 deletions

View File

@@ -8,6 +8,6 @@
<script>
export default {
name: 'ErrorTestA'
}
name: 'ErrorTestA',
};
</script>

View File

@@ -5,7 +5,7 @@
<script>
export default {
created() {
this.b = b // eslint-disable-line
}
}
this.b = b; // eslint-disable-line
},
};
</script>

View File

@@ -4,29 +4,35 @@
<ErrorB />
<h3>Please click the bug icon in the upper right corner</h3>
<aside>
Now the management system are basically the form of the spa, it enhances the user experience, but it also increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.
<a target="_blank" class="link-type" href="https://panjiachen.github.io/vue-element-admin-site/guide/advanced/error.html">
Now the management system are basically the form of the spa, it enhances the user experience, but it also
increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately
Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.
<a
target="_blank"
class="link-type"
href="https://panjiachen.github.io/vue-element-admin-site/guide/advanced/error.html"
>
Document introduction
</a>
</aside>
<a href="#">
<img src="https://wpimg.wallstcn.com/360e4842-4db5-42d0-b078-f9a84a825546.gif">
<img src="https://wpimg.wallstcn.com/360e4842-4db5-42d0-b078-f9a84a825546.gif" />
</a>
</div>
</template>
<script>
import ErrorA from './components/ErrorTestA'
import ErrorB from './components/ErrorTestB'
import ErrorA from './components/ErrorTestA';
import ErrorB from './components/ErrorTestB';
export default {
name: 'ErrorLog',
components: { ErrorA, ErrorB }
}
components: { ErrorA, ErrorB },
};
</script>
<style scoped>
.errPage-container {
padding: 30px;
}
.errPage-container {
padding: 30px;
}
</style>