123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view>
-
- </view>
- </template>
- <script>
- var that
- export default {
- data() {
- return {
-
- };
- },
- onLoad(){
- that = this
- },
- onShow: function() {
-
- if (uni.getStorageSync("userInfo").phone) {
- } else {
-
- }
-
- },
- methods:{
- }
- }
- </script>
- <style lang="scss" scoped>
-
- </style>
|