|
|
@@ -1,14 +1,7 @@
|
|
|
<!-- -->
|
|
|
<template>
|
|
|
<div class="holding0_audit">
|
|
|
- <div class="left">
|
|
|
- <ul>
|
|
|
- <li v-for="(item, index) in tabList" :key="index" @click="skip(index)">
|
|
|
- <i class="el-icon-edit"></i>
|
|
|
- {{ item }}
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
+ <TabList :ind='1'/>
|
|
|
<div class="right">
|
|
|
<div class="top">
|
|
|
<el-breadcrumb separator="/">
|
|
|
@@ -106,24 +99,17 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import TabList from '@/components/tabLeft.vue'
|
|
|
import Holding0AuditDia from './holding0_audit_Dia.vue'
|
|
|
export default {
|
|
|
name: 'holding0_audit',
|
|
|
// import引入的组件需要注入到对象中才能使用
|
|
|
- components: { Holding0AuditDia },
|
|
|
+ components: { Holding0AuditDia, TabList },
|
|
|
data () {
|
|
|
// 这里存放数据
|
|
|
return {
|
|
|
// 点击查看显示弹窗
|
|
|
isShow: false,
|
|
|
- tabList: [
|
|
|
- '藏品登记',
|
|
|
- '入库管理',
|
|
|
- '出库管理',
|
|
|
- '藏品总账',
|
|
|
- '藏品盘核',
|
|
|
- '藏品注销'
|
|
|
- ],
|
|
|
fromData: {
|
|
|
textarea: '',
|
|
|
result: ''
|
|
|
@@ -159,9 +145,7 @@ export default {
|
|
|
watch: {},
|
|
|
// 方法集合
|
|
|
methods: {
|
|
|
- skip (index) {
|
|
|
- this.$router.push(`/layout/holding${index}`).catch(() => {})
|
|
|
- }
|
|
|
+
|
|
|
},
|
|
|
// 生命周期 - 创建完成(可以访问当前this实例)
|
|
|
created () {},
|
|
|
@@ -184,29 +168,6 @@ export default {
|
|
|
}
|
|
|
|
|
|
display: flex;
|
|
|
- .left {
|
|
|
- width: 220px;
|
|
|
- min-width: 130px;
|
|
|
- height: 868px;
|
|
|
- background-color: #fff;
|
|
|
- box-shadow: 1px 1px 10px 1px;
|
|
|
- ul {
|
|
|
- li:nth-of-type(2) {
|
|
|
- background-color: #e6f7ff;
|
|
|
- }
|
|
|
- li {
|
|
|
- cursor: pointer;
|
|
|
- color: black;
|
|
|
- font-size: 16px;
|
|
|
- height: 60px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- i {
|
|
|
- margin: 0 18px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
.right {
|
|
|
width: 100%;
|
|
|
display: flex;
|