| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!-- 学习课程 -->
- <template>
- <div class="learningCourse">
- <div class="page-container-top-max-big-box">
- <p class="top-1-p">开始学习</p>
- <p class="top-2-p" @click="backPage()">返回</p>
- </div>
- <div class="content-box scrollbar-box">
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'index',
- data() {
- return {
- }
- },
- created() {
- },
- mounted() {
- },
- methods: {
- /*
- this.$router.push({
- name: 'Detail',
- params: {
- id: 1,
- title: '消息标题'
- }
- })
- this.$route.params.title
- */
- //返回
- backPage() {
- this.$router.back()
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .learningCourse {
- flex:1;
- display: flex;
- flex-direction: column;
- background:#FFFFFF;
- border-radius:10px;
- overflow: hidden;
- padding:0;
- box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.1);
- margin:10px;
- }
- </style>
|