123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <template>
- <!-- 教研工具 -->
- <div class="Textbook">
- <div class="top">
- <div class="title">
- <span class="text"> 教研工具</span>
- </div>
- </div>
- <div class="class_list">
- <div>
- <div
- style="background: #4ca6ee"
- @click="
- $router.push({
- path: '/TextAnalysis',
- })
- "
- >
- <img src="../../assets/teacherdev/jygj-1.png" alt="" />
- </div>
- <p>文本分析</p>
- </div>
- <div>
- <div
- style="background: #d86046"
- @click="
- $router.push({
- path: '/corpus/seekPage',
- })
- "
- >
- <img src="../../assets/teacherdev/jygj-2.png" alt="" />
- </div>
- <p>语料库词典</p>
- </div>
- <div>
- <div
- style="background: #c254cc"
- @click="
- $router.push({
- path: '/wordcard/table',
- })
- "
- >
- <img src="../../assets/teacherdev/jygj-3.png" alt="" />
- </div>
- <p>词句卡片</p>
- </div>
- <!-- <div>
- <div
- style="background: #54cc92"
- @click="
- $router.push({
- path: '/CalligraphyMaster/table',
- })
- "
- >
- <img src="../../assets/teacherdev/jygj-4.png" alt="" />
- </div>
- <p>书法大师</p>
- </div> -->
- </div>
- </div>
- </template>
- <script>
- export default {
- props: ["classList", "type"],
- data() {
- return {};
- },
- methods: {},
- created() {},
- };
- </script>
- <style lang="scss" scoped>
- .Textbook {
- .top {
- width: 1200px;
- margin: 0 auto;
- display: flex;
- justify-content: space-between;
- .title {
- width: 100%;
- height: 90px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .text {
- position: relative;
- font-size: 24px;
- font-weight: bold;
- }
- .more {
- cursor: pointer;
- font-size: 16px;
- display: flex;
- align-items: center;
- span {
- opacity: 0.4;
- }
- img {
- width: 25px;
- height: 19px;
- }
- }
- }
- }
- .class_list {
- width: 1200px;
- box-sizing: border-box;
- margin: 0 auto;
- background: #fff;
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- padding: 40px 56px;
- > div {
- // width: 88px;
- height: 124px;
- cursor: pointer;
- margin-right: 42px;
- div {
- width: 88px;
- height: 88px;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 8px;
- margin: 0 auto;
- img {
- width: 48px;
- height: 48px;
- }
- }
- p {
- margin: 0;
- margin-top: 10px;
- font-weight: 400;
- font-size: 20px;
- line-height: 26px;
- }
- }
- }
- }
- </style>
|