Commit bb0b33c9 authored by 华国豪's avatar 华国豪 🙄

1

parent 846e567e
......@@ -945,9 +945,11 @@ export default {
KkdayDomain: "",
CCList: [],
defaultImg: 'this.src="' + require('assets/img/juan/error.png') + '"',
isLogin:1,
}
},
mounted() {
this.isLogin=this.$store.state.isLogin;
this.scrollobj=document.getElementsByClassName('el-scrollbar__wrap')[0];
this.scrollobj.addEventListener('scroll', this.handleScroll);
this.getDataList()
......@@ -958,8 +960,9 @@ export default {
methods: {
getSelect(e){
if (e.prod_no && (e.type == 2 || e.type == 1)) {
let dom = document.querySelector("#blankLink")
let fullPath = `/FreeList?id=${e.prod_no}&name=${e.prod_name}&CCListActive=${this.CCListActive}&type=${e.type}`;
let dom = document.querySelector("#blankLink");
let num = e.type == 2 ? '2' : '';
let fullPath = `/FreeList${num}?id=${e.prod_no}&name=${e.prod_name}&CCListActive=${this.CCListActive}&type=${e.type}`;
dom.href=`http://${window.location.host}/#${fullPath}`
dom.click()
} else if (e.prod_no && !e.type){
......
......@@ -847,10 +847,12 @@ export default {
checkd: false,
},
]
}]
}],
isLogin:1,
}
},
mounted() {
this.isLogin=this.$store.state.isLogin;
this.ccId = this.$route.query.id;
this.ccName = this.$route.query.name;
this.CCListActive = this.$route.query.CCListActive;
......
......@@ -891,9 +891,11 @@ export default {
}],
weatherList: [],
keywords: '',
isLogin:1,
}
},
mounted() {
this.isLogin=this.$store.state.isLogin;
if (this.$route.query.keywords) {
this.keywords = this.$route.query.keywords
this.msg.keywords = this.$route.query.keywords
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment