34 lines
1.2 KiB
Vue
34 lines
1.2 KiB
Vue
<template>
|
|
<view>
|
|
<view class="flex">
|
|
<leftcontent :list="tabbrarr" @navurl="navurl"></leftcontent>
|
|
<material></material>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, onMounted, onBeforeUnmount, nextTick } from 'vue';
|
|
import leftcontent from "@/pages/NursingNew/component/leftcontent/leftcontent.vue"
|
|
import material from "@/pages/procurement/material.vue";
|
|
const tabbrarr = ref([
|
|
{name:'首页',url:'/static/shouye/ck/h0.png',urls:'/static/shouye/ck/h1.png'},
|
|
{name:'采购',url:'/static/shouye/ck/c0.png',urls:'/static/shouye/ck/c1.png'},
|
|
{name:'拣货',url:'/static/shouye/ck/j0.png',urls:'/static/shouye/ck/j1.png'},
|
|
{name:'完结',url:'/static/shouye/ck/w0.png',urls:'/static/shouye/ck/w1.png'},
|
|
{name:'请领',url:'/static/shouye/ck/q0.png',urls:'/static/shouye/ck/q1.png'},
|
|
{name:'退货',url:'/static/shouye/ck/t0.png',urls:'/static/shouye/ck/t1.png'},
|
|
{name:'盘点',url:'/static/shouye/ck/p0.png',urls:'/static/shouye/ck/p1.png'},
|
|
{name:'返回',url:'/static/shouye/sy/f0.png',urls:'/static/shouye/sy/f1.png'},
|
|
])
|
|
const navurl =(e)=>{
|
|
// changeMenu(e)
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.flex{
|
|
display: flex;
|
|
}
|
|
</style>
|