test.vue 581 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class="container">
  3. <button style="margin-top: 40%;" @click="downLoad">下载测试</button>
  4. </view>
  5. </template>
  6. <script>
  7. import {
  8. exportQrCode
  9. } from '@/api/download.js'
  10. import config from '@/config'
  11. export default {
  12. data() {
  13. return {
  14. logs: []
  15. }
  16. },
  17. onLoad(o) {
  18. },
  19. methods: {
  20. downLoad() {
  21. exportQrCode({
  22. "isWhere": false,
  23. "deviceIds": [2305000127]
  24. }).then(res => {
  25. console.log(res)
  26. })
  27. }
  28. },
  29. }
  30. </script>
  31. <style scoped lang="scss">
  32. .container {
  33. padding: 24rpx;
  34. line-height: 50rpx;
  35. }
  36. </style>