|
@@ -2,7 +2,7 @@
|
|
|
<div class="hc-page-box" id="carry-spot-checks-layout-target">
|
|
|
<HcCard ui="hc-query-card-box" v-show="!isCarrySpotChecksDrawer">
|
|
|
<div class="hc-query-input-box">
|
|
|
- <el-input placeholder="可按关键字模糊搜索,多个关键字用“,” 隔开" v-model="searchInput" clearable>
|
|
|
+ <el-input placeholder="可按关键字模糊搜索,多个关键字用“,” 隔开" v-model="searchInput" clearable @clear="clearinput">
|
|
|
<template #prepend>
|
|
|
<div class="prepend-filtering" @click="filteringClick">
|
|
|
<span class="name">条件筛选</span>
|
|
@@ -323,6 +323,10 @@ const clickHottitle=(item)=>{
|
|
|
searchForm.value.queryValue=item.name
|
|
|
|
|
|
}
|
|
|
+const clearinput=()=>{
|
|
|
+ searchForm.value.searchType='1'
|
|
|
+ getTableData()
|
|
|
+}
|
|
|
//年度
|
|
|
const annuals = ref([])
|
|
|
const setAnnuals = () => {
|