This commit is contained in:
bb_pan 2025-12-29 17:32:26 +08:00
parent f9bf1e9185
commit 05598cd181
1 changed files with 7 additions and 3 deletions

View File

@ -375,7 +375,7 @@
<!-- 表单按钮 --> <!-- 表单按钮 -->
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" @click="getTransferList">查询</el-button> <el-button type="primary" icon="el-icon-search" @click="handleQueryTransfer">查询</el-button>
<el-button icon="el-icon-refresh" @click="handleTransferReset">重置</el-button> <el-button icon="el-icon-refresh" @click="handleTransferReset">重置</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -800,9 +800,13 @@ export default {
this.transferQuery.auditProId = row.projectId this.transferQuery.auditProId = row.projectId
this.transferQuery.auditUnitId = row.unitId this.transferQuery.auditUnitId = row.unitId
this.transferView = true this.transferView = true
this.getTransferList(row) this.getTransferList()
}, },
async getTransferList(row) { handleQueryTransfer() {
this.transferQuery.pageNum = 1
this.getTransferList()
},
async getTransferList() {
try { try {
this.isLoading = true this.isLoading = true
const res = await getReceiveList(this.transferQuery) const res = await getReceiveList(this.transferQuery)