operationModel.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="container">
  3. <!-- 建议放在外层 -->
  4. <u-navbar
  5. title="操作记录"
  6. @leftClick="devicemenuShow"
  7. :safeAreaInsetTop="false"
  8. >
  9. <view class="u-nav-slot" slot="left">
  10. <u-icon name="list" size="20"> </u-icon>
  11. </view>
  12. </u-navbar>
  13. <view v-show="menushow" class="menupage">
  14. <DeviceMenu @menuClick="menuClick"></DeviceMenu>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. import DeviceMenu from "./devicemenu/devicemenu.vue";
  20. import api from "@/api/api";
  21. export default {
  22. data() {
  23. return {
  24. menushow: false,
  25. TabCur: "gate",
  26. curlist: [],
  27. deviceList: {},
  28. scrollLeft: 0,
  29. currentTab: 0,
  30. colums: {},
  31. };
  32. },
  33. components: {
  34. DeviceMenu,
  35. },
  36. props: ["showColum"],
  37. watch: {
  38. showColum(data) {
  39. this.colums = data;
  40. console.log(this.colums);
  41. },
  42. },
  43. created() {
  44. this.colums = this.showColum;
  45. },
  46. mounted() {},
  47. methods: {},
  48. destroyed() {},
  49. };
  50. </script>
  51. <style>
  52. .top-nav {
  53. height: 100rpx;
  54. line-height: 100rpx;
  55. background-color: #2aa9f3;
  56. color: #ddaaaa;
  57. }
  58. .top-nav2 {
  59. background-color: #ffffff;
  60. }
  61. </style>