微信小程序?qū)崿F(xiàn)二維碼簽到考勤系統(tǒng)

一。手動生成二維碼的.js代碼

創(chuàng)新新互聯(lián),憑借十多年的成都網(wǎng)站設(shè)計、做網(wǎng)站經(jīng)驗,本著真心·誠心服務(wù)的企業(yè)理念服務(wù)于成都中小企業(yè)設(shè)計網(wǎng)站有上千案例。做網(wǎng)站建設(shè),選成都創(chuàng)新互聯(lián)

這里要引入一個官方文檔wxapp.qrcode.min.js

let drawQrcode = require('../utils/wxapp.qrcode.min.js');//引入wxapp.qrcode.min.js文件
createQRcode(canvasWidth, canvasHeight, canvasId, url) {
  // 調(diào)用qrcode.js里的方法,傳入對應(yīng)參數(shù)
  drawQrcode({
   width: canvasWidth,
   height: canvasHeight,
   canvasId: canvasId,
   text: url
  })
  console.log(drawQrcode.width)
 },
 setCanvasSize() {
  let size = {};
  // getSystemInfoSync 微信小程序提供getSystemInfoSync獲取設(shè)備的信息
  let res = wx.getSystemInfoSync();
  // console.log(res);
  // 獲取比例
  let scale = 686 / 750;
  let width = res.windowWidth * scale;
  let height = width;
  size.w = width;
  size.h = height;
  return size;
 },
 formsubmit(e) {
  let url = e.detail.value.url || this.data.placeholder;
  // let url = e.detail.value.url ? e.detail.value.url : this.data.placeholder;
  wx.showToast({
   title: '生成中',
   icon: 'loading',
   duration: 2000
  })
  let that_ = this;

  let timer = setTimeout(() => {
   let size = that_.setCanvasSize();
   //調(diào)用createQRcode方法
   that_.createQRcode(size.w, size.h, 'mycanvars', url);
   wx.hideToast();
   clearTimeout(timer);
  }, 2000)},


 /**
  * 生命周期函數(shù)--監(jiān)聽頁面加載
  */
 onLoad: function (options) {
  //setCanvasSize 拿到畫布區(qū)域的尺寸(微信小程序不支持dom的操作,所以單獨定義方法去獲?。?  let size = this.setCanvasSize();
  // console.log(size);
  let url = this.data.placeholder;
  //調(diào)用createQRcode方法
  this.createQRcode(size.w, size.h, 'mycanvars', url);
 },

二。準(zhǔn)備工作,導(dǎo)入數(shù)據(jù)庫表,和unit.js。獲取時間

const DB = wx.cloud.database().collection("cows")
const TB = wx.cloud.database().collection("log")
let i = 0
let id=''
var util = require('../utils/util.js');

三。寫入簽到簽退按鈕的.js代碼

now(){
  
  var that = this;
  console.log(that.data.nows)
  if (i == 0 && that.data.now =='簽到'){
   i=1;
   var time1 = util.formatTime(new Date())
   DB.add({
    data: {
     statctime:time1,
     endtime: ''
    },
    success(res) {
     id=res._id
     console.log("簽到成功", res._id)
    },
    fail(res) {
     console.log("簽到失敗", res)
    }
   })
   that.setData({
    statc: time1,
    now: '已簽到',
    color: 'rgb(199, 194, 194)'
   })
   wx.showToast({
    title: '簽到成功'
   })
   var timeout= setTimeout(function(){
    wx.switchTab({
     url: '/pages/arrary/first/ones/ones',
    })
   },1000)
   
  }
  else{
   wx.showToast({
    title: '已簽到,請勿重復(fù)簽到',
    icon: 'none'
   })
  }
 },
 nows(){
  var that = this;
  if (i == 1 || that.data.now == '已簽到' && that.data.nows == '簽退'){
   i=2;
   var time2 = util.formatTime(new Date())
   DB.doc(id).update({
    data: {
     endtime: time2
    },
    success(res) {
     console.log("簽退成功", res)
    },
    fail(res) {
     console.log("簽退失敗", res)
    }
   })
   that.setData({
    ends: time2,
    nows: '已簽退',
    colors: 'rgb(199, 194, 194)'
   })
   wx.showToast({
    title: '簽退成功'
   })
  }
  else
  {
   if(i==2){
    wx.showToast({
     title: '已簽退,請勿重復(fù)簽退',
     icon: 'none'
    })
   }
   else{
    wx.showToast({
     title: '請先簽到,簽到之后方可簽退!',
     icon: 'none'
    })
   }
  }
 },

第四。頁面監(jiān)聽簽退后會跳出簽退頁面。重新進入需要監(jiān)聽。

 var that = this
  wx.cloud.callFunction({
   name: "getopenid",
   success(res) {
    var openid = res.result.openid
    DB.get({
     success(e) {
      console.log(e)
      var lenths = e.data.length;
      console.log(lenths);
      var time1 = util.formatTime(new Date())
      for (var i = 0; i < lenths; i++) {
       if (e.data[i]._openid == openid && e.data[i].statctime.substring(0, 10) == time1.substring(0, 10)) {
        var st = e.data[i].statctime
        var en = e.data[i].endtime
        that.setData({
         statc: st,
         now: '已簽到',
         color: 'rgb(199, 194, 194)',
        })
       }
      }
     },
     fail(e) {
      console.log("查詢失敗", e)
     }
    })
    console.log("獲取成功", res.result.openid)

   },
   fail(res) {
    console.log("獲取成功", res)
   }
  })

到這,一個簡單的簽到頁面就完成了。如有不對的地方,小菜鳥期盼大神的指導(dǎo)。
希望對你們有用處。

總結(jié)

以上所述是小編給大家介紹的微信小程序?qū)崿F(xiàn)二維碼簽到考勤系統(tǒng),希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對創(chuàng)新互聯(lián)網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!

本文名稱:微信小程序?qū)崿F(xiàn)二維碼簽到考勤系統(tǒng)
URL標(biāo)題:http://bm7419.com/article48/jdophp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、定制開發(fā)、建站公司、移動網(wǎng)站建設(shè)、品牌網(wǎng)站建設(shè)網(wǎng)站導(dǎo)航

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都做網(wǎng)站