diff --git a/pages.json b/pages.json
index d7285d7..29bbcd4 100644
--- a/pages.json
+++ b/pages.json
@@ -439,6 +439,15 @@
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
}
+ },
+ {
+ "path": "pages/market/clue/edit_clues_log",
+ "style": {
+ "navigationBarTitleText": "修改记录",
+ "navigationStyle": "default",
+ "navigationBarBackgroundColor": "#fff",
+ "navigationBarTextStyle": "black"
+ }
},
{
"path": "pages/market/clue/clue_info",
diff --git a/pages/market/clue/clue_info.vue b/pages/market/clue/clue_info.vue
index 5d21baa..d588605 100644
--- a/pages/market/clue/clue_info.vue
+++ b/pages/market/clue/clue_info.vue
@@ -258,9 +258,9 @@
- 编辑详情
+ 编辑详情
拨打电话
- 修改记录
+ 修改记录
@@ -359,12 +359,21 @@
})
},
//跳转页面-编辑客户详情
- openEditClues(){
+ openViewEditClues(){
let resource_sharing_id = this.resource_sharing_id//共享资源表id
uni.navigateTo({
url: `/pages/market/clue/edit_clues?resource_sharing_id=${resource_sharing_id}`
})
},
+
+ //跳转页面-客户信息修改记录
+ openViewEditCluesLog() {
+ let resource_id = this.clientInfo.resource_id
+ uni.navigateTo({
+ url: `/pages/market/clue/edit_clues_log?resource_id=${resource_id}`
+ })
+ },
+
//跳转页面-转接跟进任务
openViewNewTask() {
uni.navigateTo({
diff --git a/pages/market/clue/edit_clues_log.vue b/pages/market/clue/edit_clues_log.vue
new file mode 100644
index 0000000..962fbab
--- /dev/null
+++ b/pages/market/clue/edit_clues_log.vue
@@ -0,0 +1,266 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 2025-04-01 23:05:05
+
+
+ 修改人:张三 修改了如下内容
+
+
+
+
+ | 字段名称 |
+ 原数据 |
+ 新数据 |
+
+
+
+
+
+
+ | {{ row.field }} |
+ {{ row.oldValue }} |
+ {{ row.newValue }} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/market/clue/index.vue b/pages/market/clue/index.vue
index 78bee70..f29f3b4 100644
--- a/pages/market/clue/index.vue
+++ b/pages/market/clue/index.vue
@@ -10,7 +10,7 @@
v-if="segmented_type == 1"
scroll-y="true"
:lower-threshold="lowerThreshold"
- @scrolltolower="loadMoreData"
+ @scrolltolower="loadMoreData_1"
style="height: 100vh;"
>
@@ -75,7 +75,7 @@
v-if="segmented_type == 2"
scroll-y="true"
:lower-threshold="lowerThreshold"
- @scrolltolower="loadMoreData"
+ @scrolltolower="loadMoreData_2"
style="height: 100vh;"
>
@@ -324,7 +324,7 @@ export default {
//判断是否加载
if (!this.isReachedBottom) {
this.isReachedBottom = true;//设置为不可请求状态
- this.getList();
+ this.getList_1();
}
},
//重置为第一页
@@ -382,7 +382,7 @@ export default {
//判断是否加载
if (!this.isReachedBottom) {
this.isReachedBottom = true;//设置为不可请求状态
- this.getList();
+ this.getList_2();
}
},
//重置为第一页