123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <template>
- <div class="my-page">
- <evaluation-title class="mt10 mb20 box-card"
- navBackButton
- title="我的选科方案"
- :navAction="back"
- ></evaluation-title>
- <select-subject-report></select-subject-report>
- </div>
- </template>
- <script>
- import SelectSubjectReport from './components/select-subjec-report'
- export default {
- components: {
- SelectSubjectReport
- },
- data() {
- return {
- dataList: [],
- activeName: 'first',
- rows:[],
- };
- },
- created() {
- },
- methods: {
- back() {
- this.$router.go(-1)
- }
- },
- };
- </script>
- <style scoped>
- .tabs-min-height{
- min-height: calc(100vh - 124px - 58px);
- }
- .my-page{
- padding: 0 100px;
- }
- .el-breadcrumb {
- font-size: 16px !important;
- }
- .my-box-title {
- color: #4c4c4c;
- font-size: 24px;
- text-align: center;
- margin-top: 100px;
- }
- .major-card-list {
- margin-top: 30px;
- display: flex;
- flex-wrap: wrap;
- }
- .divide-equally-box {
- width: 33%;
- }
- .major-card-item {
- width: 320px;
- margin: 20px auto;
- background: rgba(255, 255, 255, 1);
- box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 10%);
- margin-top: 20px;
- }
- .major-card-title {
- text-align: center;
- background: #47c6a2;
- color: #fff;
- font-size: 24px;
- font-weight: 600;
- padding: 25px 0px;
- }
- .major-progress-box {
- padding: 40px 0 20px 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .major-progress-text {
- margin-top: 20px;
- }
- .bottom-box {
- height: 80px;
- width: 100%;
- position: relative;
- }
- .bottom-bar {
- position: absolute;
- right: 0;
- top: 25px;
- display: flex;
- align-items: center;
- padding: 8px 25px;
- background-color: #eeeeee;
- border-radius: 100px 0px 0px 100px;
- }
- .setdf,
- .el-icon-delete {
- cursor: pointer;
- }
- .setdf {
- color: #73a0fa;
- font-size: 14px;
- margin-right: 30px;
- }
- .el-icon-delete {
- color: #f62008;
- }
- </style>
|