Sfoglia il codice sorgente

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

rongxin_dev
yangfuda 6 mesi fa
parent
commit
e35f8d2818
1 ha cambiato i file con 8 aggiunte e 4 eliminazioni
  1. +8
    -4
      src/views/sunVillage_info/bankAgriculture/paymentPending/payRecordList.vue

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

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


Caricamento…
Annulla
Salva