箱管 批量查询 查询提示修改

zth
张同海 4 days ago
parent b6dd40fc38
commit b737d6dace

@ -13,8 +13,8 @@ VITE_PUBLIC_PATH = /
# Cross-domain proxy, you can configure multiple
# Please note that no line breaks
# VITE_PROXY = [["/basic-api","http://60.209.125.238"],["/upload","http://localhost:3300/upload"]]
VITE_PROXY=[["/api","http://60.209.125.238:3008"],["/stage-api","https://www.666cxf.com/stage-api"]] # 开发 测试环境
# VITE_PROXY=[["/api","http://118.190.144.189:3008"],["/stage-api","https://www.666cxf.com/stage-api"]] # 开发 测试环境
# VITE_PROXY=[["/api","http://60.209.125.238:3008"],["/stage-api","https://www.666cxf.com/stage-api"]] # 开发 测试环境
VITE_PROXY=[["/api","http://118.190.144.189:3008"],["/stage-api","https://www.666cxf.com/stage-api"]] # 开发 测试环境
# Delete console
VITE_DROP_CONSOLE = false

@ -46,10 +46,12 @@
const refInfoModal = ref()
const [registerModal, { openModal }] = useModal()
const [registerInfoModal, { openModal: openInfoModal }] = useModal()
const firstQuery = ref(false)
const [registerTable, { reload, getDataSource }] = useTable({
title: '集装箱信息列表',
api: async (p) => {
const res: API.DataResult = await ApiList(p)
if (firstQuery.value) {
let type = true
JSON.parse(p.queryCondition).forEach((e) => {
if (e.FieldName == 'isOnlineId') {
@ -78,6 +80,9 @@
})
}
}
} else {
firstQuery.value = true
}
res.data.forEach((item, index) => {
item.index = index + 1
})

Loading…
Cancel
Save