提交 7f0c2c67 编写于 作者: KK's avatar KK

update:向导调整

上级 929ca9ad
<template> <template>
<div class="app-wizard <#if appde??>${appde.getCodeName()?lower_case}-${ctrl.name}</#if>"> <div class="app-wizard <#if appde??>${appde.getCodeName()?lower_case}-${ctrl.name}</#if>">
<#if ctrl.getPSDEWizard?? && ctrl.getPSDEWizard()?? && ctrl.getPSDEWizard().getPSDEWizardSteps?? && ctrl.getPSDEWizard().getPSDEWizardSteps()??> <#if ctrl.getPSDEWizard?? && ctrl.getPSDEWizard()?? && ctrl.getPSDEWizard().getPSDEWizardSteps?? && ctrl.getPSDEWizard().getPSDEWizardSteps()?? && ctrl.getWizardStyle?? && ctrl.getWizardStyle()=="DEFAULT">
<van-steps class="wizard-steps" :active="wizardForms.indexOf(activeForm)" finish-status="success"> <van-steps class="wizard-steps" :active="wizardForms.indexOf(activeForm)" finish-status="success">
<#list ctrl.getPSDEWizard().getPSDEWizardSteps() as step> <#list ctrl.getPSDEWizard().getPSDEWizardSteps() as step>
<van-step >${step.getTitle()}</van-step> <van-step >${step.getTitle()}</van-step>
...@@ -32,9 +32,9 @@ ...@@ -32,9 +32,9 @@
</#if> </#if>
</template> </template>
<ion-footer class="app-wizard-footer"> <ion-footer class="app-wizard-footer">
<app-mob-button :disabled="isDisabled('PREV')" type="primary" :text="$t('app.button.previousStep')" @click="onClickPrev()" /> <app-mob-button v-show="!isDisabled('PREV')" type="primary" :text="$t('app.button.previousStep')" @click="onClickPrev()" />
<app-mob-button :disabled="isDisabled('NEXT')" type="primary" :text="$t('app.button.nextStep')" @click="onClickNext()" /> <app-mob-button v-show="!isDisabled('NEXT')" type="primary" :text="$t('app.button.nextStep')" @click="onClickNext()" />
<app-mob-button :disabled="isDisabled('FINISH')" type="primary" :text="$t('app.button.finish')" @click="onClickFinish()" /> <app-mob-button v-show="!isDisabled('FINISH')" type="primary" :text="$t('app.button.finish')" @click="onClickFinish()" />
</ion-footer> </ion-footer>
</div> </div>
</template> </template>
...@@ -228,7 +228,6 @@ ...@@ -228,7 +228,6 @@
if (response && response.status === 401) { if (response && response.status === 401) {
return; return;
} }
this.$notice.warning( response.info );
}); });
</#if> </#if>
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册