|
|
@@ -262,8 +262,15 @@
|
|
|
</el-row>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
- <div v-if="type == 4">
|
|
|
+ <el-switch v-if="type == 4"
|
|
|
+ style="margin-top: 30px"
|
|
|
+ v-model="businessLibrary"
|
|
|
+ active-text
|
|
|
+ inactive-text="是否有业务库"
|
|
|
+ :active-value="1"
|
|
|
+ :inactive-value="0"
|
|
|
+ ></el-switch>
|
|
|
+ <div v-if="type == 4&businessLibrary>0" style="margin-top: 30px">
|
|
|
<h3 class="title">业务库设置</h3>
|
|
|
<div class="info-box">
|
|
|
<el-form inline label-position="left" label-width="100px">
|
|
|
@@ -394,17 +401,26 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
-
|
|
|
+ </div>
|
|
|
+ <el-switch v-if="type == 4"
|
|
|
+ style="margin-top: 30px"
|
|
|
+ v-model="selfServiceBank"
|
|
|
+ active-text
|
|
|
+ inactive-text="是否有在行自助银行"
|
|
|
+ :active-value="1"
|
|
|
+ :inactive-value="0"
|
|
|
+ ></el-switch>
|
|
|
+ <div v-if="type == 4&selfServiceBank>0" style="margin-top: 30px">
|
|
|
<h3 class="title">在行自助银行设置</h3>
|
|
|
<div class="info-box">
|
|
|
- <el-switch
|
|
|
+ <el-switch v-if="false"
|
|
|
v-model="selfServiceBank"
|
|
|
active-text
|
|
|
inactive-text="是否有在行自助银行"
|
|
|
:active-value="1"
|
|
|
:inactive-value="0"
|
|
|
></el-switch>
|
|
|
- <span style="margin-left: 50px">在行式大堂设备</span>
|
|
|
+ <span >在行式大堂设备</span>
|
|
|
<div style="display: inline-block; width: 200px">
|
|
|
<el-input-number
|
|
|
style="margin-left: 10px"
|
|
|
@@ -1009,6 +1025,7 @@ export default {
|
|
|
ownership: null,
|
|
|
outsideArea: null,
|
|
|
askari: 1,
|
|
|
+ businessLibrary:1,
|
|
|
businessLibraryType: 1,
|
|
|
dutyMode: 0,
|
|
|
remoteControl: null,
|
|
|
@@ -1190,6 +1207,7 @@ export default {
|
|
|
this.askari = data.data.askari;
|
|
|
this.remoteControl = data.data.remoteControl;
|
|
|
this.selfServiceBank = data.data.selfServiceBank;
|
|
|
+ this.businessLibrary=data.data.businessLibrary;
|
|
|
this.lobbyEquipment = data.data.lobbyEquipment;
|
|
|
this.wallPenetratingEquipment = data.data.wallPenetratingEquipment;
|
|
|
this.extendId = data.data.id;
|
|
|
@@ -1638,6 +1656,7 @@ export default {
|
|
|
dutyMode: this.dutyMode,
|
|
|
remoteControl: this.remoteControl ? 1 : 0,
|
|
|
selfServiceBank: this.selfServiceBank ? 1 : 0,
|
|
|
+ businessLibrary:this.businessLibrary?1:0,
|
|
|
lobbyEquipment: this.lobbyEquipment,
|
|
|
wallPenetratingEquipment: this.wallPenetratingEquipment,
|
|
|
platformBrand: this.platformBrand,
|