123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="container_box">
- <!-- <u-navbar height="90rpx" :auto-back="true" title=" " bgColor="#fff" :placeholder="true">
- <view class="u-nav-slot flex_box" slot="left">
-
- </view>
- </u-navbar> -->
- <view class="container_main">
- erp pda app
- </view>
- </view>
- </template>
- <script>
- const Base64 = require('js-base64').Base64
- import { bannerList } from '@/common/request/apis/index'
- import { mapGetters } from 'vuex'
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
- // JSON.parse(Base64.decode(that.$Route.query.classData))
- },
- onShow() {
-
- },
- computed: {
- // ...mapGetters(['isLogin'])
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .container_box {
- background-color: #ffffff;
- padding: 0 0 20rpx;
- .container_main {
- padding: 0 20rpx;
- }
-
- }
- </style>
|