Commit 6b342907 by liudx

修改bug

parent 09887162
......@@ -393,7 +393,7 @@ export default {
this.technologyData.technical_quality_avg,
this.technologyData.technical_volume_avg,
],
name: this.technologyData.company_industry,
name: this.technologyData.company_industry+'行业企业均值',
areaStyle: {
color: "#F7B46A",
},
......
......@@ -8,6 +8,7 @@
@input="onInput"
@blur="onBlur"
@focus="onFocus"
@pressEnter="onsearch"
>
<template #addonBefore>
<a-select v-model:value="type" class="type">
......@@ -574,6 +575,7 @@ export default {
onsearch() {
this.keyword ? (this.filter = [this.keyword]) : (this.filter = []);
this.getCompanyList(this.keyword);
this.search_result_show = false;
},
//联想搜索
onInput() {
......@@ -628,6 +630,7 @@ export default {
//山西区域json数据
this.optionsArea = arealist;
this.keyword = this.$route.query.keyword;
this.keyword ? (this.filter = [this.keyword]) : (this.filter = []);
if (!sessionStorage.getItem("searchqy")) {
if (this.$route.query.valueInnovation) {
this.valueInnovation = this.$route.query.valueInnovation;
......
......@@ -138,7 +138,7 @@ export default {
{
// value: [20, 10, 25],
value:[this.technology.company_competitiveness_avg,this.technology.technical_quality_avg,this.technology.technical_volume_avg],
name: this.technology.company_industry,
name: this.technology.company_industry+'行业企业均值',
areaStyle: {
color: "#F7B46A",
},
......
......@@ -191,7 +191,7 @@ export default {
}
.login {
background-color: #fafbfe;
height: 100%;
min-height: 900px;
background-image: url("../../static/login/img-bg.png");
background-size: 100% 100%;
header {
......
......@@ -8,6 +8,7 @@
@input="onInput"
@focus="onFocus"
@blur="onBlur"
@pressEnter="onsearch"
>
<template #addonBefore>
<a-select v-model:value="type" class="type">
......@@ -250,6 +251,7 @@ export default {
onsearch() {
this.keyword ? (this.filter = [this.keyword]) : (this.filter = []);
this.getList(this.keyword);
this.search_result_show = false;
},
//改变页码
onChange() {
......
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