12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <style lang="less">
- .overflow-wrap {
- width: 100%;
- height: 100%;
- .scroll-view {
- position: relative;
- width: 100%;
- height: 100%;
- z-index: 2;
- }
- }
- .avatar-wrapper {
- width: 80px;
- height: 80px;
- }
- .avatar {
- width: 80px;
- height: 80px;
- }
- </style>
- <template>
- <div>
- 绑定租户页面
- </div>
- </template>
- <script>
- import wepy from '@wepy/core';
- import eventHub from '@/common/eventHub';
- import { mapState } from '@wepy/x';
- import store from '@/store';
- import testMixin from '@/mixins/test';
- import { setUserInfoByAuth } from '@/service/user';
- wepy.page({
- store,
- config: {
- navigationBarTitleText: 'test'
- },
- data: {},
- onLoad() {},
- onShow() {
- // this.checkAuthCamra();
- },
- methods: {},
- created() {}
- });
- </script>
- <config>
- {
- navigationBarTitleText: '公司身份选择',
- usingComponents: {
- }
- }
- </config>
|