|
@@ -1,7 +1,8 @@
|
|
|
<template>
|
|
|
<div class="article-content">
|
|
|
<van-skeleton
|
|
|
- :row="3"
|
|
|
+ :row="4"
|
|
|
+ :rowWidth="['100%', '100%', '60%', '20%']"
|
|
|
:class="{ 'bg-white': reqState.loading }"
|
|
|
:loading="reqState.loading"
|
|
|
>
|
|
@@ -340,11 +341,14 @@ export default {
|
|
|
} else {
|
|
|
try {
|
|
|
await this.getPreAgentInfo()
|
|
|
- await this.getBaseInfo()
|
|
|
+ const r = await this.getBaseInfo()
|
|
|
+ if (r) {
|
|
|
+ this.finishLoading()
|
|
|
+ }
|
|
|
} catch (error) {
|
|
|
console.error(error)
|
|
|
} finally {
|
|
|
- this.finishLoading()
|
|
|
+ // console.log('基础接口请求完成')
|
|
|
}
|
|
|
if (this.canRead) {
|
|
|
this.getAdvancedInfo()
|