|
@@ -52,7 +52,7 @@
|
|
v-model="filterState.keyword"
|
|
v-model="filterState.keyword"
|
|
clearable
|
|
clearable
|
|
style="width:250px"
|
|
style="width:250px"
|
|
- @change="handleRefreshList"
|
|
|
|
|
|
+ @input="handleRefreshList"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
<img src="~@/assets/img/data_m/set_icon.png" alt="" style="cursor: pointer;" @click="showSetTableCols=true">
|
|
<img src="~@/assets/img/data_m/set_icon.png" alt="" style="cursor: pointer;" @click="showSetTableCols=true">
|
|
@@ -167,6 +167,10 @@ export default {
|
|
SortParam:this.filterState.sortKey,
|
|
SortParam:this.filterState.sortKey,
|
|
SortType:this.filterState.sortType,
|
|
SortType:this.filterState.sortType,
|
|
CreateTime:this.filterState.dateVal,
|
|
CreateTime:this.filterState.dateVal,
|
|
|
|
+ TerminalCode:this.filterState.terminalCode?this.filterState.terminalCode.join(','):'',
|
|
|
|
+ SysUserId:this.filterState.user?this.filterState.user.join(','):'',
|
|
|
|
+ Frequency:this.filterState.frequency?this.filterState.frequency.join(','):'',
|
|
|
|
+ KeyWord:this.filterState.keyword
|
|
}).then(res=>{
|
|
}).then(res=>{
|
|
this.tableLoading=false
|
|
this.tableLoading=false
|
|
if(res.Ret===200){
|
|
if(res.Ret===200){
|
|
@@ -272,6 +276,16 @@ export default {
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
+<style lang="scss">
|
|
|
|
+.detail-table-wrap{
|
|
|
|
+ .top-wrap{
|
|
|
|
+ .el-cascader__search-input{
|
|
|
|
+ min-width: 30px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+</style>
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.top-wrap{
|
|
.top-wrap{
|
|
display: flex;
|
|
display: flex;
|