当前位置:   article > 正文

基于Java SpringBoot和Vue UniAPP的微信商城小程序_微信小程序商城 springboot

微信小程序商城 springboot

        摘要

        近年来,随着我国网络基础设施的不断完善和信息技术的不断发展,第三方支付手段得到了广泛的普及,网上购物已经成为人们生活中的重要内容,基于PC平台的网上商城系统可以足不出户就可以享受购物。

        基于手机的网购微信小程序发挥智能终端的便携性,让大众随时随地购买自己喜欢的产品,面向社区的购物模式源于O2O概念,将线下商品交易和互联网结合起来,将互联网打造成线上交易的平台。系统以互联网为基础,以生活圈周边为基本单位,充分利用了社区的信息基础设施,将生活圈周边的小型实体店和网店相结合的新的电子商务模式是传统电子商务的新突破,其线上的重点是消费者的便利需求、更多的是满足会员的互动营销、实体店的涌入,线下的重点更多的是为用户提供更好更方便的现代智能购物体验服务,因此开发基于这些微信小部件的商店系统已经成为必要的事情,对于计算机科学专业的毕业生来说,在实际信息管理中应用计算机也是一项有意义的实践活动。

        新零售发展的核心是满足特定购物场景的客户需求,客户的信息化、技术化、随着移动互联网的发展趋势,快买快送的购物方式越来越受到用户的青睐,而对于传统零售来说,为实体店提供方便快捷的网购渠道是增强顾客体验、提高零售效率的重要途径。外零售商普遍提供线上线下的社区购物服务。从目前主流的网上购物系统来看,主要有基于PC的购物系统、APP购物系统和依赖第三方应用的购物门户网站。2017年初,微信小程序的正式上线进一步激活了微信的生态系统,与原生应用相比,微信小程序的最大特点是用户无需下载安装,可以通过扫描或搜索获得,这意味着基于微信和移动的轻量级小程序平台可以更好地连接线下服务。

 

整个项目实现的功能

三种角色,分别是管理员、商家、买家,均是小程序。使用微信授权登录

普通用户: 1.浏览商品信息、查看分类 2.浏览推荐商品信息(根据销量推荐) 3.添加购物车和结算订单 4.查看个人订单详情,对订单进行评价 5.申请成为商家 6.修改收货地址等功能;

商家: 1.管理所有商品信息,可以上传商品 2.管理所有订单信息,进行发货等;

管理员: 管理商品分类、审核商品等。

 

 

使用的技术

使用的框架:后端SpringBoot框架,java语言。前端UniApp框架,Vue.js语法。

使用的数据库:MySql5.7或8

部分代码展示

  1. <template>
  2. <view class="content">
  3. <view class="navbar">
  4. <view
  5. v-for="(item, index) in navList" :key="index"
  6. class="nav-item"
  7. :class="{current: tabCurrentIndex === index}"
  8. @click="tabClick(index)"
  9. >
  10. {{item.text}}
  11. </view>
  12. </view>
  13. <swiper :current="tabCurrentIndex" class="swiper-box" duration="300" @change="changeTab">
  14. <swiper-item class="tab-content" v-for="(tabItem,tabIndex) in navList" :key="tabIndex">
  15. <scroll-view
  16. class="list-scroll-content"
  17. scroll-y
  18. @scrolltolower="loadData"
  19. >
  20. <!-- 空白页 -->
  21. <empty v-if=" tabItem.orderList.length === 0"></empty>
  22. <!-- 订单列表 -->
  23. <view
  24. v-for="(item,index) in tabItem.orderList" :key="index"
  25. class="order-item"
  26. >
  27. <view class="i-top b-b">
  28. <text class="time">{{item.createTime}}</text>
  29. <text class="state" :style="{color: item.stateTipColor}">{{getStat(item.stat)}}</text>
  30. <text
  31. v-if="item.state===9"
  32. class="del-btn yticon icon-iconfontshanchu1"
  33. @click="deleteOrder(index)"
  34. ></text>
  35. </view>
  36. <scroll-view v-if="item.goods.length > 1" class="goods-box" scroll-x>
  37. <view
  38. v-for="(goodsItem, goodsIndex) in item.goods" :key="goodsIndex"
  39. class="goods-item"
  40. >
  41. <image class="goods-img" :src="picUrl + goodsItem.pic1" mode="aspectFill"></image>
  42. </view>
  43. </scroll-view>
  44. <view
  45. v-if="item.goods.length === 1"
  46. class="goods-box-single"
  47. v-for="(goodsItem, goodsIndex) in item.goods" :key="goodsIndex"
  48. >
  49. <image class="goods-img" :src="picUrl + goodsItem.pic1" mode="aspectFill"></image>
  50. <view class="right">
  51. <text class="title clamp">{{goodsItem.title}}</text>
  52. <text class="attr-box">{{goodsItem.name}} x {{goodsItem.num}}</text>
  53. <text class="price">{{goodsItem.price}}</text>
  54. </view>
  55. </view>
  56. <view class="price-box">
  57. <text class="num">{{item.goods.length}}</text>
  58. 件商品 实付款
  59. <text class="price">{{item.priceAll}}</text>
  60. </view>
  61. <view class="action-box b-t" v-if="item.stat == 3">
  62. <!-- <button class="action-btn" @click="cancelOrder(item)">取消订单</button> -->
  63. <button class="action-btn recom" @click="getComment(item)">立即评价</button>
  64. </view>
  65. <view class="action-box b-t" v-if="item.stat == 2&&user.uid == item.userFk">
  66. <button class="action-btn recom" @click="changeOrder(item.id,3)">收货</button>
  67. </view>
  68. <view class="action-box b-t" v-if="item.stat == 1&&user.type == 2">
  69. <button class="action-btn recom" @click="changeOrder(item.id,2)">发货</button>
  70. </view>
  71. <view class="action-box b-t" v-if="item.stat == 4">
  72. <text class="u-tips-color">已完成</text>
  73. </view>
  74. </view>
  75. <uni-load-more :status="tabItem.loadingType"></uni-load-more>
  76. </scroll-view>
  77. </swiper-item>
  78. </swiper>
  79. <u-modal v-model="show" title="评论" @confirm="commentSub">
  80. <view class="slot-content">
  81. <view class="u-flex u-p-20 u-border-bottom" v-if="selItem.length > 0" v-for="(item ,index) in selItem">
  82. <image style="width: 100rpx;height:100rpx;" :src="picUrl+item.pic1"></image>
  83. <u-input class="u-m-20 u-m-l-30" type="text" placeholder="请输入评论" v-model="item.memo" placeholderStyle="textAlign:center"/>
  84. </view>
  85. </view>
  86. </u-modal>
  87. </view>
  88. </template>

基于SpringBoot和UniAPP的微信商城小程序

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/154091
推荐阅读
相关标签
  

闽ICP备14008679号