123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <div class="tp_body">
- <div class="tp_left">
- <infoA :userid="suid" :oid="oid" :org="org"></infoA>
- <panelA :userid="suid" :oid="oid" :org="org"></panelA>
- </div>
- <div class="tp_right">
- <testA :userid="suid" :oid="oid" :org="org"></testA>
- </div>
- </div>
- </template>
- <script>
- import infoA from "./info/index.vue";
- import panelA from "./panel/index.vue";
- import testA from "./test/index.vue";
- export default {
- components: {
- infoA,
- panelA,
- testA,
- },
- data() {
- return {
- userid: this.$route.query.userid,
- oid: this.$route.query.oid,
- org: this.$route.query.org,
- cid: this.$route.query.cid,
- suid: this.$route.query.suid,
- role: this.$route.query.role,
- };
- },
- methods: {},
- };
- </script>
- <style scoped>
- .tp_body {
- width: 100%;
- height: 100%;
- min-height: 820px;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 20px;
- border-radius: 5px;
- box-sizing: border-box;
- }
- .tp_left {
- width: 230px;
- height: 100%;
- }
- .tp_right {
- width: calc(100% - 230px - 10px);
- margin: 0 0 0 10px;
- height: 100%;
- }
- </style>
|