myChoice.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <div class="my-page">
  3. <evaluation-title class="mt10 mb20 box-card"
  4. navBackButton
  5. title="我的选科方案"
  6. :navAction="back"
  7. ></evaluation-title>
  8. <select-subject-report></select-subject-report>
  9. </div>
  10. </template>
  11. <script>
  12. import SelectSubjectReport from './components/select-subjec-report'
  13. export default {
  14. components: {
  15. SelectSubjectReport
  16. },
  17. data() {
  18. return {
  19. dataList: [],
  20. activeName: 'first',
  21. rows:[],
  22. };
  23. },
  24. created() {
  25. },
  26. methods: {
  27. back() {
  28. this.$router.go(-1)
  29. }
  30. },
  31. };
  32. </script>
  33. <style scoped>
  34. .tabs-min-height{
  35. min-height: calc(100vh - 124px - 58px);
  36. }
  37. .my-page{
  38. padding: 0 100px;
  39. }
  40. .el-breadcrumb {
  41. font-size: 16px !important;
  42. }
  43. .my-box-title {
  44. color: #4c4c4c;
  45. font-size: 24px;
  46. text-align: center;
  47. margin-top: 100px;
  48. }
  49. .major-card-list {
  50. margin-top: 30px;
  51. display: flex;
  52. flex-wrap: wrap;
  53. }
  54. .divide-equally-box {
  55. width: 33%;
  56. }
  57. .major-card-item {
  58. width: 320px;
  59. margin: 20px auto;
  60. background: rgba(255, 255, 255, 1);
  61. box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 10%);
  62. margin-top: 20px;
  63. }
  64. .major-card-title {
  65. text-align: center;
  66. background: #47c6a2;
  67. color: #fff;
  68. font-size: 24px;
  69. font-weight: 600;
  70. padding: 25px 0px;
  71. }
  72. .major-progress-box {
  73. padding: 40px 0 20px 0;
  74. display: flex;
  75. flex-direction: column;
  76. align-items: center;
  77. }
  78. .major-progress-text {
  79. margin-top: 20px;
  80. }
  81. .bottom-box {
  82. height: 80px;
  83. width: 100%;
  84. position: relative;
  85. }
  86. .bottom-bar {
  87. position: absolute;
  88. right: 0;
  89. top: 25px;
  90. display: flex;
  91. align-items: center;
  92. padding: 8px 25px;
  93. background-color: #eeeeee;
  94. border-radius: 100px 0px 0px 100px;
  95. }
  96. .setdf,
  97. .el-icon-delete {
  98. cursor: pointer;
  99. }
  100. .setdf {
  101. color: #73a0fa;
  102. font-size: 14px;
  103. margin-right: 30px;
  104. }
  105. .el-icon-delete {
  106. color: #f62008;
  107. }
  108. </style>