|
@@ -0,0 +1,78 @@
|
|
|
+<template>
|
|
|
+ <div class="pblCourse" v-loading="loading">
|
|
|
+ <div class="pc_left">
|
|
|
+ <div class="pc_l_top">
|
|
|
+ <procedureArea/>
|
|
|
+ </div>
|
|
|
+ <div class="pc_l_bottom">
|
|
|
+ <doWorkArea/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="pc_right">
|
|
|
+ <chatArea/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import chatArea from './component/chatArea'
|
|
|
+import doWorkArea from './component/doWorkArea'
|
|
|
+import procedureArea from './component/procedureArea'
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ chatArea,
|
|
|
+ doWorkArea,
|
|
|
+ procedureArea,
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ loading: false,
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+.pblCourse {
|
|
|
+ min-width: 1500px;
|
|
|
+ min-height: 800px;
|
|
|
+ width: 100%;
|
|
|
+ height: 100vh;
|
|
|
+ display: flex;
|
|
|
+ background-color: #f0f2f5;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.pc_left{
|
|
|
+ width: calc(100% - 500px - 20px);
|
|
|
+ margin-right: 20px;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.pc_l_top{
|
|
|
+ width: 100%;
|
|
|
+ height: 150px;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+.pc_l_bottom{
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100% - 150px - 15px);
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-top: 15px;
|
|
|
+}
|
|
|
+
|
|
|
+.pc_right{
|
|
|
+ width: 500px;
|
|
|
+ height: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
+
|
|
|
+</style>
|