zhangwencui
9 天以前 fc10ba09ac226832b8dd59a11b57fc3545503d82
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<template>
  <view class="customer-detail-page">
    <!-- 页面头部 -->
    <PageHeader title="客户详情"
                @back="goBack" />
    <!-- 详情内容 -->
    <view class="detail-content">
      <!-- 客户基本信息 -->
      <view class="section">
        <view class="section-title">客户基本信息</view>
        <view class="info-list">
          <view class="info-item">
            <text class="info-label">客户名称</text>
            <text class="info-value">{{ detailData.customerName || '-' }}</text>
          </view>
          <view class="info-item">
            <text class="info-label">客户类型</text>
            <text class="info-value">{{ detailData.customerType || '-' }}</text>
          </view>
          <view class="info-item">
            <text class="info-label">纳税人识别号</text>
            <text class="info-value">{{ detailData.taxpayerIdentificationNumber || '-' }}</text>
          </view>
          <view class="info-item">
            <text class="info-label">公司地址</text>
            <text class="info-value">{{ detailData.companyAddress || '-' }}</text>
          </view>
          <view class="info-item">
            <text class="info-label">公司电话</text>
            <text class="info-value">{{ detailData.companyPhone || '-' }}</text>
          </view>
          <view class="info-item">
            <text class="info-label">联系人</text>
            <text class="info-value">{{ detailData.contactPerson || '-' }}</text>
          </view>
          <view class="info-item">
            <text class="info-label">联系电话</text>
            <text class="info-value">{{ detailData.contactPhone || '-' }}</text>
          </view>
        </view>
      </view>
      <!-- 跟进记录 -->
      <view class="section">
        <view class="section-title">
          <view class="title-left">
            <up-icon name="clock-fill"
                     size="16"
                     color="#409eff" />
            <text>跟进记录</text>
          </view>
          <text class="record-count"
                v-if="detailData.followUpList && detailData.followUpList.length > 0">
            共{{ detailData.followUpList.length }}条
          </text>
        </view>
        <view v-if="detailData.followUpList && detailData.followUpList.length > 0"
              class="follow-up-list">
          <view v-for="(item, index) in detailData.followUpList"
                :key="index"
                class="follow-up-item">
            <!-- 时间轴左侧线条 -->
            <view class="timeline-left">
              <view class="timeline-dot"></view>
              <view class="timeline-line"
                    v-if="index !== detailData.followUpList.length - 1"></view>
            </view>
            <!-- 内容区域 -->
            <view class="follow-up-content-wrapper">
              <view class="follow-up-header">
                <view class="follow-up-info">
                  <view class="user-info">
                    <up-icon name="account-fill"
                             size="14"
                             color="#909399" />
                    <text class="follow-up-name">{{ item.followerUserName || '-' }}</text>
                  </view>
                  <view class="time-info">
                    <up-icon name="clock"
                             size="12"
                             color="#c0c4cc" />
                    <text class="follow-up-time">{{ formatDateTime(item.followUpTime) }}</text>
                  </view>
                </view>
                <view class="follow-up-tags">
                  <up-tag type="primary"
                          size="mini">{{ item.followUpMethod || '-' }}</up-tag>
                  <up-tag :type="getFollowUpLevelType(item.followUpLevel)"
                          size="mini">{{ item.followUpLevel || '-' }}</up-tag>
                </view>
              </view>
              <view class="follow-up-content">
                <view class="content-label">
                  <up-icon name="edit-pen-fill"
                           size="12"
                           color="#c0c4cc" />
                  <text>跟进内容</text>
                </view>
                <view class="content-box">
                  <text class="content-text">{{ item.content || '-' }}</text>
                </view>
              </view>
              <!-- <view v-if="item.fileList && item.fileList.length > 0"
                    class="follow-up-files">
                <view class="files-header">
                  <up-icon name="folder-open"
                           size="12"
                           color="#c0c4cc" />
                  <text class="files-label">附件 ({{ item.fileList.length }})</text>
                </view>
                <view class="files-list">
                  <view v-for="(file, fileIndex) in item.fileList"
                        :key="fileIndex"
                        class="file-item">
                    <up-icon name="attach"
                             size="14"
                             color="#409eff" />
                    <text class="file-name">{{ file.name || '附件' + (fileIndex + 1) }}</text>
                  </view>
                </view>
              </view> -->
            </view>
          </view>
        </view>
        <view v-else
              class="no-data">
          <up-empty mode="data"
                    text="暂无跟进记录" />
        </view>
      </view>
      <!-- 银行信息 -->
      <view class="section">
        <view class="section-title">银行信息</view>
        <view class="info-list">
          <view class="info-item">
            <text class="info-label">基本银行账户</text>
            <text class="info-value">{{ detailData.basicBankAccount || '-' }}</text>
          </view>
          <view class="info-item">
            <text class="info-label">开户行</text>
            <text class="info-value">{{ detailData.bankAccount || '-' }}</text>
          </view>
          <view class="info-item">
            <text class="info-label">银行账号</text>
            <text class="info-value">{{ detailData.bankCode || '-' }}</text>
          </view>
        </view>
      </view>
      <!-- 维护信息 -->
      <view class="section">
        <view class="section-title">维护信息</view>
        <view class="info-list">
          <view class="info-item">
            <text class="info-label">维护人</text>
            <text class="info-value">{{ detailData.maintainer || '-' }}</text>
          </view>
          <view class="info-item">
            <text class="info-label">维护时间</text>
            <text class="info-value">{{ formatDateTime(detailData.maintenanceTime) }}</text>
          </view>
        </view>
      </view>
    </view>
  </view>
</template>
 
<script setup>
  import { ref, onMounted } from "vue";
  import PageHeader from "@/components/PageHeader.vue";
  import { getCustomer } from "@/api/cooperativeOffice/clientVisit";
  import { onLoad, onShow } from "@dcloudio/uni-app";
  import dayjs from "dayjs";
 
  // 获取页面参数
  const getPageId = () => {
    const pages = getCurrentPages();
    const currentPage = pages[pages.length - 1];
    const options = currentPage.options || {};
    return options.id || "";
  };
 
  // 详情数据
  const detailData = ref({});
 
  // 格式化日期时间
  const formatDateTime = dateStr => {
    if (!dateStr) return "-";
    return dayjs(dateStr).format("YYYY-MM-DD HH:mm:ss");
  };
 
  // 获取跟进级别标签类型
  const getFollowUpLevelType = level => {
    switch (level) {
      case "非常熟悉":
        return "success";
      case "熟悉":
        return "primary";
      case "一般":
        return "warning";
      case "不熟悉":
        return "error";
      default:
        return "info";
    }
  };
 
  // 返回上一页
  const goBack = () => {
    uni.navigateBack();
  };
  const customerId = ref("");
  // customerId
  onLoad(options => {
    // 解析customerId
    if (options.customerId) {
      customerId.value = options.customerId;
      getDetail();
    }
  });
 
  // 获取详情数据
  const getDetail = async () => {
    if (!customerId.value) {
      uni.showToast({
        title: "参数错误",
        icon: "none",
      });
      return;
    }
 
    try {
      uni.showLoading({
        title: "加载中...",
      });
 
      const res = await getCustomer(customerId.value);
 
      if (res.code === 200) {
        detailData.value = res.data;
      } else {
        uni.showToast({
          title: res.msg || "获取详情失败",
          icon: "none",
        });
      }
    } catch (error) {
      console.error("加载详情数据失败:", error);
      uni.showToast({
        title: "网络错误",
        icon: "none",
      });
    } finally {
      uni.hideLoading();
    }
  };
 
  onMounted(() => {});
</script>
 
<style scoped lang="scss">
  .customer-detail-page {
    min-height: 100vh;
    background-color: #f5f5f5;
  }
 
  .detail-content {
    padding: 16px;
  }
 
  .section {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
 
  .section-title {
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #303133;
    border-bottom: 1px solid #f0f0f0;
  }
 
  .info-list {
    padding: 8px 0;
  }
 
  .info-item {
    display: flex;
    padding: 12px 16px;
    border-bottom: 1px solid #f8f8f8;
  }
 
  .info-item:last-child {
    border-bottom: none;
  }
 
  .info-label {
    width: 120px;
    font-size: 14px;
    color: #606266;
  }
 
  .info-value {
    flex: 1;
    font-size: 14px;
    color: #303133;
    text-align: right;
  }
 
  .section-title {
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #303133;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
 
  .title-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
 
  .record-count {
    font-size: 12px;
    color: #909399;
    font-weight: normal;
    background: #f5f7fa;
    padding: 2px 8px;
    border-radius: 10px;
  }
 
  .follow-up-list {
    padding: 0;
  }
 
  .follow-up-item {
    display: flex;
    padding: 16px;
    position: relative;
  }
 
  .timeline-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 12px;
    padding-top: 4px;
  }
 
  .timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #409eff;
    border: 2px solid #e6f2ff;
    flex-shrink: 0;
  }
 
  .timeline-line {
    width: 2px;
    flex: 1;
    background: #e4e7ed;
    margin-top: 4px;
    min-height: 40px;
  }
 
  .follow-up-content-wrapper {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
  }
 
  .follow-up-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
  }
 
  .follow-up-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
 
  .user-info {
    display: flex;
    align-items: center;
    gap: 6px;
  }
 
  .time-info {
    display: flex;
    align-items: center;
    gap: 4px;
  }
 
  .follow-up-name {
    font-size: 14px;
    font-weight: 600;
    color: #303133;
  }
 
  .follow-up-time {
    font-size: 12px;
    color: #909399;
  }
 
  .follow-up-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
 
  .follow-up-content {
    margin-bottom: 12px;
  }
 
  .content-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #909399;
    margin-bottom: 8px;
  }
 
  .content-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 10px 12px;
    border-left: 3px solid #409eff;
  }
 
  .content-text {
    font-size: 14px;
    color: #303133;
    line-height: 1.6;
    word-break: break-all;
    word-wrap: break-word;
  }
 
  .follow-up-files {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e4e7ed;
  }
 
  .files-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
  }
 
  .files-label {
    font-size: 12px;
    color: #909399;
  }
 
  .files-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
 
  .file-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: #ffffff;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
  }
 
  .file-name {
    font-size: 12px;
    color: #606266;
  }
 
  .no-data {
    padding: 40px 20px;
    text-align: center;
  }
</style>