This commit is contained in:
ljx
2025-09-03 11:56:52 +08:00
8 changed files with 294 additions and 101 deletions

View File

@ -243,7 +243,7 @@ async function handleSheetName() {
// 获取列表
async function handleQueryList(isSheet = true) {
// if (isSheet && !state.queryForm.sheet) {
// if (isSheet && !state.queryForm) {
// console.warn('表名不存在,无法获取列表数据');
// return;
// }
@ -304,7 +304,7 @@ function handleChange(sheet) {
function handleChangeVersion(versions) {
state.queryForm.versions = versions;
state.versionsData = state.options.find((e) => e.versions == versions);
console.log('state.versionsData', state.versionsData);
// console.log('state.versionsData', state.versionsData);
state.sheets = [];
handleQueryList();
}