index.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // pages/camera/index.js
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. nvabarData: {
  9. showCapsule: 1, //是否显示左上角图标,消息中心 1表示显示 0表示不显示
  10. showBack: 0, //返回
  11. title: '摄像头', //导航栏 中间的标题
  12. // 此页面 页面内容距最顶部的距离
  13. height: app.globalData.height * 2 + 20,
  14. },
  15. scanCodeMsg: "",
  16. tempFilePaths: ''
  17. },
  18. // 扫码
  19. scanCode: function () {
  20. var that = this;
  21. wx.scanCode({ //扫描API
  22. success(res) { //扫描成功
  23. // console.log(res) //输出回调信息
  24. that.setData({
  25. scanCodeMsg: res.result
  26. });
  27. wx.showToast({
  28. title: '成功',
  29. duration: 1000
  30. })
  31. }
  32. })
  33. },
  34. // 拍照获取图片路径
  35. chooseimage: function () {
  36. var _this = this;
  37. wx.chooseImage({
  38. count: 1, // 默认9
  39. sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
  40. sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
  41. success: function (res) {
  42. // console.log(res.tempFilePaths);
  43. // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
  44. _this.setData({
  45. tempFilePaths: res.tempFilePaths
  46. })
  47. }
  48. })
  49. },
  50. /**
  51. * 生命周期函数--监听页面加载
  52. */
  53. onLoad: function (options) {
  54. },
  55. /**
  56. * 生命周期函数--监听页面初次渲染完成
  57. */
  58. onReady: function () {
  59. },
  60. /**
  61. * 生命周期函数--监听页面显示
  62. */
  63. onShow: function () {
  64. },
  65. /**
  66. * 生命周期函数--监听页面隐藏
  67. */
  68. onHide: function () {
  69. },
  70. /**
  71. * 生命周期函数--监听页面卸载
  72. */
  73. onUnload: function () {
  74. },
  75. /**
  76. * 页面相关事件处理函数--监听用户下拉动作
  77. */
  78. onPullDownRefresh: function () {
  79. },
  80. /**
  81. * 页面上拉触底事件的处理函数
  82. */
  83. onReachBottom: function () {
  84. },
  85. /**
  86. * 用户点击右上角分享
  87. */
  88. onShareAppMessage: function () {
  89. }
  90. })