zhongshujie
2025-04-07 66c075bd8f9f060540eb69f31115c8a5716e9071
src/views/achievements/index.vue
@@ -67,7 +67,8 @@
            </li>
            <li class="left-main" v-if="annual.isDisplay">
              <div class="annual-main" v-for="(item, index) in annual.list" :key="index">
                <el-checkbox class="el-checkbox" v-model="item.checked" :title="item.years">{{ item.years }}</el-checkbox>
                <el-checkbox class="el-checkbox" v-model="item.checked" :title="item.years">{{ item.years
                }}</el-checkbox>
                <span class="">{{ item.num }}</span>
              </div>
              <p class="annual-footer" v-if="annual.list && annual.list.length > 5">展开</p>
@@ -112,7 +113,17 @@
          </ul>
        </div>
        <div class="content-right">
          <!-- title部分 -->
          <ul class="right-header">
            <li v-for="(item, index) in associationList" :key="index">
              <p>{{ item.type }} : {{ item.content }}</p>
              <img :src="errorIcon" alt="">
            </li>
          </ul>
          <ul class="right-number">
            <ul class="number-number">共找到<span>{{ resultList.length }}</span>条结果</ul>
            <ul class="number-time">发表时间 <span><img :src="sortBottom" alt=""></span></ul>
          </ul>
        </div>
      </div>
    </div>
@@ -129,6 +140,7 @@
  },
  data() {
    return {
      errorIcon: require("@/assets/images/achievements/errorIcon.png"),
      topIcon: require("@/assets/images/achievements/top-Icon.png"),
      bottomIcon: require("@/assets/images/achievements/bottom-Icon.png"),
      sortTop: require("@/assets/images/achievements/sort-top.png"),
@@ -348,15 +360,44 @@
          },
        ]
      },
      // 查询结果
      resultList:[
      // 所关联内容
      associationList: [
        {
            name:"中药闸柜的历史传承与新时代发展思考",
            sources:"北京中医药大学学报",
            time:"2025-02-24 09:21",
            title:"摘要: 中药闸柜是传统中药调剂的高级管理人员,在'前店后厂式'中药房发挥重要作用和关键职能。传承中药闸柜的宝贵学术经验与优秀文化对厘清中药学学科发展脉络、规范中药调剂技术操作、促进老药工技艺'活态传承'具有重要科学价值和现实意义。面向新时代、开启新思维,本文对老字号中药铺的兴起和中药闸柜进行考证,分析中药闸柜的岗位责任、传承路径及未来发展,提出高素质中药闸柜人才培养策略,旨在培养符合当代社会需求的中药行业复合型创新人才。",
            keyword:""
          type: "作者",
          content: "陈衡哲",
        },
        {
          type: "作者",
          content: "陈衡哲",
        },
        {
          type: "作者",
          content: "陈衡哲",
        },
      ],
      // 查询结果
      resultList: [
        {
          name: "中药闸柜的历史传承与新时代发展思考",
          sources: "北京中医药大学学报",
          type: "期刊",
          author: "杨浣菲  北京中医药大学中药学院;赵天成  北京师范大学",
          time: "2025-02-24 09:21",
          title: "摘要: 中药闸柜是传统中药调剂的高级管理人员,在'前店后厂式'中药房发挥重要作用和关键职能。传承中药闸柜的宝贵学术经验与优秀文化对厘清中药学学科发展脉络、规范中药调剂技术操作、促进老药工技艺'活态传承'具有重要科学价值和现实意义。面向新时代、开启新思维,本文对老字号中药铺的兴起和中药闸柜进行考证,分析中药闸柜的岗位责任、传承路径及未来发展,提出高素质中药闸柜人才培养策略,旨在培养符合当代社会需求的中药行业复合型创新人才。",
          keyword: [
            {
              name: "中药闸柜",
            },
            {
              name: "中药闸柜",
            },
            {
              name: "中药闸柜",
            },
            {
              name: "中药闸柜",
            },
          ]
        }
      ]
@@ -633,9 +674,68 @@
  }
  .content-right{
  .content-right {
    width: 80.5%;
    padding: 14px 20px 20px 14px;
    .right-header {
      display: flex;
      li {
        background: #FFFFFF;
        border: 1px solid #937950;
        padding: 3px 10px;
        margin-right: 13px;
        display: flex;
        align-items: center;
        font-family: Poppins;
        font-size: 13px;
        color: #937950;
        img {
          cursor: pointer;
          height: 16px;
          width: auto;
          margin-left: 5px;
        }
      }
    }
    .right-number {
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
      .number-number {
        font-family: Source Han Sans;
        font-weight: 350;
        font-size: 14px;
        color: #2C2C2C;
        margin-right: 20px;
        span{
          color: #937950;
        }
      }
      .number-time {
        font-family: Source Han Sans;
        font-size: 12px;
        font-weight: 350;
        color: #2C2C2C;
        span{
          margin-left: 11px;
        }
        img{
            height: 12px;
            width: auto;
        }
      }
    }
  }
}