微信小程序 新闻列表及详情页

微信小程序 新闻列表及详情页

  1. 页面效果
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

  2. 新闻列表

<view class="conatiner">
  <view class="news-item" wx:for="{
    {newsList}}" wx:for-index="index">
    <view class="title" bindtap="todetail" data-options="{
    {item.id}}" >{
  {item.title}}</view>
    <view class="author-info">
      <text class="author-name">作者:{
  {item.author}} </text>
      <text class="author-date">发表于 {
  {item.publishDate}}</text>
    </view>
    <view style="border-bottom:1rpx solid #707070;width:100%"></view>
  </view>
</view>
/* pages/news/news_list/news_list.wxss */
.news-item {
   
  margin: 30rpx;
}
.title {
   
  font-size: 40rpx;
  font-weight: bold;
  letter-spacing: 2px;
  color: #313131;
}

.author-info {
   
  margin:20rpx 0;
  text-align: right;
  color: #707070;
  font-size: small;
}
// pages/news/news_list/news_list.js
Page({
   
  data: {
   
    newsList: [{
   
        id: 0,
        tit
  • 10
    点赞
  • 86
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
以下是一个微信小程序详情页的示例代码,包含了 wxml 和 wxss: wxml: ```html <view class="container"> <!-- 商品图片轮播 --> <swiper class="swiper" indicator-dots="{{true}}" autoplay="{{true}}"> <swiper-item> <image src="/images/product1.png"></image> </swiper-item> <swiper-item> <image src="/images/product2.png"></image> </swiper-item> <swiper-item> <image src="/images/product3.png"></image> </swiper-item> </swiper> <!-- 商品信息 --> <view class="product-info"> <text class="name">商品名称</text> <text class="price">¥99</text> <text class="desc">这是一款非常好用的商品,非常适合您的需求,赶快购买吧!</text> </view> <!-- 商品规格 --> <view class="product-specification"> <text class="title">商品规格</text> <view class="specification-group"> <text class="label">颜色</text> <view class="specification"> <text class="value">黑色</text> <text class="value">白色</text> <text class="value">红色</text> </view> </view> <view class="specification-group"> <text class="label">尺码</text> <view class="specification"> <text class="value">S</text> <text class="value">M</text> <text class="value">L</text> </view> </view> </view> <!-- 商品详情 --> <view class="product-detail"> <text class="title">商品详情</text> <image class="detail-image" src="/images/detail.png"></image> </view> <!-- 底部操作栏 --> <view class="bottom-bar"> <view class="left"> <text class="iconfont icon-shoucang"></text> <text>收藏</text> </view> <view class="right"> <button class="add-cart">加入购物车</button> <button class="buy-now">立即购买</button> </view> </view> </view> ``` wxss: ```css .container { display: flex; flex-direction: column; align-items: center; padding: 20rpx; } .swiper { width: 100%; height: 400rpx; margin-bottom: 20rpx; } .product-info { width: 100%; margin-bottom: 20rpx; } .product-info .name { font-size: 32rpx; font-weight: bold; margin-bottom: 20rpx; } .product-info .price { font-size: 28rpx; color: #f44336; margin-bottom: 20rpx; } .product-info .desc { font-size: 28rpx; color: #666; line-height: 40rpx; } .product-specification { width: 100%; margin-bottom: 20rpx; } .product-specification .title { font-size: 28rpx; font-weight: bold; margin-bottom: 20rpx; } .specification-group { display: flex; flex-direction: column; margin-bottom: 20rpx; } .specification-group .label { font-size: 28rpx; font-weight: bold; margin-bottom: 10rpx; } .specification { display: flex; flex-wrap: wrap; } .specification .value { display: flex; justify-content: center; align-items: center; width: 100rpx; height: 60rpx; margin-right: 20rpx; margin-bottom: 20rpx; font-size: 26rpx; border: 1rpx solid #ddd; border-radius: 5rpx; } .product-detail { width: 100%; margin-bottom: 20rpx; } .product-detail .title { font-size: 28rpx; font-weight: bold; margin-bottom: 20rpx; } .product-detail .detail-image { width: 100%; } .bottom-bar { display: flex; justify-content: space-between; align-items: center; width: 100%; height: 100rpx; background-color: #fff; border-top: 1rpx solid #ddd; position: fixed; bottom: 0; left: 0; z-index: 999; } .bottom-bar .left { display: flex; align-items: center; margin-left: 20rpx; } .bottom-bar .left .iconfont { font-size: 36rpx; color: #666; margin-right: 10rpx; } .bottom-bar .left text { font-size: 28rpx; color: #666; } .bottom-bar .right { display: flex; align-items: center; margin-right: 20rpx; } .bottom-bar button { display: flex; justify-content: center; align-items: center; width: 200rpx; height: 80rpx; font-size: 28rpx; color: #fff; border-radius: 5rpx; margin-left: 10rpx; } .bottom-bar .add-cart { background-color: #f44336; } .bottom-bar .buy-now { background-color: #388e3c; } ``` 以上代码实现了一个简单的微信小程序详情页,包含了商品图片轮播、商品信息、商品规格、商品详情和底部操作栏。你可以根据自己的需求进行修改和优化。同时,建议添加一些交互和逻辑代码,实现加入购物车、立即购买等功能。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值