deviceUnbind.js 834 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // pages/operation/deviceUnbind.js
  2. const util = require('../../utils/util.js');
  3. const app = getApp();
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. scanCode: '',
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad: function (options) {
  15. },
  16. unbundling(){//解绑设备
  17. util.request(util.api.unbundling,{deviceSn:this.data.scanCode}, "POST", true, true,app.globalData.token).then((res)=>{
  18. if (res.code == 200) {
  19. util.toast('设备解绑成功');
  20. }
  21. }).catch((res) => {})
  22. },
  23. scanCodeEvent() {
  24. var that = this;
  25. wx.scanCode({
  26. onlyFromCamera: true, // 只允许从相机扫码
  27. success(res) {
  28. console.log("扫码成功:" + JSON.stringify(res))
  29. that.setData({
  30. scanCode: res.result
  31. })
  32. }
  33. })
  34. },
  35. })