Ver código fonte

数据查询-表格分页大小修改

zhongxiaoyu 1 ano atrás
pai
commit
e229903ff8

+ 1 - 1
public/config.js

@@ -251,7 +251,7 @@ var DATACONTENT_ID = {
   internationalDepartureWaybillGoods: 52003, // 国际离港运单节点跟踪
   internationalDepartureWaybillPull: 52000, // 国际离港运单拉下信息
   internationalArrivalWaybillInfo: 52002, // 国际进港运单基础信息
-  internationalArrivalWaybillGoods: 52003, // 国际进港运单节点跟踪
+  internationalArrivalWaybillGoods: 52023, // 国际进港运单节点跟踪
   internationalDepartureTransferWaybillInfo: 52002, // 中转运单基础信息
   internationalDepartureTransferWaybillGoods: 52003, // 中转运单节点跟踪
   internationalDepartureTransferWaybillPull: 52000, // 中转运单拉下信息

+ 1 - 1
src/views/dataQuery/components/DataQueryView/index.vue

@@ -217,7 +217,7 @@ const props = defineProps({
   },
 })
 const currentPage = ref(1)
-const pageSize = ref(11)
+const pageSize = ref(50)
 const today = parseTime(new Date(), '{y}-{m}-{d}') as string
 const formData = reactive({
   flightDate: today,

+ 1 - 1
src/views/dataQuery/message/index.vue

@@ -128,7 +128,7 @@ import {
 } from '~/common'
 import { Query } from '@/api/webApi'
 const currentPage = ref<number>(1)
-const pageSize = ref<number>(11)
+const pageSize = ref<number>(50)
 const today = parseTime(new Date(), '{y}-{m}-{d}') as string
 const formData = reactive({
   startDate: today,