小程序模板網(wǎng)

微信小程序消息通知-打卡考勤

發(fā)布時(shí)間:2018-12-03 10:18 所屬欄目:小程序開發(fā)教程
 

微信小程序消息通知-打卡考勤

效果:

稍微改一下js就行,有不必要的錯(cuò)誤,我就不改了,哈哈!

index.js

//index.js
const app = getApp()
// 填寫微信小程序appid
var appid = '';
// 填寫微信小程序secret  
var secret = '';
Page({
  // 頁面數(shù)據(jù)
  data: {
    access_token: '',
    openid: '',
  },

  // 表單請(qǐng)求
  formRequst: function (e) {
    var that = this;
    // 登錄
    wx.login({
      success: res => {
        // 調(diào)用接口獲取登錄憑證(code)
        console.log("獲取code 成功", res.code);
        var code = res.code;
        // 獲取openId
        wx.request({
          url: 'https://api.weixin.qq.com/sns/jscode2session?appid=' + appid + '&secret=' + secret + '&grant_type=authorization_code&js_code=' + code,
          header: {
            'content-type': 'application/json' //默認(rèn)值
          },
          success: function (res) {
            console.log("獲取openid 成功", res.data.openid);
            var openid = res.data.openid;
            that.setData({
              openid: openid
            })
            // wx.setStorageSync("openid", openid)

            // 獲取 access_token
            wx.request({
              url: 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' + appid + '&secret=' + secret,
              method: 'GET',
              header: {
                'content-type': 'application/json' //默認(rèn)值
              },
              // 成功
              success: function (res) {
                console.log("獲取小程序 access_token 成功", res.data.access_token);
                that.setData({
                  access_token: res.data.access_token
                })

                // 上上一步
              },
              // 失敗
              fail: function (err) {
                console.log("獲取小程序 access_token 失敗", err);
              }
            })

            // 上一步
          },
          fail: function (err) {
            console.log("獲取openid 失敗", err);
          }
        })
      }
    })
  },
  // 提交表單
  formSubmit: function (e) {
    console.log('form發(fā)生了submit事件,攜帶數(shù)據(jù)為:', e.detail.value);
    console.log('form發(fā)生了submit事件,攜帶數(shù)據(jù)為:', e.detail.formId);


    var that = this;
    // 發(fā)送模板消息
    wx.request({
      url: 'https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=' + that.data.access_token,
      data: {
        // openid
        "touser": wx.getStorageSync("openid"),
        // 模板消息的id
        "template_id": "",
        // "form_id": "FORMID",
        "form_id": e.detail.formId,
        data: {
          "keyword1": {
            "value": "2018.10.10"
          },
          "keyword2": {
            "value": "小紅"
          }
        },
        "emphasis_keyword": "keyword1.DATA"
      },
      method: 'POST',
      // 成功
      success: function (res) {
        var data = res.data;
        console.log("sendTemplateMessage 成功", data);
        wx.showToast({
          title: '發(fā)送成功',
          icon: 'success'
        })
      },
      // 失敗
      fail: function (err) {
        console.log("sendTemplateMessage 失敗", err);
      }
    })
  },



  /**
   * 生命周期函數(shù)--監(jiān)聽頁面加載
   */
  onLoad: function (options) {
    // this.formSubmit();
  },

  /**
   * 生命周期函數(shù)--監(jiān)聽頁面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函數(shù)--監(jiān)聽頁面顯示
   */
  onShow: function () {
    this.formRequst();
  },

  /**
   * 生命周期函數(shù)--監(jiān)聽頁面隱藏
   */
  onHide: function () {

  },

  /**
   * 生命周期函數(shù)--監(jiān)聽頁面卸載
   */
  onUnload: function () {

  },

  /**
   * 頁面相關(guān)事件處理函數(shù)--監(jiān)聽用戶下拉動(dòng)作
   */
  onPullDownRefresh: function () {

  },

  /**
   * 頁面上拉觸底事件的處理函數(shù)
   */
  onReachBottom: function () {

  },

  /**
   * 用戶點(diǎn)擊右上角分享
   */
  onShareAppMessage: function () {

  }
})
index.wxml
<!--index.wxml-->
<view class='page'>
  <!-- 標(biāo)題 -->
  <view class='title'>
    <text>考勤打卡</text>
  </view>
  <form class="text" report-submit="true" bindsubmit='formSubmit' bindreset='formReset'>
    <!-- 考勤填表 -->
    <input name="date" placeholder='日期' class='input'></input>
    <input name="name" placeholder='姓名' class='input'></input>
    <!-- 按鈕設(shè)置 -->
    <view class='btn'>
      <button form-type='submit' type='primary'>提交</button>
      <button form-type='reset' type='primary'>重置</button>
    </view>
  </form>
</view>
index.wxss
/**index.wxss**/

.page {
  margin: 0rpx 50rpx 50rpx 50rpx;
  font-size: 50rpx;
  background-color: lavender;
}

.title {
  text-align: center;
}

.input {
  margin: 0rpx 0rpx 50rpx 0rpx;
  width: 100%;
}

.btn {
  display: flex;
  flex-direction: row;
}


易優(yōu)小程序(企業(yè)版)+靈活api+前后代碼開源 碼云倉庫:starfork
本文地址:http://u-renovate.com/wxmini/doc/course/24989.html 復(fù)制鏈接 如需定制請(qǐng)聯(lián)系易優(yōu)客服咨詢:800182392 點(diǎn)擊咨詢
QQ在線咨詢