|
|
@@ -17,14 +17,15 @@
|
|
|
<Button type="danger" @click="openComponent('edit')" round>添加签约账户</Button>
|
|
|
</div>
|
|
|
<template #footer>
|
|
|
- <div class="g-form__footer" v-if="bankInfo">
|
|
|
+ <div class="g-form__footer inset" v-if="bankInfo">
|
|
|
<Button type="warning" round block @click="formSubmit"
|
|
|
v-if="bankInfo.signstatus === SignStatus.Signed">解约</Button>
|
|
|
<Button type="danger" round block @click="showComponent('edit')"
|
|
|
v-if="[SignStatus.Unsigned, SignStatus.Refuse, SignStatus.Signed, SignStatus.Rescinded].includes(bankInfo.signstatus)">修改</Button>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <component ref="componentRef" v-bind="{ isedit }" :is="componentMap.get(componentId)" @closed="closeComponent" v-if="componentId" />
|
|
|
+ <component ref="componentRef" v-bind="{ isedit }" :is="componentMap.get(componentId)" @closed="closeComponent"
|
|
|
+ v-if="componentId" />
|
|
|
</app-view>
|
|
|
</template>
|
|
|
|