| | |
| | | <template> |
| | | <view> |
| | | |
| | | <view class="box"> |
| | | <view class="name"> |
| | | 中国社科院都阳:中国人口转变的独特性及其影响 |
| | | </view> |
| | | <view class="font"> |
| | | <view class="left"> |
| | | 政策类型 |
| | | </view> |
| | | <view class="right"> |
| | | 发布时间:2024-04-27 |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </template> |
| | | |
| | | <script> |
| | | import { doc } from '@/api/index.js' |
| | | |
| | | export default { |
| | | data() { |
| | | return { |
| | | |
| | | } |
| | | }, |
| | | onShow() { |
| | | this.getdata() |
| | | }, |
| | | methods: { |
| | | |
| | | getdata(){ |
| | | console.log(this.$route.query) |
| | | //doc() |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | |
| | | <style> |
| | | |
| | | </style> |
| | | <style scoped lang="scss"> |
| | | .box{ |
| | | padding: 32rpx; |
| | | } |
| | | .name{ |
| | | color: #202d44; |
| | | font-size: 40rpx; |
| | | font-weight: bold; |
| | | } |
| | | .font{ |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: space-between; |
| | | border-bottom: 1px solid #f1f1f1; |
| | | padding-bottom: 26rpx; |
| | | margin-top: 20rpx; |
| | | .left{ |
| | | text-align: center; |
| | | height: 42rpx; |
| | | line-height: 42rpx; |
| | | padding: 0 10rpx; |
| | | border-radius: 4rpx; |
| | | background: #1171E0; |
| | | color: #ffffff; |
| | | font-size: 24rpx; |
| | | |
| | | } |
| | | .right{ |
| | | color: #7e8596; |
| | | font-size: 28rpx; |
| | | } |
| | | } |
| | | </style> |