- {{list}}
+ {{list}}
@@ -60,35 +61,35 @@
| 状态 |
-
+
| {{item.id}} |
{{item.organization}} |
{{item.credit}} |
{{item.type}} |
{{item.representative}} |
{{item.date}} |
- 正常 |
- 异常 |
+ 正常 |
+ 异常 |
-
+
| {{item.id}} |
{{item.organization}} |
{{item.credit}} |
{{item.type}} |
{{item.representative}} |
{{item.date}} |
- 正常 |
- 异常 |
+ 正常 |
+ 异常 |
@@ -103,7 +104,6 @@
import HeaderNav from "../components/HeaderNav";
/* eslint-disable */
import FooterNav from "../components/FooterNav";
-
export default {
components: {
HeaderNav,
@@ -120,6 +120,7 @@ export default {
},
searchVal: "",
searchValue: [],
+ screeOut: [],
sData: [
{
id: 1,
@@ -188,46 +189,28 @@ export default {
this.$message.warning("请输入搜索内容");
return;
}
- this.sData.forEach((item, index) => {
- if (
- item.organization.indexOf(this.searchVal) > -1 ||
- item.credit.indexOf(this.searchVal) > -1 ||
- item.type.indexOf(this.searchVal) > -1 ||
- item.representative.indexOf(this.searchVal) > -1 ||
- item.date.indexOf(this.searchVal) > -1
- ) {
- this.searchValue.push(item);
- }
- });
- /*
- if (this.searchValue != "") {
- this.searchValue.map(item => {
- //遍历
- item.organization = this.brightKeyword(item.organization);
- item.credit = this.brightKeyword(item.credit);
- item.type = this.brightKeyword(item.type);
- item.representative = this.brightKeyword(item.representative);
- item.date = this.brightKeyword(item.date);
- }); //到这里search方法结束
- }
- */
- this.searchVal = "";
- },
+ let searchData = this.$tool.setSearch(this.sData, this.searchVal)
- /** 高亮函数 */
- /*
- brightKeyword(val) {
- let keyword = this.searchVal; //获取输入框输入的内容
- if (val.indexOf(keyword) !== -1) {
- //判断这个字段中是否包含keyword
- //如果包含的话,就把这个字段中的那一部分进行替换成html字符
- return val.replace(keyword, `
${keyword}`);
+ if (searchData != undefined && searchData != '') {
+ this.searchValue = searchData
+ this.searchVal = "";
} else {
- return val;
+ this.$message('您搜索的内容暂无~')
}
- val = "";
- },*/
+
+ // this.sData.forEach((item, index) => {
+ // if (
+ // item.organization.indexOf(this.searchVal) > -1 ||
+ // item.credit.indexOf(this.searchVal) > -1 ||
+ // item.type.indexOf(this.searchVal) > -1 ||
+ // item.representative.indexOf(this.searchVal) > -1 ||
+ // item.date.indexOf(this.searchVal) > -1
+ // ) {
+ // this.searchValue.push(item);
+ // }
+ // });
+ },
btn(index) {
let s = this.sub;
@@ -235,9 +218,11 @@ export default {
this.sub = s;
},
- getData() {}
+ getData() { }
+ },
+ created() {
+
},
- created() {},
mounted() {
this.getData();
}
diff --git a/src/views/project/Project.vue b/src/views/project/Project.vue
index 461f6c8..d0b05b8 100644
--- a/src/views/project/Project.vue
+++ b/src/views/project/Project.vue
@@ -308,8 +308,8 @@ export default {
position: absolute;
right: -8.5%;
bottom: -26%;
- width: 119px;
- height: 95px;
+ width: 120px;
+ height: 90px;
}
}
}
diff --git a/static/img/btg.png b/static/img/btg.png
index fad91f2..8178dae 100644
Binary files a/static/img/btg.png and b/static/img/btg.png differ
diff --git a/static/img/shz.png b/static/img/shz.png
index e5e160c..b207740 100644
Binary files a/static/img/shz.png and b/static/img/shz.png differ
diff --git a/static/img/tg.png b/static/img/tg.png
index cee80b1..9c5fe42 100644
Binary files a/static/img/tg.png and b/static/img/tg.png differ
diff --git a/static/img/zxz.png b/static/img/zxz.png
index af41c74..7f68860 100644
Binary files a/static/img/zxz.png and b/static/img/zxz.png differ
diff --git a/static/js/tool.js b/static/js/tool.js
index 747ac02..2b631bc 100644
--- a/static/js/tool.js
+++ b/static/js/tool.js
@@ -1,10 +1,58 @@
-/** 筛选函数 */
-export function multiFilter (array, filters) {
- const filterKeys = Object.keys(filters)
- return array.filter(item => {
- return filterKeys.every(key => {
- if (!filters[key].length) return true
- return !!~filters[key].indexOf(item[key])
- })
- })
+// 使用递归遍历所有属性判断是否 在对象里面匹配到值 借鉴js对象深拷贝的方式
+function loopObj (searkey, obj) {
+ let bool = false
+ let loop = (searkey, obj) => {
+ for (let key in obj) {
+ if (
+ String(obj[key])
+ .trim()
+ .indexOf(searkey) !== -1
+ ) {
+ bool = true
+ }
+ if (typeof obj[key] === 'object' && obj[key] !== null) {
+ loop(searkey, obj[key])
+ }
+ }
+ }
+ loop(searkey, obj)
+ return bool
}
+
+let tool = {
+ /**
+ * 搜索函数
+ * @param {*} arr 搜索目标
+ * @param {*} str 搜索参数
+ */
+ setSearch: function (arr, str) {
+ let arrTrueList = [] // 匹配的数据
+ let arrFalseList = [] // 不匹配数据
+ arr.forEach(item => {
+ // 判断输入值key 是否存在对象数组上面
+ if (loopObj(str, item)) {
+ arrTrueList.push(item)
+ } else {
+ arrFalseList.push(item)
+ }
+ })
+ return arrTrueList
+ },
+
+ /**
+ * 筛选函数
+ * @param {*} array 筛选参数
+ * @param {*} filters 筛选目标
+ */
+ multiFilter: function (array, filters) {
+ const filterKeys = Object.keys(filters)
+ return array.filter(item => {
+ return filterKeys.every(key => {
+ if (!filters[key].length) return true
+ return !!~filters[key].indexOf(item[key])
+ })
+ })
+ }
+}
+
+export default tool