Browse Source

2026-02-10

标签变动记录查询优化
master
fengyuan_yang 2 weeks ago
parent
commit
1fc022cf8b
  1. 10
      src/views/modules/warehouse/labelTransactionLog.vue

10
src/views/modules/warehouse/labelTransactionLog.vue

@ -24,7 +24,7 @@
label-position="top"
:model="searchData"
class="search-form"
@keyup.enter.native="getDataList">
@keyup.enter.native="handleSearch">
<template v-if="searchExpanded">
<el-row :gutter="16">
@ -140,7 +140,7 @@
type="primary"
icon="el-icon-search"
:loading="dataListLoading"
@click="getDataList">
@click="handleSearch">
查询
</el-button>
<el-button
@ -380,6 +380,12 @@ export default {
this.getDataList()
},
// -
handleSearch() {
this.pageIndex = 1
this.getDataList()
},
//
getDataList() {
this.dataListLoading = true

Loading…
Cancel
Save