|
@@ -346,8 +346,10 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
siteinfo: [],
|
|
|
+ subscriptionId: "",
|
|
|
selectSiteInfo: {},
|
|
|
siteCode: "",
|
|
|
+ planId:"",
|
|
|
columns: [
|
|
|
{
|
|
|
title: "序号",
|
|
@@ -451,6 +453,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
+ this.siteCode =localStorage.getItem("siteCode");
|
|
|
this.getSiteInfo();
|
|
|
},
|
|
|
watch: {
|
|
@@ -540,7 +543,7 @@ export default {
|
|
|
this.ipagination.current = 1;
|
|
|
}
|
|
|
var params = this.getQueryParams();//查询条件
|
|
|
- params.subscriptionId = that.selectSiteInfo.subscriptionId;
|
|
|
+ params.subscriptionId = that.subscriptionId;
|
|
|
params.keywordType = 1;
|
|
|
this.loading = true;
|
|
|
getAction(this.url.list, params).then((res) => {
|
|
@@ -577,46 +580,13 @@ export default {
|
|
|
//先执行获取site信息,只有在获取到siteCode之后,才能执行以下方法
|
|
|
getSiteInfo() {
|
|
|
let that = this;
|
|
|
- getAction("/seo/seoKeywordsRank/getAllSites").then(function(res) {
|
|
|
+ let data = {
|
|
|
+ siteCode: that.siteCode
|
|
|
+ };
|
|
|
+ getAction("/seo/seoKeywordsRank/getSubscriptionIdBySiteCode", data).then(function(res) {
|
|
|
if (res.code == 200) {
|
|
|
- that.siteinfo = res.result;
|
|
|
- if (res.result.length > 0) {
|
|
|
- let isInSite = false;
|
|
|
- for (let i in res.result) {
|
|
|
- if (localStorage.getItem("siteCode") !== null && res.result[i].code === localStorage.getItem("siteCode")) {
|
|
|
- isInSite = true;
|
|
|
- that.selectSiteInfo = res.result[i];
|
|
|
- }
|
|
|
- }
|
|
|
- if (localStorage.getItem("siteCode") !== null && isInSite) {
|
|
|
- that.siteCode = localStorage.getItem("siteCode");
|
|
|
- } else {
|
|
|
- that.siteCode = res.result[0].code;
|
|
|
- that.selectSiteInfo = res.result[0];
|
|
|
- localStorage.setItem("siteCode", res.result[0].code);
|
|
|
- }
|
|
|
- }
|
|
|
- //如果是从客户案例过来的数据,直接走下面方法
|
|
|
- if (that.routerQuery.code) {
|
|
|
- let rowData = {};
|
|
|
- for (let i in res.result) {
|
|
|
- if (that.routerQuery.code === res.result[i].code) {
|
|
|
- rowData = res.result[i];
|
|
|
- }
|
|
|
- }
|
|
|
- localStorage.setItem("siteCode", that.routerQuery.code);
|
|
|
- that.show = 3;
|
|
|
- that.longShow = 3;
|
|
|
- that.siteCode = that.routerQuery.code;
|
|
|
- that.keywordType = Number(that.routerQuery.keywordType);
|
|
|
- that.selectSiteInfo = rowData;
|
|
|
- that.getAllInfo();
|
|
|
- return;
|
|
|
- }
|
|
|
- that.resetAllInfo();
|
|
|
- that.getAllInfo();
|
|
|
- } else {
|
|
|
- // that.$message.error('获取站点code失败,请刷新重试')
|
|
|
+ that.subscriptionId = res.result[0].id??"";
|
|
|
+ that.planId = res.result[0].planId??"";
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -675,7 +645,7 @@ export default {
|
|
|
let that = this;
|
|
|
let d = {
|
|
|
siteCode: that.siteCode,
|
|
|
- planId: that.selectSiteInfo.planId ? that.selectSiteInfo.planId : ""
|
|
|
+ planId: that.planId ? that.planId : ""
|
|
|
};
|
|
|
getAction("/seo/seoKeywordsRank/comprehensiveInfo", d).then(res => {
|
|
|
if (res.code == 200) {
|
|
@@ -694,7 +664,7 @@ export default {
|
|
|
let that = this;
|
|
|
let d = {
|
|
|
siteCode: that.siteCode,
|
|
|
- subscriptionId: that.selectSiteInfo.subscriptionId ? that.selectSiteInfo.subscriptionId : ""
|
|
|
+ subscriptionId: that.subscriptionId ? that.subscriptionId : ""
|
|
|
};
|
|
|
getAction("/seo/seoKeywordsRank/getRankInfo", d).then(res => {
|
|
|
if (res.code == 200) {
|
|
@@ -779,11 +749,10 @@ export default {
|
|
|
let that = this;
|
|
|
let param = {
|
|
|
siteCode: that.queryParam.siteCode,
|
|
|
- subscriptionId: that.selectSiteInfo.subscriptionId ? that.selectSiteInfo.subscriptionId : "",
|
|
|
+ subscriptionId: that.subscriptionId ? that.subscriptionId : "",
|
|
|
keywordType: keywordType
|
|
|
};
|
|
|
if (param.siteCode === "") {
|
|
|
- console.log(123);
|
|
|
// this.$message.warning("请先选择站点!");
|
|
|
return;
|
|
|
}
|
|
@@ -881,7 +850,7 @@ export default {
|
|
|
this.longIpagination.current = 1;
|
|
|
}
|
|
|
var params = this.getLongQueryParams();//查询条件
|
|
|
- params.subscriptionId = that.selectSiteInfo.subscriptionId;
|
|
|
+ params.subscriptionId = that.subscriptionId;
|
|
|
params.keywordType = 2;
|
|
|
this.longLoading = true;
|
|
|
getAction(this.url.list, params).then((res) => {
|