123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <template name="record">
- <view class="record-template">
- <!-- 支付记录 -->
- <view class="record-content">
- <view class="record-title">
- <view class="record-title-l">支付记录</view>
- <view class="record-title-r" v-if="!isEmpty">
- 已支付:<text class="red">¥{{ receiptAmount != null ? receiptAmount.toFixed(2): '0.00'}}</text>
- </view>
- </view>
- <view class="record-empty" v-if="isEmpty">
- <text>暂无支付记录</text>
- </view>
- <view class="record-list" v-else>
- <view class="record-item" v-for="(item,index) in discernReceiptList" :key="index">
- <view class="item-time mm">¥{{item.associateAmount.toFixed(2)}}</view>
- <view class="item-time pp">{{payTypeText(item.payType)}}</view>
- <view class="item-time tt">{{item.receiptDate}}</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default{
- name:"record",
- props:{
- discernReceiptList:{
- type:Array
- },
- receiptAmount:{
- type:Number
- }
- },
- data() {
- return{
- isEmpty:false,
- paymentData:'',
- typeText:'',
- isOpen:false,
- }
- },
- created(){
- this.initData(this.discernReceiptList)
- },
- computed: {
- },
- methods:{
- initData(res) {
- if(res!=''){
- this.isEmpty = false
- this.paymentData = res;
- }else{
- this.isEmpty = true
- }
- },
- payTypeText (state){//处理支付记录文字
- let stateText = '',
- stateTextObject={
- 12:'企业网银',
- 13:'微信支付',
- 14:'支付宝',
- 15:'微信支付',
- 16:'余额抵扣',
- }
- Object.keys(stateTextObject).forEach(key => {
- if(key == state){
- stateText = stateTextObject[key]
- }
- })
- return stateText;
- },
- }
- }
- </script>
- <style lang="scss">
- .record-template{
- width: 100%;
- height: auto;
- background: #FFFFFF;
- float: left;
- margin-top: 24rpx;
- .record-content{
- width: 702rpx;
- padding: 20rpx 24rpx;
- height: auto;
- .record-title{
- width: 100%;
- font-size: $font-size-28;
- color: $text-color;
- text-align: left;
- line-height: 40rpx;
- margin-bottom: 12rpx;
- float: left;
- .record-title-l{
- font-weight: bold;
- float: left;
- }
- .record-title-r{
- float: right;
- .red{
- color: #ff457b;
- font-weight: bold;
- }
- }
- }
- .record-empty{
- font-size: $font-size-28;
- color: $text-color;
- text-align: left;
- line-height: 40rpx;
- }
- .record-list{
- width: 100%;
- height: auto;
- float: left;
- margin-top: 12rpx;
- .record-item{
- height: 40rpx;
- width: 100%;
- padding: 12rpx 0;
- font-size: $font-size-28;
- line-height: 40rpx;
- float: left;
- display: flex;
- justify-content: center;
- flex-direction: row;
- .item-time{
- &.mm{
- flex: 3;
- color: $text-color;
- }
- &.pp{
- flex: 3;
- color: $text-color;
- }
- &.tt{
- flex: 4;
- color: #999999;
- }
- }
- }
- }
- }
- }
- </style>
|