修改bug

wang
wangwei 3 years ago
parent a3033e4a83
commit 4ce7b3b006

@ -581,6 +581,7 @@ export default {
detailHandleCurrentChange(val) { detailHandleCurrentChange(val) {
this.detailQuery.page = val; this.detailQuery.page = val;
this.getStockOrderDetailList(); this.getStockOrderDetailList();
this.detailQuery.page = 1;
}, },
// //
resetForm() { resetForm() {

@ -136,7 +136,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="说明" prop="remark"></el-table-column> <el-table-column label="说明" prop="remark"></el-table-column>
<el-table-column label="状态" prop="require"> <el-table-column label="状态" prop="require" v-if="false">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ statusMap[scope.row.need] }}</span> <span>{{ statusMap[scope.row.need] }}</span>
</template> </template>
@ -281,7 +281,7 @@
</el-table-column> </el-table-column>
<el-table-column label="说明" prop="remark"></el-table-column> <el-table-column label="说明" prop="remark"></el-table-column>
<el-table-column label="状态" prop="need" s> <el-table-column label="状态" prop="need" v-if="false">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ statusMap[scope.row.need] }}</span> <span>{{ statusMap[scope.row.need] }}</span>
</template> </template>

@ -114,10 +114,6 @@ export default {
}, },
getList() { getList() {
if(!(this.filterQuery.unitId==null || this.filterQuery.name==null || this.filterQuery.thirdSys==null)){
this.filterQuery.page=1
}
if (this.filterQuery.thirdSys == null) { if (this.filterQuery.thirdSys == null) {
this.$message.warning("请先选择第三方系统!") this.$message.warning("请先选择第三方系统!")
return; return;
@ -198,6 +194,7 @@ export default {
handleCurrentChange(val) { handleCurrentChange(val) {
this.filterQuery.page = val; this.filterQuery.page = val;
this.getList(); this.getList();
this.filterQuery.page=1
}, },
getBasicThirdSys() { getBasicThirdSys() {
let query = { let query = {

Loading…
Cancel
Save