decision_balance_sheet.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <div class="decision_balance_sheet">
  3. <head-component :headinfo=headinfo></head-component>
  4. <div class="page-content">
  5. <div class="page-box">
  6. </div>
  7. <drag_component></drag_component>
  8. </div>
  9. </div>
  10. </template>
  11. <script setup>
  12. import headComponent from '@/views/xjc-integratedmachine/components/head_component.vue'
  13. import {onMounted, reactive} from "vue";
  14. import drag_component from "@/views/xjc-integratedmachine/components/drag_component.vue";
  15. const headinfo = ref({})
  16. function setHeadinfo(){
  17. headinfo.value = {
  18. title: '决策平衡单',
  19. user: {
  20. avatar: '头像路径',
  21. nickName: '张三'
  22. },
  23. backUrl : '/xjc-integratedmachine/wakeup/career_recognize/index'
  24. }
  25. }
  26. onMounted(() => {
  27. setHeadinfo()
  28. })
  29. </script>
  30. <style scoped lang="scss">
  31. p{
  32. margin: 0;
  33. padding: 0;
  34. }
  35. .decision_balance_sheet{
  36. background: url('@/assets/images/decision/common/background.png') no-repeat;
  37. background-size: 1920px 1080px;
  38. z-index:10;
  39. width: 100%;
  40. height: 1080px;
  41. .page-content {
  42. width: 100%;
  43. height: 980px;
  44. position: absolute;
  45. top: 100px;
  46. bottom: 0;
  47. }
  48. .page-box{
  49. width: 1832px;
  50. height: 910px;
  51. overflow: auto;
  52. margin: 13px auto 0;
  53. padding-top: 25px;
  54. position: relative;
  55. overflow: auto;
  56. }
  57. }
  58. </style>