choice.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. // pages/sorting/choice.js
  2. const app=getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. inputval:""
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad: function (options) {
  14. },
  15. toEnter(){
  16. wx.navigateTo({
  17. url: '../enter/enter',
  18. })
  19. },
  20. bindinput(e){
  21. this.setData({
  22. inputval:e.detail.value
  23. })
  24. },
  25. getScancode: function () {
  26. var _this = this;
  27. wx.scanCode({
  28. onlyFromCamera: true,
  29. scanType:['barCode', 'qrCode','datamatrix','pdf417'],
  30. success: (res) => {
  31. console.log(res);
  32. var result = res.result;
  33. wx.navigateTo({
  34. url: '../enter/enter?seal_no='+result,
  35. })
  36. },
  37. fail:(err)=>{
  38. console.log(err);
  39. }
  40. })
  41. },
  42. checknum: function (seal_no) {
  43. var that=this;
  44. wx.navigateTo({
  45. url: '../enter/enter?seal_no='+this.data.inputval,
  46. })
  47. // app.api.useApi(app.globalData.baseAppUrl + "api/admin/sorting/sign", {
  48. // seal_no:seal_no
  49. // }, "post").then(function (res) {
  50. // console.log(res);
  51. // if (res.code != 200) {
  52. // wx.showLoading({
  53. // title:res.message.msg,
  54. // })
  55. // setTimeout(function () {
  56. // wx.hideLoading();
  57. // }, 1000);
  58. // } else {
  59. // wx.hideLoading();
  60. // var data=res.message.data
  61. // wx.showLoading({
  62. // title: res.message.msg,
  63. // })
  64. // setTimeout(function () {
  65. // wx.hideLoading();
  66. // }, 1000);
  67. // }
  68. // }).catch(function (err) {
  69. // console.log(222);
  70. // })
  71. },
  72. })