index.wpy 856 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <style lang="less">
  2. .overflow-wrap {
  3. width: 100%;
  4. height: 100%;
  5. .scroll-view {
  6. position: relative;
  7. width: 100%;
  8. height: 100%;
  9. z-index: 2;
  10. }
  11. }
  12. .avatar-wrapper {
  13. width: 80px;
  14. height: 80px;
  15. }
  16. .avatar {
  17. width: 80px;
  18. height: 80px;
  19. }
  20. </style>
  21. <template>
  22. <div>
  23. 绑定租户页面
  24. </div>
  25. </template>
  26. <script>
  27. import wepy from '@wepy/core';
  28. import eventHub from '@/common/eventHub';
  29. import { mapState } from '@wepy/x';
  30. import store from '@/store';
  31. import testMixin from '@/mixins/test';
  32. import { setUserInfoByAuth } from '@/service/user';
  33. wepy.page({
  34. store,
  35. config: {
  36. navigationBarTitleText: 'test'
  37. },
  38. data: {},
  39. onLoad() {},
  40. onShow() {
  41. // this.checkAuthCamra();
  42. },
  43. methods: {},
  44. created() {}
  45. });
  46. </script>
  47. <config>
  48. {
  49. navigationBarTitleText: '公司身份选择',
  50. usingComponents: {
  51. }
  52. }
  53. </config>