feat(work): 添加系统配置功能- 在工作台页面增加系统配置入口

- 新增系统配置页面路径和样式
This commit is contained in:
Ky10
2024-11-14 18:32:28 +08:00
parent 34f230e2ed
commit e5525dfd62
2 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<template>
<view class="work" />
</template>
<script lang="ts">
export default {
data() {
return {};
},
};
</script>
<style lang="scss" scoped>
/* stylelint-disable selector-type-no-unknown */
page {
background: #f8f8f8;
}
/* stylelint-enable selector-type-no-unknown */
.work {
padding: 40rpx 0;
}
</style>