|
@@ -35,7 +35,15 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-col :span="24" class="page">
|
|
|
- <el-pagination background layout="prev, pager, next" :total="supplytotal" :page-size="supplylimit" v-model:current-page="currentPageone" @current-change="changePageone" @size-change="sizeChangeone" />
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ layout="prev, pager, next"
|
|
|
+ :total="supplytotal"
|
|
|
+ :page-size="supplylimit"
|
|
|
+ v-model:current-page="currentPageone"
|
|
|
+ @current-change="changePageone"
|
|
|
+ @size-change="sizeChangeone"
|
|
|
+ />
|
|
|
</el-col>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -73,7 +81,15 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-col :span="24" class="page">
|
|
|
- <el-pagination background layout="prev, pager, next" :total="demandtotal" :page-size="demandlimit" v-model:current-page="currentPagetwo" @current-change="changePagetwo" @size-change="sizeChangetwo" />
|
|
|
+ <el-pagination
|
|
|
+ background
|
|
|
+ layout="prev, pager, next"
|
|
|
+ :total="demandtotal"
|
|
|
+ :page-size="demandlimit"
|
|
|
+ v-model:current-page="currentPagetwo"
|
|
|
+ @current-change="changePagetwo"
|
|
|
+ @size-change="sizeChangetwo"
|
|
|
+ />
|
|
|
</el-col>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -227,7 +243,7 @@ const searchOther = async () => {}
|
|
|
const searchsupply = async (query = { supplyskip, supplylimit }) => {
|
|
|
supplyskip = query.supplyskip
|
|
|
supplylimit = query.supplylimit
|
|
|
- const info = { skip: query.supplyskip, limit: query.supplylimit }
|
|
|
+ const info = { skip: query.supplyskip, limit: query.supplylimit, is_use: '0', status: '1', user: user.value.id }
|
|
|
let res = await supplyStore.list(info)
|
|
|
if (res.errcode == '0') {
|
|
|
supplyList.value = res.data
|
|
@@ -239,7 +255,7 @@ const searchsupply = async (query = { supplyskip, supplylimit }) => {
|
|
|
const searchdemand = async (query = { demandskip, demandlimit }) => {
|
|
|
demandskip = query.demandskip
|
|
|
demandlimit = query.demandlimit
|
|
|
- const info = { skip: query.demandskip, limit: query.demandlimit }
|
|
|
+ const info = { skip: query.demandskip, limit: query.demandlimit, is_use: '0', status: '1', user: user.value.id }
|
|
|
let res = await demandStore.list(info)
|
|
|
if (res.errcode == '0') {
|
|
|
demandList.value = res.data
|