You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
651 B
19 lines
651 B
4 years ago
|
<template>
|
||
|
<div class="flex justify-around">
|
||
|
<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" @click="openStatistical">终端UI配置</button>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
// DEBUG:打开财务审批详情页
|
||
|
function openAudit() {
|
||
|
uni.$ui.openDetail({ url: 'https://www.bilibili.com/', name: '个人账号管理' });
|
||
|
}
|
||
|
|
||
|
// DEBUG:打开财务统计详情页
|
||
|
function openStatistical() {
|
||
|
uni.$ui.openDetail({ url: 'https://v.qq.com/', name: '终端UI配置' });
|
||
|
}
|
||
|
</script>
|