|
@@ -607,10 +607,10 @@ export default {
|
|
|
.then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
that.comprehenInfo = res.result;
|
|
|
+ that.getRankInfo();
|
|
|
}
|
|
|
})
|
|
|
.finally(() => {
|
|
|
- this.getRankInfo();
|
|
|
this.setTableQuery();
|
|
|
this.longSetTableQuery();
|
|
|
});
|
|
@@ -623,12 +623,15 @@ export default {
|
|
|
siteCode: that.siteCode,
|
|
|
subscriptionId: that.subscriptionId ? that.subscriptionId : '',
|
|
|
};
|
|
|
+ that.loading = true;
|
|
|
getAction('/seo/seoKeywordsRank/getRankInfo', d).then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
this.rankInfo.appointKeyword = res.result.appointKeyword;
|
|
|
this.rankInfo.longTailKeyword = res.result.longTailKeyword;
|
|
|
this.rankInfo.serverTime = res.result.serverTime;
|
|
|
}
|
|
|
+ }).finally(() => {
|
|
|
+ that.loading = false;
|
|
|
});
|
|
|
},
|
|
|
|