123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <view class="news-item" @click="onClickDetail(item)">
- <view class="news-title">组装自动化与测试测量深度融合,赋能电子制造业高质量发展2024</view>
- <view class="news-time">2024年6月28日</view>
- <view class="news-summary">
- <view class="text">在人类历史长河中,工业生产一直是社会进步的重要驱动力,而自动化技术的飞速发展,使其正在经历前所未有的变革。特别是在电子生产制造领域,传统的人工操作由于易疲劳、品质不稳定以及</view>
- <view class="to-detail"><view>了解详情</view> <view class="arrow iconfont icon-right-s"></view></view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- props: {
- type: String,
- item: Object
- },
- data() {
- return {
- }
- },
- created() {
- },
- methods: {
- onClickDetail(item) {
- this.navigateTo('https://mp-test-onlinecatelogue.matchexpo.cn/mini-pro-news')
- if (this.type === 'exhibitor') {
- // this.navigateTo('')
- } else {
- }
- }
- }
- }
- </script>
- <style lang="scss">
- .news-item{
- display: flex;
- flex-direction: column;
- height: 210rpx;
- background-color: #F6F6F6;
- border-radius: 10rpx;
- padding: 24rpx 30rpx;
- }
- .news-summary{
- display: flex;
- align-items: center;
- }
- .news-title{
- @include text-ellipsis-line;
- font-family: Arial, Arial;
- font-weight: bold;
- font-size: $fontSize3;
- line-height: 35rpx;
- }
- .news-time{
- font-size: $fontSize0;
- color: #555555;
- margin: 12rpx 0;
- }
- .news-summary{
- font-size: $fontSize1;
- line-height: 25rpx;
- .text{
- padding-right: 30rpx;
- color: #555555;
- @include text-ellipsis-line;
- -webkit-line-clamp: 2;
- }
- .to-detail{
- display: flex;
- align-items: center;
- flex-shrink: 0;
- color: $buttonPrimaryColor;
- font-size: 16rpx;
- font-weight: bold;
- padding: 0 24rpx;
- }
- .arrow{
- margin-left: 12rpx;
- font-size: $fontSize0;
- }
- }
- </style>
|