|
@@ -0,0 +1,50 @@
|
|
|
|
+<template>
|
|
|
|
+ <div></div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import { } from "@/api/scan/request"
|
|
|
|
+import { mapGetters } from "vuex"
|
|
|
|
+export default {
|
|
|
|
+ components: {
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ computed: {
|
|
|
|
+ ...mapGetters("layout", ["projectId"])
|
|
|
|
+ },
|
|
|
|
+ props: {
|
|
|
|
+ id: String,
|
|
|
|
+ },
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ id: {
|
|
|
|
+ handler(newName, oldName) {
|
|
|
|
+ // this.page.pageNumber = 1
|
|
|
|
+ // this.getTableData()
|
|
|
|
+ },
|
|
|
|
+ immediate: true,
|
|
|
|
+ deep: true
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+</script>
|
|
|
|
+<style lang="less" scoped>
|
|
|
|
+.table-container {
|
|
|
|
+ height: 100%;
|
|
|
|
+ background: #fff;
|
|
|
|
+ .table-button{
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ margin-right: 15px;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</style>
|