Files
vpUni/.svn/pristine/78/78b917180bdb35d0d21ecef55026e86bad9d087e.svn-base
2026-03-09 16:39:03 +08:00

41 lines
1.3 KiB
Plaintext

<template>
<view>
<view class="" style="padding: 20rpx;">
<view class=""
style=" font-size: 40rpx; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; ">
世界咖啡产区探秘:不同产地咖啡豆的风味特点
</view>
<view class="" style=" margin-top: 20rpx; display: flex; align-items: center; justify-content: space-between;">
<view class="" style="display: flex; align-items: center;">
<img :src="Service.GetIconImg('/static/article/date.png')" style="width: 25rpx; height: 25rpx;" alt="" />
<text style="font-size: 24rpx; margin-left: 10rpx; color: #6B7280; " >2025-12-20</text>
</view>
<view class="" style="display: flex; align-items: center;">
<img :src="Service.GetIconImg('/static/article/see.png')" style="width: 28rpx; height: 26rpx;" alt="" />
<text style="font-size: 24rpx; margin-left: 10rpx; color: #6B7280; " >2025</text>
</view>
</view>
<view class="" style="margin-top: 30rpx;" >
内容
</view>
</view>
</view>
</template>
<script setup lang="ts">
import { onShow, onLoad } from "@dcloudio/uni-app";
import { Service } from "@/Service/Service"
onLoad(() => {
});
onShow(() => {
});
</script>
<style lang="scss">
</style>