diff --git a/api/apiRoute.js b/api/apiRoute.js
index 409374b..0ed38d9 100644
--- a/api/apiRoute.js
+++ b/api/apiRoute.js
@@ -38,6 +38,13 @@ export default {
return res;
})
},
+ //获取字典数据
+ common_Dictionary(data = {}) {
+ let url = '/common/getDictionary'
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
@@ -118,12 +125,20 @@ export default {
//↓↓↓↓↓↓↓↓↓↓↓↓-----销售接口相关-----↓↓↓↓↓↓↓↓↓↓↓↓
+ //修改销售端个人资料
editPersonnel(data = {}) {
let url = '/personnel/info'
return http.get(url, data).then(res => {
return res;
})
},
+ //销售端
+ xs_addCustomerResources(data = {}) {
+ let url = '/customerResources/add'
+ return http.post(url, data).then(res => {
+ return res;
+ })
+ },
diff --git a/pages/market/clue/add_clues.vue b/pages/market/clue/add_clues.vue
index 76541c0..7eeb4e4 100644
--- a/pages/market/clue/add_clues.vue
+++ b/pages/market/clue/add_clues.vue
@@ -14,12 +14,12 @@
-
-
-
-
- 查重
-
+
+
+
+
+
+
@@ -66,6 +66,7 @@
+
+
+
+
+
+
-
-
-
-
- {{ (formData.purchasing_power) ? picker_config.purchasing_power.text : '点击选择' }}
-
-
-
-
-
-
-
- {{ (formData.cognitive_idea) ? picker_config.cognitive_idea.text : '点击选择' }}
-
-
-
-
-
-
-
- {{ (formData.optional_class_time) ? formData.optional_class_time : '点击选择' }}
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ (formData.campus) ? picker_config.campus.text : '点击选择' }}
-
-
-
- 下一步
+ 下一步
- 六要素
+
+
+
+ 六要素信息
+
+
+
+
+
+ {{ (formData.purchasing_power) ? picker_config.purchasing_power.text : '点击选择' }}
+
+
+
+
+
+
+
+ {{ (formData.cognitive_idea) ? picker_config.cognitive_idea.text : '点击选择' }}
+
+
+
+
+
+
+
+ {{ (formData.optional_class_time) ? formData.optional_class_time : '点击选择' }}
+
+
+
+
+
+
+
+ {{ (formData.promised_visit_time) ? formData.promised_visit_time : '点击选择' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+
@@ -451,6 +505,7 @@
diff --git a/pages/market/clue/index.vue b/pages/market/clue/index.vue
index fca4c4e..3c97d58 100644
--- a/pages/market/clue/index.vue
+++ b/pages/market/clue/index.vue
@@ -182,7 +182,7 @@ export default {
},
onLoad(options) {},
onShow(){
- this.init()//初始化
+ // this.init()//初始化
},
//下拉刷新
async onPullDownRefresh() {