1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="content">
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- loading: null,
- outUserId: null,
- qwUserId: null,
- currentPath: null,
- baseUrl:uni.getStorageSync('requestPath')
-
- };
- },
- onShow() {
- this.navigatHandler();
- },
- methods: {
- navigatHandler() {
- uni.reLaunch({
- url: '../user/customerDetail',
- })
- },
-
- }
-
- };
-
- </script>
- <style>
- page{
- background-color: #fff;
- }
- .content {
- background-color: #fff;
- height: 100%;
- width: 100%;
- position: relative;
- }
- </style>
|