You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
apply-assistant-v3/pages/home/order.vue

27 lines
484 B
Vue

7 months ago
<template>
3 months ago
<view v-if="!isLogin" class="m-log g_flex_column_start g_bg_page">
<view>
2 months ago
<rh-login-false-list/>
3 months ago
</view>
</view>
<view class="p-root-home-quick g_w_all g_bg_f_5 g_kuaishou" v-else>
2 months ago
<rh-apply useform='pages' ></rh-apply>
7 months ago
</view>
</template>
<script>
3 months ago
2 months ago
export default {
7 months ago
data() {
return {
2 months ago
isLogin: false,
7 months ago
};
},
onShow() {
let that = this;
2 months ago
this.isLogin = uni.getStorageSync("apply-token") ? true : false;
7 months ago
},
};
</script>
2 months ago
<style lang="scss"></style>