128 lines
4.2 KiB
Vue
128 lines
4.2 KiB
Vue
<template>
|
|
<a-modal v-model:visible="visible" :footer="null">
|
|
<div class="modal-title">预计入账详细</div>
|
|
<div class="statistics-list" style="padding-bottom: 20px;">
|
|
<div v-for="(item, index) in props.countDetailList[0] as any" :key="index" class="item item-box-title">
|
|
<!-- <div v-if="item.type == 'line'" class="line" />-->
|
|
<div class="title">{{ item.title }}</div>
|
|
<div v-if="item.title" class="amount">
|
|
<a-tooltip v-if="item.title == '实付金额'">
|
|
<template #title>{{ item.content }}元</template>
|
|
<span class="amount-num">{{ item.content }}</span><span>元</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-else>
|
|
<template #title> - {{ item.content }}元</template>
|
|
<span class="amount-num">-{{ item.content }}</span><span>元</span>
|
|
</a-tooltip>
|
|
</div>
|
|
<div v-if="item.count >= 0" class="detail">
|
|
<span>{{ item.count }}笔</span>
|
|
</div>
|
|
<span class="item-box-title-border"></span>
|
|
</div>
|
|
</div>
|
|
<div class="statistics-list" style="padding-bottom: 55px;">
|
|
<div v-for="(item, index) in props.countDetailList[1] as any" :key="index" class="item item-box-title">
|
|
<!-- <div v-if="item.type == 'line'" class="line" />-->
|
|
<div class="title">{{ item.title }}</div>
|
|
<div v-if="item.title" class="amount">
|
|
<a-tooltip v-if="item.title == '补贴金额'">
|
|
<template #title> {{ item.content }}元</template>
|
|
<span class="amount-num">{{ item.content }}</span><span>元</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-else>
|
|
<template #title>- {{ item.content }}元</template>
|
|
<span class="amount-num">-{{ item.content }}</span><span>元</span>
|
|
</a-tooltip>
|
|
</div>
|
|
<div v-if="item.count >= 0" class="detail">
|
|
<span>{{ item.count }}笔</span>
|
|
</div>
|
|
<span class="item-box-title-border"></span>
|
|
</div>
|
|
</div>
|
|
<div class="statistics-list" style="padding-bottom: 55px;">
|
|
<div v-for="(item, index) in props.countDetailList[2] as any" :key="index" class="item item-box-title-price">
|
|
<!-- <div v-if="item.type == 'line'" class="line" />-->
|
|
<div class="title">{{ item.title }}</div>
|
|
<div v-if="item.title" class="amount">
|
|
<a-tooltip v-if="item.title == '补贴金额'">
|
|
<template #title> {{ item.content }}元</template>
|
|
<span class="amount-num">{{ item.content }}</span><span>元</span>
|
|
</a-tooltip>
|
|
<a-tooltip v-else>
|
|
<template #title>- {{ item.content }}元</template>
|
|
<span class="amount-num">-{{ item.content }}</span><span>元</span>
|
|
</a-tooltip>
|
|
</div>
|
|
<div v-if="item.count >= 0" class="detail">
|
|
<span>{{ item.count }}笔</span>
|
|
</div>
|
|
<span class="item-box-title-border"></span>
|
|
</div>
|
|
</div>
|
|
<div class="close" @click=" visible = false">
|
|
<a-button type="primary">知道了</a-button>
|
|
</div>
|
|
</a-modal>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref, reactive } from 'vue'
|
|
const visible = ref<boolean>(false)
|
|
|
|
const props = defineProps({
|
|
countDetailList: {type: Array, default: () => []},
|
|
sucDetailList: {type: Array, default: () => []}
|
|
})
|
|
|
|
const showModal = () => visible.value = true
|
|
|
|
defineExpose({showModal})
|
|
</script>
|
|
<style scoped lang="less">
|
|
.modal-title, .modal-describe{
|
|
text-align: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
.modal-title {
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
.close {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
border-top: 1px solid #EFEFEF;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 10px 0;
|
|
}
|
|
.amount {
|
|
//max-width:150px;
|
|
//overflow:hidden;
|
|
//text-overflow:ellipsis;
|
|
//white-space:nowrap;
|
|
}
|
|
.item-box-title{
|
|
min-width: 33%;
|
|
text-align: center
|
|
}
|
|
.item-box-title-price{
|
|
min-width: 33%;
|
|
text-align: center
|
|
}
|
|
.item-box-title:nth-child(1){;
|
|
border-right: 1px solid #efefef;
|
|
}
|
|
.item-box-title:nth-child(2){;
|
|
border-right: 1px solid #efefef;
|
|
}
|
|
.item-box-title-border{
|
|
//border-right: 1px solid #EFEFEF !important;
|
|
height: 100px;
|
|
}
|
|
</style> |