decision_balance_sheet.vue 1.6 KB

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