|
|
@@ -7,7 +7,10 @@
|
|
|
<CellGroup>
|
|
|
<Cell title="开户银行" :value="bankInfo.bankname" />
|
|
|
<Cell title="银行卡号" :value="bankInfo.bankaccountno" />
|
|
|
- <Cell title="姓名" :value="bankInfo.bankaccountname" />
|
|
|
+ <template v-if="bankInfo.signstatus === SignStatus.Signed">
|
|
|
+ <Cell title="姓名" :value="bankInfo.bankaccountname" />
|
|
|
+ <Cell title="手机号码" :value="bankInfo.mobilephone" />
|
|
|
+ </template>
|
|
|
<Cell title="支行名称" v-if="bankInfo.branchbankname != ''" :value="bankInfo.branchbankname" />
|
|
|
<Cell title="状态" :value="getSignStatusName(bankInfo.signstatus)" />
|
|
|
</CellGroup>
|
|
|
@@ -18,10 +21,12 @@
|
|
|
</div>
|
|
|
<template #footer>
|
|
|
<div class="g-form__footer inset" v-if="bankInfo">
|
|
|
+ <Button type="danger" round block @click="showComponent(true)"
|
|
|
+ v-if="[SignStatus.Unsigned, SignStatus.Refuse].includes(bankInfo.signstatus)">重新签约</Button>
|
|
|
<Button type="warning" round block @click="formSubmit"
|
|
|
v-if="bankInfo.signstatus === SignStatus.Signed && cusBank?.canrelease === 1">解约</Button>
|
|
|
- <Button type="danger" round block @click="showComponent(true)" v-if="[SignStatus.Unsigned, SignStatus.Refuse, SignStatus.Signed].includes(bankInfo.signstatus) &&
|
|
|
- cusBank?.canmodifysigninfo === 1">修改</Button>
|
|
|
+ <Button type="danger" round block @click="showComponent(true)"
|
|
|
+ v-if="bankInfo.signstatus === SignStatus.Signed && cusBank?.canmodifysigninfo === 1">修改</Button>
|
|
|
</div>
|
|
|
</template>
|
|
|
<component ref="componentRef" v-bind="{ isedit }" :is="componentMap.get(componentId)" @closed="closeComponent"
|