123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <view class="container note-and-viewpoint">
- <view class="content-item">
- <view class="author-name">
- <view class="img-box">
- <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/T2ddwIIaULVdkGM6gVMuNxBSft8Y.png"></image>
- </view>
- <text style="margin-left: 10rpx">作者昵称作者昵称</text>
- </view>
- <view class="type-time">
- <view class="type"> 笔 记</view>
- <view class="time"> 2023.08.24 13:13:13</view>
- </view>
- <view class="title-item"> 标题标题标题标题标题标题标题标题标题标题标题标题</view>
- <view class="text-conten">
- 有专栏详情页面,内容详情页面,暂时都不设置行业权限。专栏详情页未登录也可查看,收藏操作需先登录
- 内容详情页面也需要登录后才查看,登录也可查看,收藏操作需先登录,内容详情页面也需要登录后才查专栏介绍:有专栏详情页面,内容详情页面,暂时都不设置行业权限。专栏详情页未登录也可查看,收藏操作需先登录,
- </view>
- <view class="file-item"> 文档名称.docx </view>
- <view class="image-conten">
- <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Maskgroupbg.png" @click="previewImageMediahandler"></image>
- <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Maskgroupbg.png"></image>
- </view>
- <view class="lable-conten">
- <text>石头科技</text>
- <text>公司调研电话会</text>
- </view>
- <view class="collect-conten">
- <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/collect_icon.png"></image>
- <image src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/collect_act.png"></image> 88
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {
- previewImageMediahandler() {
- uni.previewImage({
- urls: ["https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/Maskgroupbg.png"], //查看图片的数组
- });
- },
- },
- };
- </script>
- <style lang="scss" scope>
- .note-and-viewpoint {
- padding: 30rpx;
- background: #f3f5f9;
- .content-item {
- padding: 40rpx;
- background-color: #fff;
- .type-time {
- display: flex;
- align-items: center;
- justify-content: space-between;
- color: #666666;
- .type {
- width: 110rpx;
- height: 42rpx;
- line-height: 42rpx;
- text-align: center;
- border-radius: 38rpx;
- color: #928563;
- background-color: #fff6de;
- font-weight: 500;
- }
- }
- .title-item {
- margin: 10rpx 0 20rpx;
- color: #333;
- font-size: 32rpx;
- font-weight: 500;
- line-height: 46rpx;
- }
- .file-item {
- width: 100%;
- height: 42rpx;
- margin: 20rpx 0;
- display: flex;
- align-items: center;
- background-color: #f8f8fa;
- color: #376cbb;
- }
- .image-conten {
- display: flex;
- flex-wrap: wrap;
- image {
- width: 144rpx;
- height: 144rpx;
- margin-right: 20rpx;
- }
- }
- .lable-conten {
- display: flex;
- margin: 20rpx 0;
- font-size: 24rpx;
- text {
- height: 34rpx;
- border-radius: 44rpx;
- padding: 3rpx 35rpx 3rpx 35rpx;
- background-color: #f0f1f3;
- margin-right: 20rpx;
- }
- }
- .collect-conten {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- color: #666666;
- image {
- width: 27rpx;
- height: 26rpx;
- margin-right: 8rpx;
- }
- }
- .author-name {
- display: flex;
- align-items: center;
- margin-bottom: 50rpx;
- .img-box {
- width: 48rpx;
- height: 48rpx;
- overflow: hidden;
- font-size: 28rpx;
- color: #333;
- image {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- }
- </style>
|