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.
17 lines
577 B
17 lines
577 B
4 years ago
|
<template>
|
||
|
<div class="bg-white p-2 my-4 rounded-md h-8" v-show="!isFinance">
|
||
|
<button class="my-2 mx-8 h-6 text-xs bg-blue-500 text-white leading-6">资源管理</button>
|
||
|
</div>
|
||
|
|
||
|
<div class="bg-white p-2 my-4 rounded-md h-8 flex" v-show="isFinance">
|
||
|
<button class="my-2 ml-8 mr-4 h-6 text-xs bg-blue-500 text-white leading-6 w-full">财务审批</button>
|
||
|
<button class="my-2 mr-8 h-6 text-xs bg-blue-500 text-white leading-6 w-full">财务统计</button>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref } from 'vue';
|
||
|
|
||
|
const isFinance = ref(true);
|
||
|
</script>
|