【易售小程序项目】小程序首页(展示商品、商品搜索、商品分类搜索)【后端基于若依管理系统开发】

简介: 【易售小程序项目】小程序首页(展示商品、商品搜索、商品分类搜索)【后端基于若依管理系统开发】

界面效果

【说明】

  • 界面中商品的图片来源于闲鱼,若侵权请联系删除
  • 关于商品分类页面的实现,请在我的Uniapp系列文章中寻找来查看
  • 关于页面中悬浮按钮的实现,请在我的Uniapp系列文章中寻找来查看

界面实现

工具js

该工具类的作用是,给定一个图片的url地址,计算出图片的高宽比,计算高宽比的作用是让图片可以按照正常比例显示

/**
 * 获取uuid
 */
export default {
  /**
   * 获取高宽比 乘以 100%
   */
  getAspectRatio(url) {
    uni.getImageInfo({
      src: url,
      success: function(res) {
        let aspectRatio = res.height * 100.0 / res.width;
        // console.log("aspectRatio:" + aspectRatio);
        return aspectRatio + "%";
      }
    });
  },
}

页面

首页

<template>
  <view class="content">
    <view style="display: flex;align-items: center;">
      <u-search placeholder="请输入商品名称" v-model="searchForm.keyword" @search="listProductVo" :showAction="false"
        :clearabled="true"></u-search>
      <text class="iconfont" style="font-size: 35px;" @click="selectCategory()">&#xe622;</text>
    </view>
    <u-row customStyle="margin-top: 10px" gutter="10" align="start" v-if="productList[0].length>0&&loadData==false">
      <u-col span="6" class="col" v-for="(data,index) in productList" :key="index">
        <view class="productVoItem" v-for="(productVo,index1) in data" :key="index1"
          @click="seeProductDetail(productVo)">
          <u--image v-if="productVo.picList!=null&&productVo.picList.length>0" :showLoading="true"
            :src="productVo.picList[0]" width="100%" :height="getAspectRatio(productVo.picList[0])"
            radius="10" mode="widthFix"></u--image>
          <!-- <u--image v-else :showLoading="true" :src="src" @click="click"></u--image> -->
          <view class="productMes">
            <text class="productName">【{{productVo.name}}】</text>
            <text>
              {{productVo.description==null?'':productVo.description}}
            </text>
          </view>
          <view style="display: flex;align-items: center;">
            <!-- 现价 -->
            <view class="price">¥<text class="number">{{productVo.price}}</text>/{{productVo.unit}}</view>
            <view style="width: 10px;"></view>
            <!-- 原价 -->
            <view class="originPrice">¥{{productVo.originalPrice}}/{{productVo.unit}}
            </view>
          </view>
          <view style="display: flex;align-items: center;">
            <u--image :src="productVo.avatar" width="20" height="20" shape="circle"></u--image>
            <view style="width: 10px;"></view>
            <view> {{productVo.nickname}}</view>
          </view>
        </view>
      </u-col>
    </u-row>
    <u-empty v-if="productList[0].length==0&&loadData==false" mode="data" texColor="#ffffff" iconSize="180"
      iconColor="#D7DEEB" text="所选择的分类没有对应的商品,请重新选择" textColor="#D7DEEB" textSize="18" marginTop="30">
    </u-empty>
    <view style="margin-top: 20px;" v-if="loadData==true">
      <u-skeleton :loading="true" :animate="true" rows="10"></u-skeleton>
    </view>
    <!-- 浮动按钮 -->
    <FloatButton @click="cellMyProduct()">
      <u--image :src="floatButtonPic" shape="circle" width="60px" height="60px"></u--image>
    </FloatButton>
  </view>
</template>
<script>
  import FloatButton from "@/components/FloatButton/FloatButton.vue";
  import {
    listProductVo
  } from "@/api/market/prodct.js";
  import pictureApi from "@/utils/picture.js";
  export default {
    components: {
      FloatButton
    },
    onShow: function() {
      let categoryNameList = uni.getStorageSync("categoryNameList");
      if (categoryNameList) {
        this.categoryNameList = categoryNameList;
        this.searchForm.productCategoryId = uni.getStorageSync("productCategoryId");
        this.searchForm.keyword = this.getCategoryLayerName(this.categoryNameList);
        uni.removeStorageSync("categoryNameList");
        uni.removeStorageSync("productCategoryId");
        this.listProductVo();
      }
    },
    data() {
      return {
        title: 'Hello',
        // 浮动按钮的图片
        floatButtonPic: require("@/static/cellLeaveUnused.png"),
        searchForm: {
          // 商品搜索关键词
          keyword: "",
          productCategoryId: undefined
        },
        productList: [
          [],
          []
        ],
        loadData: false,
      }
    },
    onLoad() {
    },
    created() {
      this.listProductVo();
    },
    methods: {
      /**
       * 查询商品vo集合
       */
      listProductVo() {
        this.loadData = true;
        listProductVo(this.searchForm).then(res => {
          this.loadData = false;
          // console.log("listProductVo:" + JSON.stringify(res))
          let productVoList = res.rows;
          this.productList = [
            [],
            []
          ];
          for (var i = 0; i < productVoList.length; i++) {
            if (i % 2 == 0) {
              // 第一列数据
              this.productList[0].push(productVoList[i]);
            } else {
              // 第二列数据
              this.productList[1].push(productVoList[i]);
            }
          }
        })
      },
      /**
       * 跳转到卖闲置页面
       */
      cellMyProduct() {
        console.log("我要卖闲置");
        uni.navigateTo({
          url: "/pages/sellMyProduct/sellMyProduct"
        })
      },
      /**
       * 获取高宽比 乘以 100%
       */
      getAspectRatio(url) {
        return pictureApi.getAspectRatio(url);
      },
      /**
       * 选择分类
       */
      selectCategory() {
        uni.navigateTo({
          url: "/pages/sellMyProduct/selectCategory"
        })
      },
      /**
       * 获取商品名称
       */
      getCategoryLayerName() {
        let str = '';
        for (let i = 0; i < this.categoryNameList.length - 1; i++) {
          str += this.categoryNameList[i] + '/';
        }
        return str + this.categoryNameList[this.categoryNameList.length - 1];
      },
      /**
       * 查看商品的详情
       */
      seeProductDetail(productVo) {
        // console.log("productVo:"+JSON.stringify(productVo))
        uni.navigateTo({
          url: "/pages/product/detail?productVo=" + encodeURIComponent(JSON.stringify(productVo))
        })
      }
    }
  }
</script>
<style lang="scss">
  .content {
    padding: 20rpx;
    .col {
      width: 50%;
    }
    .productVoItem {
      margin-bottom: 20px;
      .productMes {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        /* 显示2行 */
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        .productName {
          font-weight: bold;
        }
      }
      .price {
        color: #ff0000;
        font-weight: bold;
        .number {
          font-size: 22px;
        }
      }
      .originPrice {
        color: #A2A2A2;
        font-size: 15px;
        // 给文字添加中划线
        text-decoration: line-through;
      }
    }
  }
</style>
让文字只显示两行
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
/* 显示2行 */
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
路由跳转传递对象

因为首页已经查询到商品的很多信息了,点击查看商品详情的时候,很多信息不需要再查询一遍了,可以直接将商品的已知信息通过路由传递到新的页面去,需要注意的时候,将对象作为参数传递之前,需要先将对象进行编码

uni.navigateTo({
  url: "/pages/product/detail?productVo=" + encodeURIComponent(JSON.stringify(productVo))
})
将商品分为两列显示

首先将查询到的商品分为两组

let productVoList = res.rows;
this.productList = [
  [],
  []
];
for (var i = 0; i < productVoList.length; i++) {
  if (i % 2 == 0) {
    // 第一列数据
    this.productList[0].push(productVoList[i]);
  } else {
    // 第二列数据
    this.productList[1].push(productVoList[i]);
  }
}

然后在布局中使用行列布局即可,即使用一行两列的方式来显示商品信息

使用中划线划掉原价

// 给文字添加中划线
text-decoration: line-through;

后端

商品

controller

 /**
  * 查询商品Vo列表
  */
 @PreAuthorize("@ss.hasPermi('market:product:list')")
 @PostMapping("/listProductVo")
 @ApiOperation("获取商品列表")
 public TableDataInfo listProductVo(@RequestBody ProductVo productVo) {
     startPage();
     if (productVo.getProductCategoryId() != null) {
         // --if-- 当分类不为空的时候,只按照分类来搜索
         productVo.setKeyword(null);
     }
     List<ProductVo> list = productService.selectProductVoList(productVo);
     return getDataTable(list);
 }

service

/**
 * 查询商品Vo列表
 *
 * @param productVo
 * @return
 */
@Override
public List<ProductVo> selectProductVoList(ProductVo productVo) {
//        List<ProductVo> productVoList = new ArrayList<>();
    List<ProductVo> productVoList = baseMapper.selectProductVoList(productVo);
    ///设置每个商品的图片
    // 获取所有商品的id
    List<Long> productIdList = productVoList.stream().map(item -> {
        return item.getId();
    }).collect(Collectors.toList());
    // 查询出所有商品的图片
    if (productIdList.size() > 0) {
        List<Picture> pictureList = pictureService.selectPictureListByItemIdListAndType(productIdList, PictureType.PRODUCT.getType());
        Map<Long, List<String>> itemIdAndPicList = new HashMap<>();
        for (Picture picture : pictureList) {
            if (!itemIdAndPicList.containsKey(picture.getItemId())) {
                List<String> picList = new ArrayList<>();
                picList.add(picture.getAddress());
                itemIdAndPicList.put(picture.getItemId(), picList);
            } else {
                itemIdAndPicList.get(picture.getItemId()).add(picture.getAddress());
            }
        }
        // 给每个商品设置图片
        for (ProductVo vo : productVoList) {
            vo.setPicList(itemIdAndPicList.get(vo.getId()));
        }
    }
    return productVoList;
}

mapper

void starNumDiffOne(@Param("productId") Long productId);

sql

  <select id="selectProductVoList" parameterType="ProductVo" resultMap="ProductVoResult">
      SELECT
      p.id,
      p.NAME,
      p.description,
      p.original_price,
      p.price,
      p.product_category_id,
      pc.NAME AS productCategoryName,
      p.user_id,
      u.user_name as username,
      u.nick_name as nickname,
      u.avatar as avatar,
      p.reviewer_id,
      u1.user_name as reviewerUserName,
      p.fineness,
      p.unit,
      p.STATUS,
      p.is_contribute,
      p.functional_status,
      p.brand_id,
      b.NAME AS brandName
      FROM
      product AS p
      LEFT JOIN product_category AS pc ON p.product_category_id = pc.id
      LEFT JOIN brand AS b ON p.brand_id = b.id
      LEFT JOIN sys_user AS u ON p.user_id = u.user_id
      LEFT JOIN sys_user AS u1 ON p.reviewer_id = u1.user_id
      <where>
          <if test="keyword != null  and keyword != ''">and p.name like concat('%', #{keyword}, '%')</if>
          <if test="keyword != null  and keyword != ''">or p.description like concat('%', #{keyword}, '%')</if>
          <if test="productCategoryId != null  and productCategoryId != ''">and p.product_category_id =
              #{productCategoryId}
          </if>
      </where>
  </select>
目录
相关文章
|
7天前
|
小程序 前端开发 关系型数据库
uniapp跨平台框架,陪玩系统并发性能测试,小程序源码搭建开发解析
多功能一体游戏陪练、语音陪玩系统的开发涉及前期准备、技术选型、系统设计与开发及测试优化。首先,通过目标用户分析和竞品分析明确功能需求,如注册登录、预约匹配、实时语音等。技术选型上,前端采用Uni-app支持多端开发,后端选用PHP框架确保稳定性能,数据库使用MySQL保证数据一致性。系统设计阶段注重UI/UX设计和前后端开发,集成WebSocket实现语音聊天。最后,通过功能、性能和用户体验测试,确保系统的稳定性和用户满意度。
|
13天前
|
小程序 IDE PHP
圈子源码如何打包生成App小程序/开发一个圈子系统软件所需要的费用体现在哪里?
将PHP源码打包成App的过程涉及多个步骤和技术选择。以圈子源码为例,首先明确需求,确定App功能和目标用户群体,并根据需求开发小程序页面,如用户注册、圈子列表等。源码准备阶段确保源码适用于小程序开发,环境配置需安装IDE(如微信开发者工具)及依赖库。最后在IDE中打包小程序并上传至管理平台,通过审核后发布。费用方面,模板开发成本较低,定制开发则更高,具体取决于需求复杂度和第三方服务费用。
47 0
|
1月前
|
开发框架 小程序 前端开发
圈子社交app前端+后端源码,uniapp社交兴趣圈子开发,框架php圈子小程序安装搭建
本文介绍了圈子社交APP的源码获取、分析与定制,PHP实现的圈子框架设计及代码编写,以及圈子小程序的安装搭建。涵盖环境配置、数据库设计、前后端开发与接口对接等内容,确保平台的安全性、性能和功能完整性。通过详细指导,帮助开发者快速搭建稳定可靠的圈子社交平台。
|
11天前
|
移动开发 小程序
thinkphp+uniapp开发的多端商城系统源码/H5/小程序/APP支持DIY模板直播分销
thinkphp+uniapp开发的多端商城系统源码/H5/小程序/APP支持DIY模板直播分销
14 0
|
8天前
|
小程序 前端开发 关系型数据库
基于Uniapp+php校园小程序,校园圈子论坛系统功能,校园跑腿二手交流功能设计
校园圈子论坛及综合服务平台集成了校园跑腿、兼职信息、外卖团购、闲置交换、租赁服务、表白墙等多功能模块,提供一站式校园生活解决方案。系统采用uniapp前端和PHP后端开发,支持多城市、多学校切换,配备分站式后台管理,确保稳定性和安全性。通过融云IM SDK实现即时通讯功能,增强用户互动与粘性。适用于大学校园、城市及社区圈子,满足多样化需求,提升便捷体验。
|
27天前
|
移动开发 小程序 前端开发
超详细攻略!uniapp陪玩系统,打包陪玩小程序、H5需要注意什么?
陪玩系统的打包过程涵盖APP、小程序和H5平台。APP打包需使用uni-app开发工具,配置项目信息并选择云打包;小程序打包需在微信公众平台注册账号并提交审核;H5打包则直接通过uni-app生成文件并上传至服务器。各平台需注意权限配置、代码规范及充分测试,确保应用稳定性和兼容性。
|
2月前
|
小程序 前端开发 JavaScript
在线课堂+工具组件小程序uniapp移动端源码
在线课堂+工具组件小程序uniapp移动端源码
69 0
在线课堂+工具组件小程序uniapp移动端源码
|
3月前
|
移动开发 小程序 数据可视化
基于npm CLI脚手架的uniapp项目创建、运行与打包全攻略(微信小程序、H5、APP全覆盖)
基于npm CLI脚手架的uniapp项目创建、运行与打包全攻略(微信小程序、H5、APP全覆盖)
517 3
|
3月前
|
小程序 API
微信小程序更新提醒uniapp
在小程序开发中,版本更新至关重要。本方案利用 `uni-app` 的 `uni.getUpdateManager()` API 在启动时检测版本更新,提示用户并提供立即更新选项,自动下载更新内容,并在更新完成后重启小程序以应用新版本。适用于微信小程序,确保用户始终使用最新版本。以下是实现步骤: ### 实现步骤 1. **创建更新方法**:在 `App.vue` 中创建 `updateApp` 方法用于检查小程序是否有新版本。 2. **测试**:添加编译模式并选择成功状态进行模拟测试。
81 0
微信小程序更新提醒uniapp
|
5月前
|
小程序 前端开发 Java
SpringBoot+uniapp+uview打造H5+小程序+APP入门学习的聊天小项目
JavaDog Chat v1.0.0 是一款基于 SpringBoot、MybatisPlus 和 uniapp 的简易聊天软件,兼容 H5、小程序和 APP,提供丰富的注释和简洁代码,适合初学者。主要功能包括登录注册、消息发送、好友管理及群组交流。
144 0
SpringBoot+uniapp+uview打造H5+小程序+APP入门学习的聊天小项目

热门文章

最新文章