mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 18:06:44 +08:00
未审批页面,所有赔案的每一个字段需纵向对齐
This commit is contained in:
@@ -42,7 +42,7 @@
|
||||
<span class="w30 h30 inline-b" v-if="active == 'notApproved'" @click.stop="checkBoxSwitch(item01.id,item01.isChecked)">
|
||||
<i :class="item01.isChecked=='0'?'checked':'nochecked'"></i>
|
||||
</span>
|
||||
<span class="ml5 mr10 fwb">{{index01+1}}.{{item01.insuredName}}</span>
|
||||
<span class="ml5 mr10 fwb w80 inline-b v-middle">{{index01+1}}.{{item01.insuredName}}</span>
|
||||
<span class="mr10 fwb">{{item01.caseEndDate}}</span>
|
||||
<span class="mr10 fwb">{{item01.getMoney}}元</span>
|
||||
</template>
|
||||
@@ -124,7 +124,7 @@ export default {
|
||||
totalMoney:0,//赔案ids(数组)
|
||||
claimApprovalIds:[],//赔案ids(数组)
|
||||
total:0, //统计list中有多少条子数据
|
||||
btnStatus:0, //按钮状态 0通过 1拒绝
|
||||
btnStatus:1, //按钮状态 0-不通过,1-通过
|
||||
activeNames:[],//控制展开的面板列表
|
||||
isOpen:0 //右上角按钮状态 0 全部收起 1 全部展开
|
||||
}
|
||||
@@ -206,11 +206,11 @@ export default {
|
||||
that.totalMoney = 0
|
||||
}
|
||||
//审批弹框点击取消之后,操作checkbox或全选时,统计通过、拒绝按钮数量
|
||||
// 按钮状态 0通过 1拒绝
|
||||
if(this.btnStatus == 0){
|
||||
// 按钮状态 0-不通过,1-通过
|
||||
if(this.btnStatus == 1){
|
||||
this.refuseNum = 0
|
||||
this.passNum = this.claimApprovalIds.length
|
||||
}else if(this.btnStatus == 1){
|
||||
}else if(this.btnStatus == 0){
|
||||
this.refuseNum = this.claimApprovalIds.length
|
||||
this.passNum = 0
|
||||
}
|
||||
@@ -237,11 +237,11 @@ export default {
|
||||
that.totalMoney = 0
|
||||
}
|
||||
// 审批弹框点击取消之后,操作checkbox或全选时,统计通过、拒绝按钮数量
|
||||
// 按钮状态 0通过 1拒绝
|
||||
if(this.btnStatus == 0){
|
||||
// 按钮状态 0-不通过,1-通过
|
||||
if(this.btnStatus == 1){
|
||||
this.refuseNum = 0
|
||||
this.passNum = this.claimApprovalIds.length
|
||||
}else if(this.btnStatus == 1){
|
||||
}else if(this.btnStatus == 0){
|
||||
this.refuseNum = this.claimApprovalIds.length
|
||||
this.passNum = 0
|
||||
}
|
||||
@@ -251,7 +251,7 @@ export default {
|
||||
//通过按钮
|
||||
passHandle(){
|
||||
if(this.claimApprovalIds.length){
|
||||
this.btnStatus = 0 //按钮状态 0通过 1拒绝
|
||||
this.btnStatus = 1 //按钮状态 0-不通过,1-通过
|
||||
this.refuseNum = 0
|
||||
this.passNum = this.claimApprovalIds.length
|
||||
this.claimApprovalFunc(0)
|
||||
@@ -262,7 +262,7 @@ export default {
|
||||
//拒绝按钮
|
||||
refuseHandle(){
|
||||
if(this.claimApprovalIds.length){
|
||||
this.btnStatus = 1 //按钮状态 0通过 1拒绝
|
||||
this.btnStatus = 0 //按钮状态 0-不通过,1-通过
|
||||
this.refuseNum = this.claimApprovalIds.length
|
||||
this.passNum = 0
|
||||
this.claimApprovalFunc(1)
|
||||
|
||||
Reference in New Issue
Block a user