style: formate code style

This commit is contained in:
xingyu 2022-08-03 14:15:46 +08:00
parent 1f96ab6e43
commit a9c9007337
2 changed files with 5 additions and 6 deletions

View File

@ -11,13 +11,13 @@
alt="" alt=""
style="width: 100%; height: 100%; display: block" style="width: 100%; height: 100%; display: block"
/> />
<div class="verify-refresh" @click="refresh" v-show="showRefresh" <div class="verify-refresh" @click="refresh" v-show="showRefresh">
><i class="iconfont icon-refresh"></i> <i class="iconfont icon-refresh"></i>
</div> </div>
<transition name="tips"> <transition name="tips">
<span class="verify-tips" v-if="tipWords" :class="passFlag ? 'suc-bg' : 'err-bg'">{{ <span class="verify-tips" v-if="tipWords" :class="passFlag ? 'suc-bg' : 'err-bg'">
tipWords {{ tipWords }}
}}</span> </span>
</transition> </transition>
</div> </div>
</div> </div>

View File

@ -127,7 +127,6 @@ const getRoutes = async () => {
if (!redirect.value) { if (!redirect.value) {
redirect.value = '/' redirect.value = '/'
} }
console.info(redirect.value)
push({ path: redirect.value || permissionStore.addRouters[0].path }) push({ path: redirect.value || permissionStore.addRouters[0].path })
} }