addDevice.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <!-- pages/addDevice/addDevice.wxml -->
  3. <view class="container">
  4. <view class="add-container">
  5. <form @submit="bindAddSubmit">
  6. <view class="form-container">
  7. <view class="macid-item">
  8. <input type="text" name="macid" placeholder="请输入15位IMEI号" class="form-input" :value="macid" />
  9. <image src="/static/resource/images/xiangji2.png" class="form-img-right" @tap="bindScanCode"></image>
  10. </view>
  11. <view class="form-btn">
  12. <button class="login-btn" form-type="submit">添加设备</button>
  13. </view>
  14. </view>
  15. </form>
  16. <image src="/static/resource/images/shuoming.png" class="bottom-img"></image>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. // pages/addDevice/addDevice.js
  22. var config = require('../../common/config.js');
  23. var http = require('../../common/http.js');
  24. var common = require('../../common/common.js');
  25. var storage = require('../../common/storage.js');
  26. export default {
  27. data() {
  28. return {
  29. macid: ''
  30. };
  31. }
  32. /**
  33. * 生命周期函数--监听页面加载
  34. */,
  35. onLoad: function (options) {},
  36. /**
  37. * 生命周期函数--监听页面初次渲染完成
  38. */
  39. onReady: function () {},
  40. /**
  41. * 生命周期函数--监听页面显示
  42. */
  43. onShow: function () {},
  44. /**
  45. * 生命周期函数--监听页面隐藏
  46. */
  47. onHide: function () {},
  48. /**
  49. * 生命周期函数--监听页面卸载
  50. */
  51. onUnload: function () {},
  52. /**
  53. * 页面相关事件处理函数--监听用户下拉动作
  54. */
  55. onPullDownRefresh: function () {},
  56. /**
  57. * 页面上拉触底事件的处理函数
  58. */
  59. onReachBottom: function () {},
  60. /**
  61. * 用户点击右上角分享
  62. */
  63. onShareAppMessage: function () {},
  64. methods: {
  65. bindScanCode() {
  66. uni.scanCode({
  67. onlyFromCamera: true,
  68. scanType: [],
  69. success: (res) => {
  70. console.log(res);
  71. if (res.result) {
  72. this.setData({
  73. macid: res.result
  74. });
  75. }
  76. },
  77. fail: function (res) {},
  78. complete: function (res) {}
  79. });
  80. },
  81. bindAddSubmit(e) {
  82. console.log(e.detail.value);
  83. const macid = e.detail.value.macid;
  84. if (common.isEmpty(macid)) {
  85. common.simpleToast('请输入设备编号');
  86. return;
  87. }
  88. http.postApi(
  89. config.API_BATTERY_BIND,
  90. {
  91. macid: macid
  92. },
  93. (resp) => {
  94. if (resp.data.code === 200) {
  95. common.simpleToast('添加成功');
  96. storage.setRefreshDeviceoPage(true);
  97. setTimeout(function () {
  98. uni.navigateBack({
  99. delta: 1
  100. });
  101. }, 1500);
  102. } else {
  103. common.simpleToast(resp.data.msg);
  104. }
  105. }
  106. );
  107. }
  108. }
  109. };
  110. </script>
  111. <style>
  112. @import './addDevice.css';
  113. </style>