# 校园二手交易微信小程序
校园二手交易微信小程序实现的功能:定位大学,当地天气,轮播图,推荐列表,购物车,发布功能,订单,身份验证等。
**以下对每一项进行了简单的阐述,“详情”则是对每一项内容具体的描述。**
## 首页
首页实现了一些简单的功能,而且界面的设计也不是美观,设计的比较粗糙,后续会完善的功能是:用户下滑加载更多的内容,内容也会更加丰富。
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/homePage.jpg" width="300" alt="首页"/>
#### 定位
定位功能调用的是百度的接口,本来是想腾讯地图的,但是自己在使用的过程中,出现了一些错误(后续会完善腾讯地图的使用),导致调用接口失败了,然后才用的[百度地图web端的api](http://lbsyun.baidu.com/index.php?title=jspopular),而且官方给了代码实例,我们稍作修改即可使用。 [定位详情](https://blog.csdn.net/zyz00000000/article/details/82531397)
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/location.jpg" width="300" alt="定位"/>
#### 天气
天气功能调用的是百度的接口,在百度地图官网给的代码实例里面除了位置功能,还有当地天气的数据,可以直接拿来使用。[天气详情](https://blog.csdn.net/zyz00000000/article/details/82531397)
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/weather.jpg" width="300" alt="天气"/>
#### 轮播图
轮播图直接用微信小程序的组件,<swiper>设置轮播图属性——> <block>循环遍历每一项——> <swiper-item>轮播每一项——> <image>每一项的图片。[详情](https://developers.weixin.qq.com/miniprogram/dev/component/swiper.html)
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/swiper.jpg" width="300" alt="轮播效果图"/>
下面是代码截图:
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/swiper1.jpg" width="900" alt="轮播图wxml"/>
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/swiper2.jpg" width="300" alt="轮播图js"/>
#### 搜索框
首页的所搜框用的是一张图片,当然这样的搜索框,微信小程序是有组件的,
[微信小程序的icon组件](https://developers.weixin.qq.com/miniprogram/dev/component/icon.html)
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/search-book.jpg" width="300" alt="搜索框图片"/>
#### 滚动条
我采用引入模板的方式,将这个功能写好后,引入到首页,同样用的<swiper>标签。[详情](https://developers.weixin.qq.com/miniprogram/dev/component/swiper.html)
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/swiper-y.jpg" width="300" alt="校园头条"/>
下面是代码截图:
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/swiper-y1.jpg" width="800" alt="校园头条wxml"/>
#### 四个分类功能
分类功能实现的也比较简单,没有什么技术性的东西,或许wxss样式对你有所帮助。
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/classify.jpg" width="300" alt="四个分类"/>
#### 今日推荐
今日推荐功能使用了[微信小程序的scroll-view](https://developers.weixin.qq.com/miniprogram/dev/component/scroll-view.html),要注意的是,推荐好书和推荐好物在同一个页面,那么当点击“更多”的时候,要跳转到相应内容上。
<img src="https://raw.githubusercontent.com/zhuyuzhu/images/master/pictures/recommend.jpg" width="300" alt="今日推荐"/>
## 购物车
购物车的实现也较为简单,将用户id和商品id传给后端,后端才能把对应的数据给前端。[详情](https://blog.csdn.net/zyz00000000/article/details/82532998)
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/shoppingCart.jpg" width="300" alt="购物车"/>
## 发布
发布功能,注意一点,必填的内容都填了“发布”按钮才可以点击
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/release.jpg" width="300" alt="发布功能"/>
## 订单
订单功能,请求数据,展示数据,没什么难度
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/order.jpg" width="300" alt="订单管理"/>
## 我的
样式,每一项后面有的" > "是如何实现的呢?
通过伪元素,transform: matrix()实现>的效果。
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/1.png" width="300" alt="样式"/>
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/2.jpg" width="600" alt="代码"/>
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/my.jpg" width="300" alt="个人信息"/>
## 身份验证
#### 因为需要学校的学生身份才可以使用小程序的功能,这里给出一个测试的账号和密码
#### 账号:20151621029 密码:666666
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/identityVerify.jpg" width="300" alt="身份验证"/>
### 校园兼职
#### 用户可以通过小程序,发布兼职信息,发布的兼职信息会在“首页——校园兼职”中,可以在兼职列表中查看兼职的详情
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/partTimeJob.jpg" width="300" alt="身份验证"/>
#### 当点击“家教老师”这则兼职的时候,会跳转到相应的详情页面
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/parTimeJobDetail.jpg" width="300" alt="身份验证"/>
### 商品详细
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/goodsDetail.jpg" width="300" alt="身份验证"/>
#### 预约购买
<img src="https://github.com/zhuyuzhu/images/blob/master/pictures/buyGoods.jpg" width="300" alt="身份验证"/>
没有合适的资源?快使用搜索试试~ 我知道了~
JavaScript《校园二手交易微信小程序/二手交易平台/校园二手书/校园二手物品交易》+项目源码+文档说明
共205个文件
js:51个
wxss:42个
json:42个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 34 浏览量
2024-11-11
16:57:40
上传
评论
收藏 1.2MB ZIP 举报
温馨提示
<项目介绍> - 校园二手交易微信小程序实现的功能:定位大学,当地天气,轮播图,推荐列表,购物车,发布功能,订单,身份验证等。 - 不懂运行,下载完可以私聊问,可远程教学 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 --------
资源推荐
资源详情
资源评论
收起资源包目录
JavaScript《校园二手交易微信小程序/二手交易平台/校园二手书/校园二手物品交易》+项目源码+文档说明 (205个子文件)
2.jpg 91KB
4.jpg 60KB
1.jpg 54KB
3.jpg 53KB
lunbotu7.jpg 43KB
lunbotu6.jpg 28KB
citys.js 332KB
citys.js 332KB
bmob.js 256KB
area.js 115KB
underscore.js 57KB
post.js 16KB
shoppingCart.js 15KB
myCart.js 15KB
qqmap-wx-jssdk.js 13KB
bmap-wx.min.js 9KB
shouye.js 9KB
movie-detail.js 8KB
thing-detail.js 8KB
qqmap-wx-jssdk.min.js 7KB
app.js 5KB
movie-more.js 5KB
order.js 5KB
my.js 4KB
headline.js 4KB
addressAdmin.js 4KB
mySetting.js 4KB
search-thing-result.js 4KB
release.js 3KB
myPost.js 3KB
search.js 3KB
search-book.js 3KB
thing-search.js 3KB
jobDetail.js 3KB
job.js 3KB
index.js 3KB
search.js 2KB
weather.js 2KB
weatherLocationTrand.js 2KB
regeocoding.js 2KB
weather.js 2KB
index.js 1KB
logs.js 1KB
systemNotification.js 1KB
purchaseHistory.js 1KB
myorder.js 1KB
suggestion.js 962B
settlement.js 896B
recommend.js 880B
welfare.js 874B
order-list.js 872B
movie-list.js 872B
movie-grid.js 871B
news.js 870B
sale.js 868B
contactUs.js 853B
util.js 619B
app.json 3KB
project.config.json 610B
mySetting.json 203B
jobDetail.json 125B
addressAdmin.json 52B
logs.json 52B
movie-more.json 52B
myorder.json 50B
search-thing-result.json 46B
search-book.json 46B
movie-detail.json 46B
weather.json 46B
order.json 46B
release.json 46B
myPost.json 46B
purchaseHistory.json 46B
thing-search.json 46B
job.json 46B
thing-detail.json 46B
headline.json 46B
myCart.json 43B
shoppingCart.json 43B
settlement.json 2B
shouye.json 2B
index.json 2B
post.json 2B
recommend.json 2B
weatherLocationTrand.json 2B
movie-grid.json 2B
news.json 2B
systemNotification.json 2B
contactUs.json 2B
my.json 2B
search.json 2B
order-list.json 2B
sale.json 2B
welfare.json 2B
movie-list.json 2B
weather.json 2B
search.json 2B
suggestion.json 2B
regeocoding.json 2B
README.md 6KB
共 205 条
- 1
- 2
- 3
资源评论
程序员无锋
- 粉丝: 3674
- 资源: 1799
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- Analytics-2024-11-07-080019.ips.ca.synced
- java订单管理系统源码ssh框架数据库 MySQL源码类型 WebForm
- DS18B20温度传感器STM32驱动头文件
- (源码)基于Spring Boot的二猫社区管理系统.zip
- content_1731501062882.xlsx
- javaswing游戏项目源码.zip
- Python实现收集器的源码.zip
- (源码)基于Java多线程的并发任务管理系统.zip
- C#在线网校考试系统源码 在线学习云服务平台源码数据库 SQL2008源码类型 WebForm
- com.sun.net.httpserver安卓HTTP服务器jar包最新版2.2.1
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功