1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

人员进出记录、大门管理 待添加

This commit is contained in:
2023-04-14 01:01:46 +08:00
parent fb10c7e666
commit 84920d28d1
6 changed files with 99 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
<template>
<div class="container">
<manageList :list-func="shopGoodApi.getGoodList" :add-func="shopGoodApi.editGood" :edit-func="shopGoodApi.editGood"
:delete-func="shopGoodApi.deleteGood" :export-func="shopGoodApi.exportGoodList" edit-permiss="shop-good-setting" />
</div>
</template>
<script setup lang="ts">
import manageList from '../components/manage-list.vue';
import * as shopGoodApi from '../api/shop-good';
</script>

View File

@@ -0,0 +1,11 @@
<template>
<div class="container">
<manageList :list-func="reportApi.getReportList" :export-func="reportApi.exportReportList"
edit-permiss="privilege-user-setting" />
</div>
</template>
<script setup lang="ts">
import manageList from '../components/manage-list.vue';
import * as reportApi from '../api/report';
</script>