|
@@ -25,6 +25,29 @@
|
|
|
</el-table>
|
|
|
</template>
|
|
|
</div>
|
|
|
+ <div class="articleMove">
|
|
|
+ <template>
|
|
|
+ <el-table
|
|
|
+ :data="overView"
|
|
|
+ stripe
|
|
|
+ empty-text="Not Date"
|
|
|
+ style="width: 100%"
|
|
|
+ @row-click="gotoArticle">
|
|
|
+ <el-table-column prop="catalog" :label="$t('AntibodyDatabase.CatNo')" />
|
|
|
+ <el-table-column prop="name" :label="$t('AntibodyDatabase.AntibodyName')" />
|
|
|
+ <el-table-column prop="target" :label="$t('AntibodyDatabase.Target')" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <!-- <span v-for="(one, i) in scope.row.targetList" :key="i">
|
|
|
+ {{ one }}
|
|
|
+ </span> -->
|
|
|
+ <span>{{ $util.targetDictionaries(scope.row.target) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="moa" :label="$t('AntibodyDatabase.MOA')" />
|
|
|
+ <el-table-column prop="company" :label="$t('AntibodyDatabase.Inventor')" />
|
|
|
+ </el-table>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -96,6 +119,40 @@ export default {
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
}
|
|
|
+ .articleMove{
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ @media screen and (min-width: 0px) and (max-width: 750px) {
|
|
|
+ .box {
|
|
|
+ .list_title{
|
|
|
+ width: 100%;
|
|
|
+ padding: 0.15rem 0.2rem;
|
|
|
+ box-sizing: border-box;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
+ .article{
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .articleMove /deep/{
|
|
|
+ width: 100%;
|
|
|
+ padding: 0 0.2rem 0.15rem;
|
|
|
+ box-sizing: border-box;
|
|
|
+ .cell{
|
|
|
+ color: #000;
|
|
|
+ font-size: 0.1rem;
|
|
|
+ }
|
|
|
+ .el-table__row td{
|
|
|
+ background-color: #fff !important;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ .el-table__row--striped td{
|
|
|
+ background-color: #F0FAFE !important;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|