gaoluyang
3 天以前 7eebd7981c1f5d2c569556d1e87f7818cef18cce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<template>
    <view class="receipt-payment-detail">
        <!-- 使用通用页面头部组件 -->
        <PageHeader title="客户往来详情" @back="goBack" />
        
        <!-- 统计信息 -->
        <view class="summary-info" v-if="tableData.length > 0">
            <view class="summary-item">
                <text class="summary-label">总记录数</text>
                <text class="summary-value">{{ tableData.length }}</text>
            </view>
            <view class="summary-item">
                <text class="summary-label">开票总金额</text>
                <text class="summary-value">{{ formatAmount(invoiceTotal) }}</text>
            </view>
            <view class="summary-item">
                <text class="summary-label">回款总金额</text>
                <text class="summary-value highlight">{{ formatAmount(receiptTotal) }}</text>
            </view>
            <view class="summary-item">
                <text class="summary-label">应收总金额</text>
                <text class="summary-value danger">{{ formatAmount(unReceiptTotal) }}</text>
            </view>
        </view>
        
        <!-- 回款记录明细列表 -->
        <view class="detail-list" v-if="tableData.length > 0">
            <view v-for="(item, index) in tableData" :key="index" class="detail-item">
                <view class="item-header">
                    <view class="item-left">
                        <view class="record-icon">
                            <up-icon name="file-text" size="16" color="#ffffff"></up-icon>
                        </view>
                        <text class="item-index">{{ index + 1 }}</text>
                    </view>
                    <view class="item-date">{{ item.happenTime }}</view>
                </view>
                <up-divider></up-divider>
                <view class="item-details">
                    <view class="detail-row">
                        <text class="detail-label">开票金额(元)</text>
                        <text class="detail-value">{{ formatAmount(item.invoiceAmount) }}</text>
                    </view>
                    <view class="detail-row">
                        <text class="detail-label">回款金额(元)</text>
                        <text class="detail-value highlight">{{ formatAmount(item.receiptAmount) }}</text>
                    </view>
                    <view class="detail-row">
                        <text class="detail-label">应收金额(元)</text>
                        <text class="detail-value danger">{{ formatAmount(item.unReceiptAmount) }}</text>
                    </view>
                </view>
            </view>
        </view>
        <view v-else class="no-data">
            <text>暂无回款记录</text>
        </view>
    </view>
</template>
 
<script setup>
import { ref, computed, onMounted } from 'vue';
import { onShow } from '@dcloudio/uni-app';
import { customerInteractions } from "@/api/salesManagement/receiptPayment.js";
 
// 客户信息
const customerId = ref('');
 
// 表格数据
const tableData = ref([]);
 
const invoiceTotal = computed(() => {
    return tableData.value.reduce((sum, item) => {
        return sum + (parseFloat(item.invoiceAmount) || 0);
    }, 0);
});
 
const receiptTotal = computed(() => {
    return tableData.value.reduce((sum, item) => {
        return sum + (parseFloat(item.receiptAmount) || 0);
    }, 0);
});
 
const unReceiptTotal = computed(() => {
    return tableData.value.reduce((sum, item) => {
        return sum + (parseFloat(item.unReceiptAmount) || 0);
    }, 0);
});
 
// 返回上一页
const goBack = () => {
    uni.navigateBack();
};
 
// 获取页面参数
const getPageParams = () => {
    const pages = getCurrentPages();
    const currentPage = pages[pages.length - 1];
    const options = currentPage.options;
    
    if (options.customerId) {
        customerId.value = options.customerId;
    }
};
 
// 查询列表
const getList = () => {
    if (!customerId.value) {
        uni.showToast({
            title: '客户信息缺失',
            icon: 'error'
        });
        return;
    }
    
    const param = {
        customerId: customerId.value,
    };
    
    customerInteractions(param).then((res) => {
        tableData.value = res.data;
    }).catch(() => {
        uni.showToast({
            title: '查询失败',
            icon: 'error'
        });
    });
};
 
// 格式化金额
const formatAmount = (amount) => {
    return amount ? parseFloat(amount).toFixed(2) : '0.00';
};
 
onShow(() => {
    // 页面显示时获取参数并刷新列表
    getPageParams();
    getList();
});
 
onMounted(() => {
    // 页面加载时获取参数并刷新列表
    getPageParams();
    getList();
});
</script>
 
<style scoped lang="scss">
.receipt-payment-detail {
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
}
 
.u-divider {
    margin: 0 !important;
}
 
.summary-info {
    background: #ffffff;
    margin: 20px 20px 0 20px;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
 
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    
    &:last-child {
        margin-bottom: 0;
    }
}
 
.summary-label {
    font-size: 14px;
    color: #666;
}
 
.summary-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
 
.summary-value.highlight {
    color: #2979ff;
    font-weight: 600;
}
 
.summary-value.danger {
    color: #ff4757;
    font-weight: 600;
}
 
.detail-list {
    padding: 20px;
}
 
.detail-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 0 16px;
}
 
.item-header {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.item-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
 
.record-icon {
    width: 24px;
    height: 24px;
    background: #2979ff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.item-index {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
 
.item-date {
    font-size: 12px;
    color: #666;
}
 
.item-details {
    padding: 16px 0;
}
 
.detail-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 8px;
    
    &:last-child {
        margin-bottom: 0;
    }
}
 
.detail-label {
    font-size: 12px;
    color: #777777;
    min-width: 60px;
}
 
.detail-value {
    font-size: 12px;
    color: #000000;
    text-align: right;
    flex: 1;
    margin-left: 16px;
}
 
.detail-value.highlight {
    color: #2979ff;
    font-weight: 500;
}
 
.detail-value.danger {
    color: #ff4757;
    font-weight: 500;
}
 
.no-data {
    padding: 40px 0;
    text-align: center;
    color: #999;
}
</style>