Commit 6b342907 by liudx

修改bug

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