|
|
@@ -2,7 +2,7 @@
|
|
2
|
2
|
<view class="page-one-container">
|
|
3
|
3
|
<!-- 图片资料标题 -->
|
|
4
|
4
|
<view class="page-header">
|
|
5
|
|
-
|
|
|
5
|
+
|
|
6
|
6
|
<view class="detail-image-header">
|
|
7
|
7
|
<text class="detail-image-title">图片资料</text>
|
|
8
|
8
|
<view class="copy-btn" @click="handleSaveAllImages">
|
|
|
@@ -11,7 +11,24 @@
|
|
11
|
11
|
</view>
|
|
12
|
12
|
</view>
|
|
13
|
13
|
|
|
14
|
|
- <!-- 聊天记录/通话记录/跟进卡片 -->
|
|
|
14
|
+ <!-- 实物图卡片 -->
|
|
|
15
|
+ <view class="card-wrap">
|
|
|
16
|
+ <view class="card-title">实物图</view>
|
|
|
17
|
+ <view class="image-upload-container">
|
|
|
18
|
+ <view class="image-list">
|
|
|
19
|
+ <view v-for="(item, index) in truePicList" :key="`truePic-${index}`" class="image-item">
|
|
|
20
|
+ <PicComp :src="item.fileUrl" @needPreviewPic="previewTrueImage" />
|
|
|
21
|
+ <view class="delete-btn" @click="handleDeleteImage(item)">×</view>
|
|
|
22
|
+ </view>
|
|
|
23
|
+ <view class="upload-btn" @click="handleUploadImage('truePic')">
|
|
|
24
|
+ <u-icon name="plus" size="40" color="#999" />
|
|
|
25
|
+ </view>
|
|
|
26
|
+ </view>
|
|
|
27
|
+ </view>
|
|
|
28
|
+ </view>
|
|
|
29
|
+
|
|
|
30
|
+
|
|
|
31
|
+ <!-- 聊天记录/通话记录/前端跟进/跟进记录 -->
|
|
15
|
32
|
<view class="card-wrap">
|
|
16
|
33
|
<view class="card-title">
|
|
17
|
34
|
<text :class="{ 'active': recordType === 'chat' }" @click="recordType = 'chat'">
|
|
|
@@ -57,21 +74,7 @@
|
|
57
|
74
|
<follow-card v-if="recordType === 'followRecord'" :key="'followRecord'" :clue-id="currentClueId" type="5" />
|
|
58
|
75
|
</view>
|
|
59
|
76
|
|
|
60
|
|
- <!-- 实物图卡片 -->
|
|
61
|
|
- <view class="card-wrap">
|
|
62
|
|
- <view class="card-title">实物图</view>
|
|
63
|
|
- <view class="image-upload-container">
|
|
64
|
|
- <view class="image-list">
|
|
65
|
|
- <view v-for="(item, index) in truePicList" :key="`truePic-${index}`" class="image-item">
|
|
66
|
|
- <PicComp :src="item.fileUrl" @needPreviewPic="previewTrueImage" />
|
|
67
|
|
- <view class="delete-btn" @click="handleDeleteImage(item)">×</view>
|
|
68
|
|
- </view>
|
|
69
|
|
- <view class="upload-btn" @click="handleUploadImage('truePic')">
|
|
70
|
|
- <u-icon name="plus" size="40" color="#999" />
|
|
71
|
|
- </view>
|
|
72
|
|
- </view>
|
|
73
|
|
- </view>
|
|
74
|
|
- </view>
|
|
|
77
|
+
|
|
75
|
78
|
|
|
76
|
79
|
<!-- 基本信息卡片 -->
|
|
77
|
80
|
<view class="info-card">
|