1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- // pages/sorting/choice.js
- const app=getApp()
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- inputval:""
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- toEnter(){
- wx.navigateTo({
- url: '../enter/enter',
- })
- },
- bindinput(e){
- this.setData({
- inputval:e.detail.value
- })
- },
- getScancode: function () {
- var _this = this;
- wx.scanCode({
- onlyFromCamera: true,
- scanType:['barCode', 'qrCode','datamatrix','pdf417'],
- success: (res) => {
-
- console.log(res);
- var result = res.result;
- wx.navigateTo({
- url: '../enter/enter?seal_no='+result,
- })
- },
- fail:(err)=>{
-
- console.log(err);
- }
- })
- },
- checknum: function (seal_no) {
- var that=this;
- wx.navigateTo({
- url: '../enter/enter?seal_no='+this.data.inputval,
- })
- // app.api.useApi(app.globalData.baseAppUrl + "api/admin/sorting/sign", {
- // seal_no:seal_no
- // }, "post").then(function (res) {
- // console.log(res);
- // if (res.code != 200) {
- // wx.showLoading({
- // title:res.message.msg,
- // })
- // setTimeout(function () {
- // wx.hideLoading();
- // }, 1000);
-
- // } else {
- // wx.hideLoading();
- // var data=res.message.data
- // wx.showLoading({
- // title: res.message.msg,
- // })
- // setTimeout(function () {
- // wx.hideLoading();
- // }, 1000);
-
- // }
- // }).catch(function (err) {
-
- // console.log(222);
- // })
- },
- })
|