addDevice.vue 3.7 KB

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