|
@@ -23,7 +23,7 @@
|
|
|
<p class="images_title">{{ one.catalog }}</p>
|
|
|
<img class="icons-item-imgbox" :src="one.coverUrl">
|
|
|
<p class="images_weight">{{ one.name }}</p>
|
|
|
- <p class="images_text">{{ one.moa }} </p>
|
|
|
+ <!-- <p class="images_text">{{ one.moa }} </p> -->
|
|
|
<p class="images_text">{{ one.proteinWeight }} kDa</p>
|
|
|
<p class="images_text">({{ one.company }})</p>
|
|
|
<p class="images_footer">{{ one.country }}{{ one.stage ? ',' : '' }} {{ one.stage }}{{ one.year ? "(" + one.year + ")"
|
|
@@ -45,7 +45,7 @@
|
|
|
<p class="images_title">{{ one.catalog }}</p>
|
|
|
<img class="icons-item-imgbox" :src="one.coverUrl">
|
|
|
<p class="images_weight">{{ one.name }}</p>
|
|
|
- <p class="images_text">{{ one.moa }} </p>
|
|
|
+ <!-- <p class="images_text">{{ one.moa }} </p> -->
|
|
|
<p class="images_text">{{ one.proteinWeight }} kDa</p>
|
|
|
<p class="images_text">({{ one.company }})</p>
|
|
|
<p class="images_footer">{{ one.country }}{{ one.stage ? ',' : '' }} {{ one.stage }}{{ one.year ? "(" + one.year + ")"
|
|
@@ -69,7 +69,7 @@
|
|
|
<p class="images_title">{{ one.catalog }}</p>
|
|
|
<img class="icons-item-imgbox" :src="one.coverUrl">
|
|
|
<p class="images_weight">{{ one.name }}</p>
|
|
|
- <p class="images_text">{{ one.moa }} </p>
|
|
|
+ <!-- <p class="images_text">{{ one.moa }} </p> -->
|
|
|
<p class="images_text">{{ one.proteinWeight }} kDa</p>
|
|
|
<p class="images_text">({{ one.company }})</p>
|
|
|
<p class="images_footer">{{ one.country }}{{ one.stage ? ',' : '' }} {{ one.stage }}{{ one.year ? "(" + one.year + ")"
|
|
@@ -91,7 +91,7 @@
|
|
|
<p class="images_title">{{ one.catalog }}</p>
|
|
|
<img class="icons-item-imgbox" :src="one.coverUrl">
|
|
|
<p class="images_weight">{{ one.name }}</p>
|
|
|
- <p class="images_text">{{ one.moa }} </p>
|
|
|
+ <!-- <p class="images_text">{{ one.moa }} </p> -->
|
|
|
<p class="images_text">{{ one.proteinWeight }} kDa</p>
|
|
|
<p class="images_text">({{ one.company }})</p>
|
|
|
<p class="images_footer">{{ one.country }}{{ one.stage ? ',' : '' }} {{ one.stage }}{{ one.year ? "(" + one.year + ")"
|
|
@@ -131,7 +131,7 @@ export default {
|
|
|
if (block.isSliding) {
|
|
|
block.isSliding = false;
|
|
|
if (this.isBlockInArray(block, this.otherList)) {
|
|
|
- this.otherList = this.otherList.filter(b => b.catalog !== block.catalog || b.name !== block.name || b.target !== block.target || b.moa !== block.moa);
|
|
|
+ this.otherList = this.otherList.filter(b => b.catalog !== block.catalog || b.name !== block.name || b.target !== block.target);
|
|
|
this.keywordList.push(block);
|
|
|
block.styleOpacity = "0"
|
|
|
setTimeout(() => {
|
|
@@ -149,7 +149,7 @@ export default {
|
|
|
},
|
|
|
// 搜索
|
|
|
isBlockInArray(block, array) {
|
|
|
- return array.some(b => b.catalog === block.catalog || b.name === block.name || b.target === block.target || b.moa === block.moa);
|
|
|
+ return array.some(b => b.catalog === block.catalog || b.name === block.name || b.target === block.target);
|
|
|
},
|
|
|
search() {
|
|
|
let list = []
|
|
@@ -165,7 +165,7 @@ export default {
|
|
|
let matchCount = 0;
|
|
|
// 搜索条件 name,catalog, target, moa
|
|
|
this.overView.forEach(block => {
|
|
|
- if (block.name.toLowerCase().includes(keyword.toLowerCase()) || block.catalog.toLowerCase().includes(keyword.toLowerCase()) || block.target.toLowerCase().includes(keyword.toLowerCase()) || block.moa.toLowerCase().includes(keyword.toLowerCase())) {
|
|
|
+ if (block.name.toLowerCase().includes(keyword.toLowerCase()) || block.catalog.toLowerCase().includes(keyword.toLowerCase()) || block.target.toLowerCase().includes(keyword.toLowerCase())) {
|
|
|
if (block.isSliding) return;
|
|
|
setTimeout(() => {
|
|
|
block.isSliding = true;
|