fxjg.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <div class="fxjg">
  3. 分析结果sdskdhsjkhdsdk
  4. <div>
  5. dhsaudhaskdhksadhsa
  6. <span class="xmmc">
  7. 项目名称:
  8. <span class="text">{{ rzMc }}</span>
  9. </span>
  10. <div
  11. class="eicon"
  12. :class="isshowAll ? 'eyes' : 'close_eyes'"
  13. @click="allChange('all')"
  14. ></div>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {};
  22. },
  23. };
  24. </script>
  25. <style lang="scss" scoped>
  26. .fxjg{
  27. // height: calc(100vh - 108px);
  28. // height: 49vh;
  29. height: 100%;
  30. min-width: 300px;
  31. box-sizing: border-box;
  32. padding: 0px 10px;
  33. .xmmc {
  34. width: calc(100% - 60px);
  35. display: inline-block;
  36. }
  37. .blue {
  38. color: #409eff;
  39. }
  40. .title {
  41. button {
  42. padding: 0;
  43. float: right;
  44. margin-right: 5px;
  45. min-height: unset;
  46. }
  47. .export {
  48. display: inline-block;
  49. background-color: #0f7ac8;
  50. text-align: center;
  51. width: 95px;
  52. height: 28px;
  53. line-height: 28px;
  54. float: right;
  55. }
  56. }
  57. .el-form-item {
  58. margin-bottom: 0;
  59. }
  60. .xz-btn {
  61. width: 100%;
  62. position: absolute;
  63. height: 55px;
  64. z-index: 2;
  65. bottom: 0;
  66. right: 0;
  67. display: flex;
  68. align-items: center;
  69. }
  70. }
  71. </style>