デプロイ不具合修正

This commit is contained in:
xiaozhe.ma
2024-09-25 11:39:50 +09:00
parent ae67ec8751
commit 886969e941
4 changed files with 49 additions and 40 deletions

View File

@@ -218,10 +218,10 @@ export default defineComponent({
// ステッパー関連の関数
const nextBtnCheck = () => {
const s = step.value
if (s === 1) {
const stepNo = step.value
if (stepNo === 1) {
return !(data.value.sourceApp?.id && data.value.fieldList?.length > 0 && data.value.fieldList?.every(f => f.source?.name));
} else if (s === 2) {
} else if (stepNo === 2) {
return !data.value.fieldList?.every(f => f.dropDown?.name);
}
return true;