|
@@ -1,9 +1,9 @@
|
|
|
<template>
|
|
|
<custom-layout class="main">
|
|
|
- <div class="loading" v-if="loading">
|
|
|
+ <!-- <div class="loading" v-if="loading">
|
|
|
<el-image class="image" :src="load" fit="fill" />
|
|
|
- </div>
|
|
|
- <div class="w_1700 one" v-else>
|
|
|
+ </div> -->
|
|
|
+ <div class="w_1700 one">
|
|
|
<div class="left">
|
|
|
<div class="left_1">
|
|
|
<div class="titleOne">
|
|
@@ -35,15 +35,7 @@
|
|
|
</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>
|
|
@@ -81,15 +73,7 @@
|
|
|
</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>
|
|
@@ -192,7 +176,7 @@
|
|
|
// 图片引入
|
|
|
import left from '/images/top-left.png'
|
|
|
import right from '/images/top-right.png'
|
|
|
-import load from '/images/load.gif'
|
|
|
+// import load from '/images/load.gif'
|
|
|
// 接口
|
|
|
import { DemandStore } from '@/store/api/platform/demand'
|
|
|
import { SupplyStore } from '@/store/api/platform/supply'
|
|
@@ -230,13 +214,11 @@ const total = ref(0)
|
|
|
|
|
|
// 请求
|
|
|
onMounted(async () => {
|
|
|
- setTimeout(async () => {
|
|
|
- loading.value = true
|
|
|
- await searchOther()
|
|
|
- await searchsupply({ supplyskip, supplylimit })
|
|
|
- await searchdemand({ demandskip, demandlimit })
|
|
|
- loading.value = false
|
|
|
- }, 6000)
|
|
|
+ loading.value = true
|
|
|
+ await searchOther()
|
|
|
+ await searchsupply({ supplyskip, supplylimit })
|
|
|
+ await searchdemand({ demandskip, demandlimit })
|
|
|
+ loading.value = false
|
|
|
})
|
|
|
const searchOther = async () => {}
|
|
|
// 供给信息
|