scanCode.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <view class="content">
  3. <image @click="scan" class="img" mode="widthFix" src="../../static/img/lQDPDhs0QZY4xBXNAtDNAZWw7dBth6OpB2gCJkosywCAAA_405_720.jpg" ></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url: '',
  11. shopid:'',
  12. }
  13. },
  14. onLoad() {
  15. },
  16. methods: {
  17. scan(){
  18. var that=this;
  19. uni.scanCode({
  20. success: function (res) {
  21. console.log('条码类型:' + res.scanType);
  22. console.log('条码内容:' + res.result);
  23. that.url=res.result;
  24. that.shopId=that.getHashQuery('shopId')
  25. if(that.shopId){
  26. that.gologin()
  27. }else{
  28. uni.showToast({
  29. title: '请扫码正确的二维码',
  30. icon: 'none',
  31. duration: 3000
  32. });
  33. }
  34. console.log(that.shopId)
  35. }
  36. });
  37. },
  38. gologin(){
  39. uni.navigateTo({
  40. url:'../login/login?shopId='+this.shopId
  41. })
  42. },
  43. getHashQuery (query) {
  44. if (this.url.indexOf(query) > -1) {
  45. let cur = this.url.slice(this.url.indexOf(query) + query.length + 1, this.url.length)
  46. if (cur.indexOf('&') > -1) {
  47. return cur.slice(0, cur.indexOf('&'))
  48. } else {
  49. return cur
  50. }
  51. } else {
  52. return false
  53. }
  54. }
  55. }
  56. }
  57. </script>
  58. <style scoped>
  59. .content{
  60. height: 100vh;
  61. background: #000000;
  62. display: flex;
  63. align-items: flex-end;
  64. }
  65. .img{
  66. width: 750rpx;
  67. }
  68. </style>