This commit is contained in:
parent
f9bf1e9185
commit
05598cd181
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue