|
@@ -0,0 +1,179 @@
|
|
|
+<script setup name="IndexSection">
|
|
|
+
|
|
|
+import SvgIcon from '~/components/SvgIcon/index.vue'
|
|
|
+
|
|
|
+const Props = defineProps({
|
|
|
+ type: {
|
|
|
+ type: String,
|
|
|
+ validator: key => (['article', 'common'].includes(key)),
|
|
|
+ default: 'common'
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
+</script>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <div class="index-section-container">
|
|
|
+ <div v-if="type === 'common'" class="imgbox">
|
|
|
+ <img src="https://dummyimage.com/279x155/e3e3e3/fff" alt="" />
|
|
|
+ </div>
|
|
|
+ <div v-else class="article-wrapper">
|
|
|
+ <div class="title ellipsis-two">
|
|
|
+ {{ type }}VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄
|
|
|
+ </div>
|
|
|
+ <p class="desc">
|
|
|
+ 互动式影视作品《寂静岭:升天》(Silent Hill: Ascension) 今日放出了新的宣传预告,并宣布将于11月1日登陆 App Store、Google Play 和官方网页平台。《寂静岭:升天》是寂静岭系列衍生的互动影视作品,玩家们的选择则会决定主角们的命运。
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="content">
|
|
|
+ <div v-if="type === 'common'" class="title ellipsis-two">
|
|
|
+ {{ type }}VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄VR全景拍摄
|
|
|
+ </div>
|
|
|
+ <div class="flag">
|
|
|
+ #话题名称
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="moment-user flex-row flex-aic flex-jc-sb">
|
|
|
+ <div class="left flex-row flex-aic">
|
|
|
+ <div class="avatar">
|
|
|
+ <img src="https://dummyimage.com/20x20/e3e3e3/fff" alt="" />
|
|
|
+ </div>
|
|
|
+ <div class="nickname ellipsis">上海xxxxx公司</div>
|
|
|
+ </div>
|
|
|
+ <div class="ago">1个小时前</div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="footer">
|
|
|
+ <ul class="flex-row flex-aic flex-jc-sb">
|
|
|
+ <li class="active">
|
|
|
+ <SvgIcon name="like" :size="16" :rgap="2" color="#00b0b0" />
|
|
|
+ <span>22.3W</span>
|
|
|
+ </li>
|
|
|
+ <li class="active">
|
|
|
+ <SvgIcon name="collect" :size="16" :rgap="2" color="#00b0b0" />
|
|
|
+ <span>98698</span>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <SvgIcon name="message" :size="16" :rgap="2" color="#999999" />
|
|
|
+ <span>2354</span>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <SvgIcon name="forward" :size="16" :rgap="2" color="#999999" />
|
|
|
+ <span>40W</span>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.index-section {
|
|
|
+ &-container {
|
|
|
+ width: 279px;
|
|
|
+ height: 337px;
|
|
|
+ background-color: #fff;
|
|
|
+ border-radius: 6px;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .imgbox {
|
|
|
+ width: 279px;
|
|
|
+ height: 155px;
|
|
|
+ background: #eee;
|
|
|
+ border-radius: 6px 6px 0px 0px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-wrapper {
|
|
|
+ padding: 14px 10px 0;
|
|
|
+ height: 201px;
|
|
|
+ /* height: 187px; */
|
|
|
+ .title {
|
|
|
+ margin-bottom: 16px;
|
|
|
+ }
|
|
|
+ .desc {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ font-size: 14px;
|
|
|
+ height: calc(100% - 60px);
|
|
|
+ line-height: 1.44;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .title {
|
|
|
+ width: calc(279px - 20px);
|
|
|
+ height: 44px;
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #333333;
|
|
|
+ line-height: 22px;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .content {
|
|
|
+ padding: 16px 10px;
|
|
|
+
|
|
|
+ .flag {
|
|
|
+ height: 30px;
|
|
|
+ line-height: 30px;
|
|
|
+ font-size: 13px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #FF6700;
|
|
|
+ }
|
|
|
+
|
|
|
+ .moment-user {
|
|
|
+ height: 30px;
|
|
|
+ .left {
|
|
|
+ width: 0;
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+ .avatar {
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ border-radius: 50%;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ .nickname {
|
|
|
+ flex: 1;
|
|
|
+ padding:0 10px 0 8px;
|
|
|
+ font-size: 12px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #444444;
|
|
|
+ }
|
|
|
+ .ago {
|
|
|
+ height: 17px;
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #888888;
|
|
|
+ line-height: 17px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .footer {
|
|
|
+ height: 30px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #999999;
|
|
|
+ line-height: 30px;
|
|
|
+ ul {
|
|
|
+ padding: 0;
|
|
|
+ margin: 0;
|
|
|
+ list-style: none;
|
|
|
+ li {
|
|
|
+ cursor: pointer;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ &.active {
|
|
|
+ color: #00b0b0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|