当前位置:   article > 正文

小程序扫码成功后带着参数跳转到指定页面_微信小程序扫码跳转到数据显示界面

微信小程序扫码跳转到数据显示界面

要扫的二维码,通过草料二维码生成的,这个网站挺好的,用起来比较简单方便,可以直接输入文字生成二维码,也可以放入链接生成二维码。

草料二维码:https://cli.im/

index.wxml

  1. <view class="container">
  2. <button bindtap='getScancode'>绑定车辆</button>
  3. </view>

index.js

  1. //index.js
  2. //获取应用实例
  3. const app = getApp()
  4. Page({
  5. data: {
  6. result: ''
  7. },
  8. onLoad: function() {
  9. },
  10. getScancode: function() {
  11. var _this = this;
  12. // 允许从相机和相册扫码
  13. wx.scanCode({
  14. success: (res) => {
  15. wx.navigateTo({
  16. url: '../navigator/navigator?title=' + res.result
  17. })
  18. var result = res.result;
  19. _this.setData({
  20. result: result,
  21. })
  22. }
  23. })
  24. }
  25. })

navigator.wxml

  1. <view> {{title}} </view>

navigator.js

  1. Page({
  2. data: {},
  3. onLoad: function (options) {
  4. // 生命周期函数--监听页面加载
  5. this.setData({
  6. title: options.title
  7. })
  8. }
  9. })

简单的效果:没有写css相关的代码了,主要是实现这个过程

5640239-c11d57e9ae391a15.png

更加详细的demo:(项目之中实现了一下)

index.wxml

  1. <!-- 底部的按钮 -->
  2. <button class='Scancode' bindtap='getScancode'>绑定车辆</button>

index.wxss

  1. /* 底部按钮 */
  2. .Scancode {
  3. font-size: 39rpx;
  4. background: #010101;
  5. position: fixed;
  6. bottom: 35rpx;
  7. display: flex;
  8. width: 90%;
  9. justify-content: center;
  10. color: #fff;
  11. border-radius:10rpx;
  12. margin-left:30rpx;
  13. margin-right: 30rpx;
  14. z-index:999;
  15. }

index.js

  1. //index.js
  2. //获取应用实例
  3. const app = getApp()
  4. Page({
  5. data: {
  6. result: ''
  7. },
  8. onLoad: function() {
  9. },
  10. getScancode: function() {
  11. var _this = this;
  12. // 允许从相机和相册扫码
  13. wx.scanCode({
  14. success: (res) => {
  15. wx.navigateTo({
  16. url: '../bind/bind?title=' + res.result
  17. })
  18. var result = res.result;
  19. _this.setData({
  20. result: result,
  21. })
  22. }
  23. })
  24. }
  25. })

要跳转到bind

bind.wxml

  1. <view class='page_row'>
  2. <view class="search">
  3. <input class='carid' placeholder=" {{title}}" focus="{{focus}}" />
  4. <input class='carnumber' placeholder="请输入车牌号和驾驶证号码" focus="{{focus}}" />
  5. <button type="primary" size="{{primarySize}}" loading="{{loading}}" plain="{{plain}}" disabled="{{disabled}}" bindtap="primary"> 绑定</button>
  6. </view>
  7. <view class='tip'>
  8. 定位标签和车辆绑定后即可看跟踪车辆位置
  9. </view>
  10. </view>

bind.wxss

  1. .search input {
  2. height: 100rpx;
  3. border-radius: 5px;
  4. border: 1px solid #d0d0d0;
  5. margin: 100rpx 30rpx;
  6. padding: 0 15rpx;
  7. }
  8. .search button {
  9. border-radius: 5px;
  10. border: 1px solid #d0d0d0;
  11. margin: 100rpx 30rpx;
  12. }
  13. .tip {
  14. text-align: center;
  15. font-size: 34rpx;
  16. }
  17. /* 搜索列表名称 */
  18. .list_name {
  19. position: relative;
  20. width: 100%;
  21. height: 90rpx;
  22. line-height: 90rpx;
  23. border-bottom: 1rpx solid #ddd;
  24. }
  25. /* 列表名称 */
  26. .lab_name {
  27. position: absolute;
  28. left: 30rpx;
  29. }

bind.js

  1. Page({
  2. data: {
  3. focus: false,
  4. inputValue: ''
  5. },
  6. onLoad: function(options) {
  7. // 生命周期函数--监听页面加载
  8. this.setData({
  9. title: options.title
  10. })
  11. }
  12. })

要扫的二维码


5640239-063cad596aa00654.png
图片.png

效果


5640239-6989b9260594bb12.png

其余的二维码工具;一个文艺的在线生成漂亮的二维码工具网站

顺手写的demo放在了github上面了,有需要的可以直接点击链接下载。
github地址:https://github.com/wangxiaoting666/bind

原文作者:祈澈姑娘。 技术博客:https://www.jianshu.com/u/05f416aefbe1
90后前端妹子一枚,爱编程,爱运营,爱折腾。长期坚持总结工作中遇到的技术问题。

热门推荐:前端,Java,产品经理,微信小程序,Python等200G资源合集大放送

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

闽ICP备14008679号