|
@@ -300,7 +300,7 @@
|
|
<el-tab-pane label="核心设备日常维修" name="4">
|
|
<el-tab-pane label="核心设备日常维修" name="4">
|
|
<div class="compute-center">
|
|
<div class="compute-center">
|
|
<el-input
|
|
<el-input
|
|
- placeholder="搜索设备名称编号"
|
|
|
|
|
|
+ placeholder="搜索设备名称或内码"
|
|
size="small"
|
|
size="small"
|
|
@keyup.enter.native="Index3"
|
|
@keyup.enter.native="Index3"
|
|
@blur="Index3"
|
|
@blur="Index3"
|
|
@@ -309,6 +309,17 @@
|
|
v-model="sbjc"
|
|
v-model="sbjc"
|
|
style="width:192px;margin-right:12px"
|
|
style="width:192px;margin-right:12px"
|
|
></el-input>
|
|
></el-input>
|
|
|
|
+ <el-input
|
|
|
|
+ placeholder="搜索位置名称或内码"
|
|
|
|
+ size="small"
|
|
|
|
+ @keyup.enter.native="Index3"
|
|
|
|
+ @blur="Index3"
|
|
|
|
+ clearable
|
|
|
|
+ prefix-icon="el-icon-search"
|
|
|
|
+ v-model="wzjc"
|
|
|
|
+ style="width:192px;margin-right:12px"
|
|
|
|
+ ></el-input>
|
|
|
|
+
|
|
<el-input
|
|
<el-input
|
|
placeholder="搜索描述"
|
|
placeholder="搜索描述"
|
|
size="small"
|
|
size="small"
|
|
@@ -541,6 +552,7 @@ export default {
|
|
sjjssj: "",
|
|
sjjssj: "",
|
|
real: "",
|
|
real: "",
|
|
statue: "全部",
|
|
statue: "全部",
|
|
|
|
+ wzjc:'',
|
|
statusOption: []
|
|
statusOption: []
|
|
};
|
|
};
|
|
},
|
|
},
|
|
@@ -750,7 +762,8 @@ export default {
|
|
getParams.data.wotjyssjEndDate = this.real[1] + "000000";
|
|
getParams.data.wotjyssjEndDate = this.real[1] + "000000";
|
|
}
|
|
}
|
|
if (this.source && this.source != "全部") {
|
|
if (this.source && this.source != "全部") {
|
|
- getParams.data.bxfwlymc = this.source;
|
|
|
|
|
|
+ // getParams.data.bxfwlymc = this.source;
|
|
|
|
+ getParams.data.bxfwly = this.source
|
|
}
|
|
}
|
|
if (this.statue && this.statue != "全部") {
|
|
if (this.statue && this.statue != "全部") {
|
|
getParams.data.status = this.statue;
|
|
getParams.data.status = this.statue;
|
|
@@ -758,9 +771,12 @@ export default {
|
|
|
|
|
|
//输入框搜索
|
|
//输入框搜索
|
|
getParams.data.keyword = "";
|
|
getParams.data.keyword = "";
|
|
- if (this.sbjc) {
|
|
|
|
- getParams.data.keyword += `${this.sbjc}:sbmc,assetnum;`;
|
|
|
|
- }
|
|
|
|
|
|
+ if (this.sbjc) {
|
|
|
|
+ getParams.data.keyword += `${this.sbjc}:sbmc,assetnum;`
|
|
|
|
+ }
|
|
|
|
+ if (this.wzjc) {
|
|
|
|
+ getParams.data.keyword += `${this.wzjc}:wzjc,location;`
|
|
|
|
+ }
|
|
if (this.matters) {
|
|
if (this.matters) {
|
|
getParams.data.keyword += `${this.matters}:description;`;
|
|
getParams.data.keyword += `${this.matters}:description;`;
|
|
}
|
|
}
|