|
@@ -0,0 +1,110 @@
|
|
|
+<template>
|
|
|
+ <div class="newContainer">
|
|
|
+ <div class="newContainer-top">
|
|
|
+ <div class="newContainer-top-title flex">
|
|
|
+ <div class="manageTitle">容器基本信息</div>
|
|
|
+ <el-button size="small" type="primary">历史记录</el-button>
|
|
|
+ </div>
|
|
|
+ <div class="newContainer-top-table">
|
|
|
+ <scroll-pane ref="scrollPane" class="tags-view-wrapper">
|
|
|
+ <div v-for="(item,index) in detailsArr" class="tags-view-item" :key="index">{{ item.luggageNum }}</div>
|
|
|
+ </scroll-pane>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="newContainer-bootom">
|
|
|
+ <div class="newContainer-bootom-title flex">
|
|
|
+ <div class="manageTitle">容器基本信息</div>
|
|
|
+ <div>2</div>
|
|
|
+ </div>
|
|
|
+ <div class="newContainer-bootom-table">
|
|
|
+ <Table :tableTag="tabObj" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import pf from '@/layout/mixin/publicFunc'
|
|
|
+import Table from '@/views/newQuery/components/table.vue'
|
|
|
+import ScrollPane from "@/layout/components/TagsView/ScrollPane.vue"
|
|
|
+export default {
|
|
|
+ name: 'NewContainer',
|
|
|
+ mixins: [pf],
|
|
|
+ components: {
|
|
|
+ ScrollPane,
|
|
|
+ Table
|
|
|
+ },
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ detailsArr: [],
|
|
|
+ query: '',
|
|
|
+ tabObj: ''
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created () {
|
|
|
+ const { query } = this.$route
|
|
|
+ this.query = query
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ this.tabObj = this.query
|
|
|
+ this.getTableInfo()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ async getTableInfo () {
|
|
|
+ const { code, returnData } = await this.getQueryListAuth(this.TqueryId, this.query, 1, 999, this.TauthId)
|
|
|
+ console.log(returnData)
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.newContainer {
|
|
|
+ height: calc(100vh - 80px);
|
|
|
+ padding: 24px;
|
|
|
+ .tags-view-wrapper {
|
|
|
+ width: calc(100%);
|
|
|
+ ::v-deep .el-scrollbar__wrap {
|
|
|
+ // margin-top: 8.5px;
|
|
|
+ }
|
|
|
+ .tags-view-item {
|
|
|
+ display: inline-block;
|
|
|
+ position: relative;
|
|
|
+ cursor: pointer;
|
|
|
+ height: 32px;
|
|
|
+ line-height: 32px;
|
|
|
+ // border: 1px solid #767eba;
|
|
|
+ // border-radius: 4px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #aaacb2;
|
|
|
+ margin-right: 100px;
|
|
|
+ &:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+ &.active {
|
|
|
+ color: #fff;
|
|
|
+ position: relative;
|
|
|
+ &::after {
|
|
|
+ position: absolute;
|
|
|
+ content: "";
|
|
|
+ width: 100%;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ height: 3px;
|
|
|
+ background: #2d67e3;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &-bootom {
|
|
|
+ margin-top: 24px;
|
|
|
+ height: calc(100% - 150px);
|
|
|
+ &-table {
|
|
|
+ margin-top: 24px;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|