12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <template>
- <view class="container">
- <!-- 建议放在外层 -->
- <u-navbar
- title="操作记录"
- @leftClick="devicemenuShow"
- :safeAreaInsetTop="false"
- >
- <view class="u-nav-slot" slot="left">
- <u-icon name="list" size="20"> </u-icon>
- </view>
- </u-navbar>
- <view v-show="menushow" class="menupage">
- <DeviceMenu @menuClick="menuClick"></DeviceMenu>
- </view>
- </view>
- </template>
- <script>
- import DeviceMenu from "./devicemenu/devicemenu.vue";
- import api from "@/api/api";
- export default {
- data() {
- return {
- menushow: false,
- TabCur: "gate",
- curlist: [],
- deviceList: {},
- scrollLeft: 0,
- currentTab: 0,
- colums: {},
- };
- },
- components: {
- DeviceMenu,
- },
- props: ["showColum"],
- watch: {
- showColum(data) {
- this.colums = data;
- console.log(this.colums);
- },
- },
- created() {
- this.colums = this.showColum;
- },
- mounted() {},
- methods: {},
- destroyed() {},
- };
- </script>
- <style>
- .top-nav {
- height: 100rpx;
- line-height: 100rpx;
- background-color: #2aa9f3;
- color: #ddaaaa;
- }
- .top-nav2 {
- background-color: #ffffff;
- }
- </style>
|