Browse Source

[feat][生涯决策][决策平衡单]

hizhangling 1 month atrás
parent
commit
31ecafe711

src/assets/images/decision/background.png → src/assets/images/decision/common/background.png


+ 59 - 2
src/views/xjc-integratedmachine/decision/balance_sheet/decision_balance_sheet.vue

@@ -1,11 +1,68 @@
 <template>
-    选科决策平衡单
+    <div class="decision_balance_sheet">
+        <head-component :headinfo=headinfo></head-component>
+        <div class="page-content">
+            <div class="page-box">
+        
+            </div>
+            <drag_component></drag_component>
+        </div>
+    </div>
+
 </template>
 
 <script setup>
+    import headComponent from '@/views/xjc-integratedmachine/components/head_component.vue'
+    import {onMounted, reactive} from "vue";
+    import drag_component from "@/views/xjc-integratedmachine/components/drag_component.vue";
+    const headinfo = ref({})
+
+    function setHeadinfo(){
+        headinfo.value = {
+            title: '决策平衡单',
+            user: {
+                avatar: '头像路径',
+                nickName: '张三'
+            },
+            backUrl : '/xjc-integratedmachine/wakeup/career_recognize/index'
+        }
+    }
+
+    onMounted(() => {
+        setHeadinfo()
+    })
 
 </script>
 
-<style scoped>
+<style scoped lang="scss">
+    p{
+        margin: 0;
+        padding: 0;
+    }
+    .decision_balance_sheet{
+        background: url('@/assets/images/decision/common/background.png') no-repeat;
+        background-size: 1920px 1080px;
+        z-index:10;
+        width: 100%;
+        height: 1080px;
+        .page-content {
+            width: 100%;
+            height: 980px;
+            position: absolute;
+            top: 100px;
+            bottom: 0;
+        }
+        .page-box{
+            width: 1832px;
+            height: 910px;
+            overflow: auto;
+            margin: 13px auto 0;
+            padding-top: 25px;
+            position: relative;
+            overflow: auto;
+
+        }
+
+    }
 
 </style>

+ 1 - 1
src/views/xjc-integratedmachine/decision/process_diagram/process_diagram_selecting_subjects.vue

@@ -42,7 +42,7 @@
         padding: 0;
     }
     .process_diagram_selecting_subject{
-        background: url('@/assets/images/decision/background.png') no-repeat;
+        background: url('@/assets/images/decision/common/background.png') no-repeat;
         background-size: 1920px 1080px;
         z-index:10;
         width: 100%;