|
@@ -5,8 +5,9 @@
|
|
<div class="info_1"></div>
|
|
<div class="info_1"></div>
|
|
<div class="info_2">
|
|
<div class="info_2">
|
|
<div class="info_name">{{ info.name || '暂无' }}</div>
|
|
<div class="info_name">{{ info.name || '暂无' }}</div>
|
|
- <div class="info_brief">
|
|
|
|
- <div v-html="info.brief"></div>
|
|
|
|
|
|
+ <div class="info_brief">{{ info.brief || '暂无' }}</div>
|
|
|
|
+ <div class="info_content" v-if="content">
|
|
|
|
+ <div v-html="info.content"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -15,7 +16,6 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
-import { get } from 'lodash-es'
|
|
|
|
// 接口
|
|
// 接口
|
|
import { NotesStore } from '@/store/api/platform/notes'
|
|
import { NotesStore } from '@/store/api/platform/notes'
|
|
const store = NotesStore()
|
|
const store = NotesStore()
|
|
@@ -95,7 +95,9 @@ const search = async () => {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.info_brief {
|
|
.info_brief {
|
|
- margin: 10px 0 0 0;
|
|
|
|
|
|
+ text-align: center;
|
|
|
|
+ font-size: $global-font-size-18;
|
|
|
|
+ margin: 10px 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|