index.vue 814 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view class="container_box">
  3. <!-- <u-navbar height="90rpx" :auto-back="true" title=" " bgColor="#fff" :placeholder="true">
  4. <view class="u-nav-slot flex_box" slot="left">
  5. </view>
  6. </u-navbar> -->
  7. <view class="container_main">
  8. erp pda app
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. const Base64 = require('js-base64').Base64
  14. import { bannerList } from '@/common/request/apis/index'
  15. import { mapGetters } from 'vuex'
  16. export default {
  17. data() {
  18. return {
  19. }
  20. },
  21. onLoad() {
  22. // JSON.parse(Base64.decode(that.$Route.query.classData))
  23. },
  24. onShow() {
  25. },
  26. computed: {
  27. // ...mapGetters(['isLogin'])
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. .container_box {
  35. background-color: #ffffff;
  36. padding: 0 0 20rpx;
  37. .container_main {
  38. padding: 0 20rpx;
  39. }
  40. }
  41. </style>