queryTableArch 接口返回报错后,按钮等待问题
lingguox opened this issue · 1 comments
lingguox commented
const fetchTableArch = async () => {
loadingTblBtn.value = true;
const {data} = await queryTableArch(orderItems);
//lgx fix
if (data.payload == null) {
loadingTblBtn.value = false;
return
}
archData.value = data.payload.rows;
indexData.value = data.payload.idx;
activeKey.value = 2;
message.success(t('order.apply.table.info') + t('common.success'));
loadingTblBtn.value = false;
};
lingguox commented
能支持postgresql数据库吗?