Add link for NewsAlbumItem

This commit is contained in:
Sunday 2022-04-30 21:47:45 +08:00
parent 426bd21b97
commit 4024d63f26
4 changed files with 16 additions and 9 deletions

View File

@ -41,6 +41,7 @@ export default {
showDetectResult: false, showDetectResult: false,
news: [ news: [
{ {
link: "https://zhuanlan.zhihu.com/p/364111215",
title: "一到春天就皮肤过敏瘙痒怎么办?掌握这几招立马止痒", title: "一到春天就皮肤过敏瘙痒怎么办?掌握这几招立马止痒",
image: image:
"https://pic4.zhimg.com/v2-df56391f8128d2c8921d0b5112a51fa3_1440w.jpg?source=172ae18b", "https://pic4.zhimg.com/v2-df56391f8128d2c8921d0b5112a51fa3_1440w.jpg?source=172ae18b",
@ -49,6 +50,7 @@ export default {
readMinutes: 5, readMinutes: 5,
}, },
{ {
link: "https://zhuanlan.zhihu.com/p/68955803",
title: "下雨天,皮肤就不用补水了吗?", title: "下雨天,皮肤就不用补水了吗?",
image: image:
"https://pic1.zhimg.com/v2-6bf489635811b1552320c23bd58392fd_1440w.jpg?source=172ae18b", "https://pic1.zhimg.com/v2-6bf489635811b1552320c23bd58392fd_1440w.jpg?source=172ae18b",
@ -57,11 +59,12 @@ export default {
readMinutes: 8, readMinutes: 8,
}, },
{ {
link: "https://www.zhihu.com/question/495232227",
title: "脸上经常长痘痘是什么原因导致的?", title: "脸上经常长痘痘是什么原因导致的?",
image: image:
"https://pic2.zhimg.com/80/v2-598043efaf9de7e18ddc63a6a6e42a08_720w.jpg?source=1940ef5c", "https://pic2.zhimg.com/80/v2-598043efaf9de7e18ddc63a6a6e42a08_720w.jpg?source=1940ef5c",
abstract: abstract:
"曾经的我,也是满脸痘痘的男人。现在的我,浑身肌肤嫩滑,吹弹可破。前方高能预警:文章很长,干货很干,全文没有多余的废话,请一定一定,耐心读完。", "曾经的我,也是满脸痘痘的男人。现在的我,浑身肌肤嫩滑,吹弹可破。前方高能预警:文章很长,干货很干。",
readMinutes: 12, readMinutes: 12,
}, },
], ],

View File

@ -2,16 +2,14 @@
<section class="py-1 text-center container"> <section class="py-1 text-center container">
<div class="row py-lg-3"> <div class="row py-lg-3">
<div class="col-lg-6 col-md-8 mx-auto"> <div class="col-lg-6 col-md-8 mx-auto">
<h1 class="mb-3 text-center">Detect Result</h1> <h1 class="mb-3 text-center">检测结果</h1>
<img <img
class="img-thumbnail my-2 w-25" class="img-thumbnail my-2 w-50"
:src="imageUrl" :src="imageUrl"
:alt="'Disease ' + diseaseName" :alt="'Disease ' + diseaseName"
/> />
<h3 class="my-1">{{ diseaseName }}</h3> <h3 class="my-1">{{ diseaseName }}</h3>
<p class="my-1 lead text-muted"> <p class="my-1 lead text-muted">置信度: {{ trustworthiness }}</p>
Trustworthiness: {{ trustworthiness }}
</p>
</div> </div>
</div> </div>
</section> </section>

View File

@ -7,6 +7,7 @@
v-for="n in NewsList" v-for="n in NewsList"
:key="n.id" :key="n.id"
:id="n.id" :id="n.id"
:link="n.link"
:title="n.title" :title="n.title"
:abstract="n.abstract" :abstract="n.abstract"
:image="n.image" :image="n.image"

View File

@ -12,9 +12,12 @@
<p class="card-text">{{ NewsAbstract }}</p> <p class="card-text">{{ NewsAbstract }}</p>
<div class="d-flex justify-content-between align-items-center"> <div class="d-flex justify-content-between align-items-center">
<div class="btn-group"> <div class="btn-group">
<button type="button" class="btn btn-sm btn-outline-secondary"> <a
Read More... :href="NewsLink"
</button> class="btn btn-sm btn-outline-secondary"
target="_blank"
>Read More...</a
>
</div> </div>
<small class="text-muted">{{ NewsMinutesToRead }} mins</small> <small class="text-muted">{{ NewsMinutesToRead }} mins</small>
</div> </div>
@ -28,6 +31,7 @@ export default {
data() { data() {
return { return {
NewsId: this.id, NewsId: this.id,
NewsLink: this.link,
NewsTitle: this.title, NewsTitle: this.title,
NewsImage: this.image, NewsImage: this.image,
NewsAbstract: this.abstract, NewsAbstract: this.abstract,
@ -36,6 +40,7 @@ export default {
}, },
props: { props: {
id: { type: Number }, id: { type: Number },
link: { type: String },
title: { type: String }, title: { type: String },
image: { type: String }, image: { type: String },
abstract: { type: String }, abstract: { type: String },