|
@@ -42,7 +42,7 @@
|
|
|
</el-col>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
-
|
|
|
+
|
|
|
<hr>
|
|
|
|
|
|
<!-- 按钮 -->
|
|
@@ -70,8 +70,7 @@
|
|
|
</template>
|
|
|
</el-table-column> -->
|
|
|
</el-table>
|
|
|
- <!-- 暂无数据提示 -->
|
|
|
- <div v-if="currentPageData.length === 0 &&!Data.loading"></div>
|
|
|
+
|
|
|
<!-- 页码 -->
|
|
|
<div class="my-flex my-flex-end" style="margin-top: 20px">
|
|
|
<el-pagination
|
|
@@ -87,6 +86,7 @@
|
|
|
:page-count="pageCount"
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
/>
|
|
|
+
|
|
|
</div>
|
|
|
</el-card>
|
|
|
</el-col>
|
|
@@ -176,7 +176,7 @@ const currentPageData = computed(() => {
|
|
|
// 计算显示的页码数量
|
|
|
const pageCount = computed(() => {
|
|
|
const totalPages = Math.ceil(Data.total / Data.pageInput.pageSize);
|
|
|
- return totalPages < 5? 5 : totalPages;
|
|
|
+ return totalPages < 100? 100 : totalPages;
|
|
|
});
|
|
|
|
|
|
/** 查询订单 */
|