choice.js 1004 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // pages/sorting/choice.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. inputval:""
  8. },
  9. /**
  10. * 生命周期函数--监听页面加载
  11. */
  12. onLoad: function (options) {
  13. },
  14. getScancode: function () {
  15. var _this = this;
  16. // 允许从相机和相册扫码
  17. wx.scanCode({
  18. onlyFromCamera: true,
  19. scanType:['barCode', 'qrCode','datamatrix','pdf417'],
  20. success: (res) => {
  21. console.log(res);
  22. var result = res.result;
  23. _this.sign(result);
  24. _this.setData({
  25. inputval: result,
  26. })
  27. },
  28. fail:(err)=>{
  29. console.log(err);
  30. }
  31. })
  32. },
  33. bindinput(e){
  34. this.setData({
  35. inputval:e.detail.value
  36. })
  37. },
  38. toOrder(){
  39. wx.navigateTo({
  40. url: '../order/order?wash_code='+this.data.inputval,
  41. })
  42. }
  43. })