fix:wprList去掉分页,page=0
This commit is contained in:
parent
f1ec1efa64
commit
2e3857a9b9
|
@ -173,7 +173,7 @@
|
|||
<h4>关联产品</h4>
|
||||
</template>
|
||||
<template #default>
|
||||
<scTable ref="wprTable" :data="wprList">
|
||||
<scTable ref="wprTable" hidePagination :data="wprList">
|
||||
<el-table-column label="产品编号" prop="number"></el-table-column>
|
||||
<el-table-column label="记录数据" prop="oinfo">
|
||||
<template #default="scope">
|
||||
|
@ -279,6 +279,7 @@ export default {
|
|||
material: "",
|
||||
},
|
||||
wprParams:{
|
||||
page:0,
|
||||
wm: ""
|
||||
},
|
||||
wmMaterial:'',
|
||||
|
@ -389,7 +390,7 @@ export default {
|
|||
that.wprParams.wm = row.id;
|
||||
that.wprVisibleDrawer = true;
|
||||
this.$API.wpm.wpr.list.req(that.wprParams).then((res) => {
|
||||
that.wprList = res.results;
|
||||
that.wprList = res;
|
||||
})
|
||||
},
|
||||
//本地更新数据
|
||||
|
|
Loading…
Reference in New Issue