Browse Source

完善车辆结清管理

master
yunuo970428 9 months ago
parent
commit
350a659149
  1. 4
      anrui-riskcenter-ui/src/views/settle/settleAdd.vue
  2. 2
      anrui-riskcenter-ui/src/views/settle/settleInfo.vue
  3. 2
      anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleDaiBan.vue
  4. 22
      anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleEdit.vue
  5. 2
      anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleYiBan.vue

4
anrui-riskcenter-ui/src/views/settle/settleAdd.vue

@ -103,7 +103,7 @@
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center"> <div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>资方结清费用</div> <div>资方结清费用</div>
<div style="display: flex;flex-direction: row;justify-content: space-between;align-items: center"> <div style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>贷款保证金:<el-input style="width: 60%" v-model="formobj.loanSettleBankCostVo.loanDeposit" clearable placeholder="" /></div> <div>贷款保证金:<el-input style="width: 60%" @keyup.native="UpNumber" v-model="formobj.loanSettleBankCostVo.loanDeposit" clearable placeholder="" /></div>
<div>是否抵顶: <div>是否抵顶:
<el-radio-group v-model="formobj.loanSettleBankCostVo.topping"> <el-radio-group v-model="formobj.loanSettleBankCostVo.topping">
<el-radio label="1"></el-radio> <el-radio label="1"></el-radio>
@ -725,6 +725,6 @@ export default {
background-color: #000000; /* 对勾的颜色 */ background-color: #000000; /* 对勾的颜色 */
} }
/deep/ .el-radio__input.is-checked+.el-radio__label { /deep/ .el-radio__input.is-checked+.el-radio__label {
color: #000000; color: #000000; /* 选中后的字体颜色 */
} }
</style> </style>

2
anrui-riskcenter-ui/src/views/settle/settleInfo.vue

@ -100,7 +100,7 @@
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center"> <div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>资方结清费用</div> <div>资方结清费用</div>
<div> <div>
<span>贷款保证金: {{ formobj.loanSettleBankCostVo.loanDeposit }}</span> <span style="margin-right: 10px">贷款保证金: {{ formobj.loanSettleBankCostVo.loanDeposit }}</span>
<span>是否抵顶: {{ formobj.loanSettleBankCostVo.topping == '1' ? '是' : formobj.loanSettleBankCostVo.topping == '0' ? '否' : '' }}</span> <span>是否抵顶: {{ formobj.loanSettleBankCostVo.topping == '1' ? '是' : formobj.loanSettleBankCostVo.topping == '0' ? '否' : '' }}</span>
</div> </div>
</div> </div>

2
anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleDaiBan.vue

@ -102,7 +102,7 @@
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center"> <div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>资方结清费用</div> <div>资方结清费用</div>
<div> <div>
<span>贷款保证金: {{ formobj.loanSettleBankCostVo.loanDeposit }}</span> <span style="margin-right: 10px">贷款保证金: {{ formobj.loanSettleBankCostVo.loanDeposit }}</span>
<span>是否抵顶: {{ formobj.loanSettleBankCostVo.topping == '1' ? '是' : formobj.loanSettleBankCostVo.topping == '0' ? '否' : '' }}</span> <span>是否抵顶: {{ formobj.loanSettleBankCostVo.topping == '1' ? '是' : formobj.loanSettleBankCostVo.topping == '0' ? '否' : '' }}</span>
</div> </div>
</div> </div>

22
anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleEdit.vue

@ -101,13 +101,9 @@
</el-row> </el-row>
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center"> <div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>资方结清费用</div> <div>资方结清费用</div>
<div> <div style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div> <div>贷款保证金:<el-input style="width: 60%" @keyup.native="UpNumber" v-model="formobj.loanSettleBankCostVo.loanDeposit" clearable placeholder="" /></div>
<span>贷款保证金:</span> <div>是否抵顶:
<el-input v-model="formobj.loanSettleBankCostVo.loanDeposit" clearable placeholder="" />
</div>
<div>
<span>是否抵顶:</span>
<el-radio-group v-model="formobj.loanSettleBankCostVo.topping"> <el-radio-group v-model="formobj.loanSettleBankCostVo.topping">
<el-radio label="1"></el-radio> <el-radio label="1"></el-radio>
<el-radio label="0"></el-radio> <el-radio label="0"></el-radio>
@ -631,4 +627,16 @@ export default {
.addinputInfo { .addinputInfo {
margin-left: 190px !important; margin-left: 190px !important;
} }
/* 覆盖element-ui的单选按钮样式 */
/deep/ .el-radio__input.is-checked .el-radio__inner {
border-color: #409EFF; /* 未选中状态下的边框颜色 */
background-color: #409EFF; /* 选中后的背景色 */
}
/* 如果需要改变选中后对勾的颜色 */
/deep/ .el-radio__input.is-checked .el-radio__inner:after {
background-color: #000000; /* 对勾的颜色 */
}
/deep/ .el-radio__input.is-checked+.el-radio__label {
color: #000000; /* 选中后的字体颜色 */
}
</style> </style>

2
anrui-riskcenter-ui/src/views/workFlow/jieqingFlow/settleYiBan.vue

@ -99,7 +99,7 @@
<div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center"> <div class="title" style="display: flex;flex-direction: row;justify-content: space-between;align-items: center">
<div>资方结清费用</div> <div>资方结清费用</div>
<div> <div>
<span>贷款保证金: {{ formobj.loanSettleBankCostVo.loanDeposit }}</span> <span style="margin-right: 10px">贷款保证金: {{ formobj.loanSettleBankCostVo.loanDeposit }}</span>
<span>是否抵顶: {{ formobj.loanSettleBankCostVo.topping == '1' ? '是' : formobj.loanSettleBankCostVo.topping == '0' ? '否' : '' }}</span> <span>是否抵顶: {{ formobj.loanSettleBankCostVo.topping == '1' ? '是' : formobj.loanSettleBankCostVo.topping == '0' ? '否' : '' }}</span>
</div> </div>
</div> </div>

Loading…
Cancel
Save