| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view class="layout-page" :style="themeStyle">
- <v-header :title="$t('auth.a0')"></v-header>
- <view class="rounded-md overflow-hidden m-lg bg-panel-3 box-shadow">
- <v-link to="/pages/auth/primary" class="d-flex align-center p-md border-b link-active ">
- <view class="flex-fill color-light fn-lg">
- {{$t('auth.a1')}}
- </view>
- <view class="status" v-if="detail.primary_status==0">
- <van-icon class="fn-middle" name="info-o" />
- {{$t('auth.a2')}}
- </view>
- <view class="status color-buy" v-else>
- <van-icon class="fn-middle" name="passed" />
- {{$t('auth.a3')}}
- </view>
- <van-icon class="m-l-xs" name="arrow" />
- </v-link>
- <v-link tag="view" :to="detail.status!=2?'/pages/auth/senior':''" class="d-flex align-center p-md border-b link-active">
- <view class="flex-fill color-light fn-lg ">
- {{$t('auth.a4')}}
- </view>
- <view class="status " v-if="detail.status==0">
- <van-icon class="fn-middle" name="info-o" />
- {{$t('auth.a2')}}
- </view>
- <view class="status color-yellows" v-else-if="detail.status==1">
- <van-icon class="fn-middle" name="clock-o" />
- {{$t('auth.a5')}}
- </view>
- <view class="status color-buy" v-else-if="detail.status==2">
- <van-icon class="fn-middle" name="passed" />
- {{$t('auth.a3')}}
- </view>
- <view class="status color-sell" v-else-if="detail.status==3">
- <van-icon class="fn-middle" name="close" />
- {{$t('auth.a6')}}
- </view>
- <van-icon class="m-l-xs" name="arrow" />
- </v-link>
- </view>
- </view>
- </template>
- <script>
- import { mapState,mapGetters} from "vuex";
- import Profile from "@/api/profile";
- export default {
- name:'auth',
- data(){
- return {
- detail:{}
- }
- },
- computed:{
- ...mapState({
- user:'user'
- }),
- ...mapGetters(['themeStyle'])
- },
- methods:{
- getAuthInfo(){
- Profile.getAuthInfo().then(res=>{
- this.detail = res.data
- })
- }
- },
- onShow(){
- this.getAuthInfo()
- }
- // created(){
- // this.getAuthInfo()
- // }
- }
- </script>
- <style lang="scss" scoped>
-
- </style>
|