wip: 临时提交

This commit is contained in:
Ray.Hao
2025-07-27 11:49:43 +08:00
parent 7fa0758b19
commit 043f5b0ec4
11 changed files with 173 additions and 116 deletions

View File

@@ -1,25 +1,21 @@
<template>
<view class="app-container">
<wd-navbar title="设置" left-arrow @click-left="handleBack" />
<wd-status-tip type="search" tip="建设中..." />
</view>
</template>
<script setup lang="ts"></script>
<route lang="json">
{
"name": "work",
"style": {
"navigationBarTitleText": "工作台"
},
"meta": {
"requireAuth": true,
"title": "需要登录的页面"
"requireAuth": true
}
}
</route>
<script setup lang="ts">
const handleBack = () => {
uni.navigateBack();
};
</script>
<style lang="scss"></style>