Browse Source

银农:增加待支付和支付记录模块

rongxin_dev
yangfuda 6 months ago
parent
commit
e35f8d2818
1 changed files with 8 additions and 4 deletions
  1. +8
    -4
      src/views/sunVillage_info/bankAgriculture/paymentPending/payRecordList.vue

+ 8
- 4
src/views/sunVillage_info/bankAgriculture/paymentPending/payRecordList.vue View File

@@ -7,7 +7,7 @@
@click-left="onClickLeft"
>
<template #title>
<p style="font-weight: bold;">银行卡转账支付列表</p>
<p style="font-weight: bold;">银行卡转账支付记录列表</p>
</template>
<!-- <template #right>
<van-icon name="add-o" size="25" v-show="showBtn"/>
@@ -32,7 +32,9 @@
<van-icon name="../../../../static/images/sunVillage_info/icon_yn1.png" size="30" color="#FF4646" style="margin-right: 10px;" />
</template>
<template #label>
<p><span><i>¥</i>{{stateFormat(item.expenditureAmount)}}</span><i style="margin-right: 30px;"></i>{{item.applyDate}}</p>
<p><span><i>¥</i>{{stateFormat(item.expenditureAmount)}}</span><i style="margin-right: 15px;"></i>{{item.applyDate}}</p>
<p><span><i>¥</i>{{stateFormat(item.succeedAmount)}}</span><i style="margin-right: 15px;"></i>{{item.failing_allSize}}(失败/总数)</p>
<p><span>支付时间:</span>{{item.paymentTime}}</p>
</template>
<template #default>
<span v-if="item.paymentState === '4' && item.downId != null" style="color: #409EFF">{{ selectDictLabel(paymentStateOptions, item.paymentState)}} <br>(已申请)</span>
@@ -84,6 +86,8 @@ export default {
return $1 + ",";
})
.replace(/\.$/, "") + "元";
}else{
return "0元";
}
},
goAdd(){
@@ -163,7 +167,7 @@ export default {
padding: 0.2rem 3%;
}
/deep/.van-cell__title{
flex: 0.7;
flex: 0.8;
}
/deep/.van-cell__title span{
font-family: Arial;
@@ -179,7 +183,7 @@ export default {
}
}
/deep/.van-cell__value{
flex: 0.3;
flex: 0.2;
color: #1D6FE9;
font-weight: bold;
}


Loading…
Cancel
Save