|
|
@ -6,7 +6,7 @@ |
|
|
|
v-model="searchContent" |
|
|
|
clearable |
|
|
|
size="small" |
|
|
|
placeholder="按照版本号搜索..." |
|
|
|
placeholder="按照单据号号搜索..." |
|
|
|
style="width: 200px" |
|
|
|
class="search-container" |
|
|
|
@keyup.enter.native="handleFilter" |
|
|
@ -84,7 +84,7 @@ |
|
|
|
<el-input |
|
|
|
ref="inputRef" |
|
|
|
v-if="scope.row.isEditCell" |
|
|
|
v-model.number="scope.row.remark" |
|
|
|
v-model="scope.row.remark" |
|
|
|
class="el-input" |
|
|
|
v-focus |
|
|
|
@blur="cellBlur(scope.row, scope.column)" |
|
|
@ -390,11 +390,11 @@ export default { |
|
|
|
this.getList(); |
|
|
|
this.listQuery.Filters = []; |
|
|
|
if (this.searchContent != "") { |
|
|
|
var column = "version"; |
|
|
|
var column = "billNum"; |
|
|
|
let filter = { |
|
|
|
logic: 0, |
|
|
|
column: column, |
|
|
|
action: 0, |
|
|
|
action: 6, |
|
|
|
value: this.searchContent, |
|
|
|
}; |
|
|
|
this.listQuery.Filters.push(filter); |
|
|
|