This commit is contained in:
liushuai
2019-12-04 17:21:01 +08:00
parent ad1a5d749f
commit d3bd8686e3
6 changed files with 175 additions and 139 deletions

View File

@@ -165,7 +165,7 @@
</el-tab-pane>
<el-tab-pane label="仓库" name="仓库">
<el-row>
<el-input v-model="materialName" style="width: 150px;margin-left: 10px" placeholder="名称规格型号" size="small" clearable @keyup.enter.native="pageCurrent11=1;pageSize11=20;total11=0;searchTable22()"/>
<el-input v-model="materialName" style="width: 150px;margin-left: 10px" placeholder="名称规格型号" size="small" clearable @keyup.enter.native="pageCurrent22=1;pageSize22=20;total22=0;searchTable22()"/>
<el-button type="success" size="small" icon="el-icon-search" style="margin-left: 10px" @click="searchTable22()">查询</el-button>
</el-row>
<el-table
@@ -1612,13 +1612,13 @@ export default {
})
})
},
handleSizeChange22(val) { // 标准件和外购件列表分页
this.pageSize11 = val
this.pageCurrent11 = 1
handleSizeChange22(val) { // 仓库表分页
this.pageSize22 = val
this.pageCurrent22 = 1
this.searchTable22()
},
handleCurrentChange22(val) { // 标准件和外购件列表分页
this.pageCurrent11 = val
handleCurrentChange22(val) { // 仓库表分页
this.pageCurrent22 = val
this.searchTable22()
}
}