hand.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // pages/signIn/hand/hand.js
  2. const app=getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. keyword:""
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad: function (options) {
  14. },
  15. bindinput(e){
  16. console.log(e)
  17. this.setData({
  18. keyword:e.detail.value
  19. })
  20. },
  21. sign: function () {
  22. var that=this;
  23. app.api.useApi(app.globalData.baseAppUrl + "api/admin/sorting/sign", {
  24. seal_no:this.data.keyword
  25. }, "post").then(function (res) {
  26. console.log(res);
  27. if (res.code != 200) {
  28. wx.showLoading({
  29. title:res.message.msg,
  30. })
  31. setTimeout(function () {
  32. wx.hideLoading();
  33. }, 1000);
  34. } else {
  35. wx.hideLoading();
  36. var data=res.message.data
  37. wx.showLoading({
  38. title: res.message.msg,
  39. })
  40. setTimeout(function () {
  41. wx.hideLoading();
  42. let pages = getCurrentPages();
  43. wx.navigateBack({
  44. delta: 1 //想要返回的层级
  45. })
  46. }, 1000);
  47. }
  48. }).catch(function (err) {
  49. console.log(222);
  50. })
  51. },
  52. })