修复bug,更新代码,优化键盘监听和订单统计
This commit is contained in:
parent
becc875a4c
commit
316de611c7
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"path": {
|
||||
"root": "@=src",
|
||||
"api": "src/api",
|
||||
"request": "../utils/request"
|
||||
},
|
||||
"api": []
|
||||
}
|
|
@ -97,13 +97,16 @@ onUnmounted(()=>{
|
|||
width: 100vw;
|
||||
height: 100vh;
|
||||
background-color: #001529;
|
||||
|
||||
.el-header {
|
||||
color: #fff;
|
||||
height: 4rem;
|
||||
}
|
||||
|
||||
.el-aside {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.el-main {
|
||||
background-color: #f5f5f5;
|
||||
width: calc(100vw - 6.25rem);
|
||||
|
|
|
@ -70,6 +70,12 @@ const list = ref([
|
|||
ico: "FullScreen",
|
||||
count: 0,
|
||||
},
|
||||
{
|
||||
name: "statistics",
|
||||
title: "盈收统计 ",
|
||||
ico: "TrendCharts",
|
||||
count: 0,
|
||||
},
|
||||
// { name: "purchaseOrder", title: "采购订单", ico: "Van", count: 0 },
|
||||
// { name: "orderCount", title: "订单统计", ico: "DocumentRemove", count: 0 },
|
||||
// { name: "wallet", title: "余额提现", ico: "Wallet", count: 0 },
|
||||
|
|
|
@ -53,6 +53,12 @@ const routes = [
|
|||
meta: { title: '订单核销' },
|
||||
component: () => import('@/views/convert/index.vue'),
|
||||
},
|
||||
{
|
||||
path: '/statistics',
|
||||
name: 'statistics',
|
||||
meta: { title: '盈收统计' },
|
||||
component: () => import('@/views/statistics/index.vue'),
|
||||
},
|
||||
{
|
||||
path: '/test',
|
||||
name: 'test',
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
<template>
|
||||
我是统计
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ref, reactive } from "vue"
|
||||
|
||||
</script>
|
Loading…
Reference in New Issue