13 changed files with 190 additions and 143 deletions
@ -0,0 +1,5 @@ |
|||||
|
<template> |
||||
|
<div class="404">404</div> |
||||
|
</template> |
||||
|
|
||||
|
<script setup></script> |
||||
@ -1,8 +1,18 @@ |
|||||
<template> |
<template> |
||||
<div class="flex justify-around"> |
<div class="flex justify-around"> |
||||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx">财务审批</button> |
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx" @click="openAudit">财务审批</button> |
||||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx">财务统计</button> |
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 250rpx" @click="openStatistical">财务统计</button> |
||||
</div> |
</div> |
||||
</template> |
</template> |
||||
|
|
||||
<script setup></script> |
<script setup> |
||||
|
// DEBUG:打开财务审批详情页 |
||||
|
function openAudit() { |
||||
|
uni.$ui.openDetail({ url: 'https://www.taobao.com', name: '财务审批' }); |
||||
|
} |
||||
|
|
||||
|
// DEBUG:打开财务统计详情页 |
||||
|
function openStatistical() { |
||||
|
uni.$ui.openDetail({ url: 'https://www.taobao.com', name: '财务统计' }); |
||||
|
} |
||||
|
</script> |
||||
|
|||||
@ -1,6 +1,11 @@ |
|||||
<!-- 资源管理 --> |
<!-- 资源管理 --> |
||||
<template> |
<template> |
||||
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 500rpx">资源管理</button> |
<button class="text-xs bg-blue-500 text-white leading-6" style="width: 500rpx" @click="openSourceManage">资源管理</button> |
||||
</template> |
</template> |
||||
|
|
||||
<script setup></script> |
<script setup> |
||||
|
function openSourceManage() { |
||||
|
// DEBUG: 假数据 换成财务条 资源管理的地址 |
||||
|
uni.$ui.openDetail({ url: 'http://m.jd.com', name: '资源管理' }); |
||||
|
} |
||||
|
</script> |
||||
|
|||||
Loading…
Reference in new issue