Browse Source

销售线索

zhaoxiaohai 3 năm trước cách đây
mục cha
commit
8d1b980992

+ 2 - 4
pages/threadedTree/details/index.js

@@ -106,8 +106,7 @@ Page({
     query_teamList(i = 0) {
         if (i == 5) return;
         _Http.basic({
-            "classname": "sale.team.team",
-            "method": "query_teamList",
+            id: '20221107094704',
             "content": {
                 "pageNumber": 1,
                 "pageSize": 99999,
@@ -152,8 +151,7 @@ Page({
             icon: "none"
         })
         _Http.basic({
-            "classname": "saletool.orderclue.web.orderclue",
-            "method": "getFollowList",
+            id: 20221101094602,
             "content": {
                 "sat_orderclueid": this.data.sat_orderclueid,
                 "isdesc": this.data.isdesc,

+ 2 - 1
pages/threadedTree/details/modules/handOver/index.js

@@ -31,6 +31,7 @@ Component({
             const {
                 name
             } = event.currentTarget.dataset;
+            console.log(name)
             this.setData({
                 radio: name,
             });
@@ -57,7 +58,7 @@ Component({
                 "method": "changeClue",
                 "content": {
                     "sat_orderclueid": [this.data.sat_orderclueid],
-                    "sa_agent_hrid": this.data.radio
+                    "sys_enterprise_hrid": this.data.radio
                 }
             }).then(res => {
                 this.setData({

+ 2 - 2
pages/threadedTree/details/modules/handOver/index.wxml

@@ -1,7 +1,7 @@
 <van-radio-group value="{{ radio }}" bind:change="onChange">
     <van-cell-group>
-        <van-cell wx:for="{{list}}" title="{{item.name}}" clickable data-name="{{item.sa_agent_hrid}}" bind:click="onClick">
-            <van-radio slot="right-icon" name="{{item.sa_agent_hrid}}" />
+        <van-cell wx:for="{{list}}" title="{{item.name}}" clickable data-name="{{item.sys_enterprise_hrid}}" bind:click="onClick">
+            <van-radio slot="right-icon" name="{{item.sys_enterprise_hrid}}" />
         </van-cell>
     </van-cell-group>
 </van-radio-group>

+ 2 - 3
pages/threadedTree/index.js

@@ -58,8 +58,7 @@ Page({
         let content = this.data.content;
         if (this.data.sort != null) content.sort = this.data.sort;
         _Http.basic({
-            "classname": "saletool.orderclue.web.orderclue",
-            "method": "selectList",
+            id: 20221101094502,
             content
         }).then(res => {
             console.log("列表", res)
@@ -136,5 +135,5 @@ Page({
             })
         })
     },
-    onShareAppMessage(res) { }
+    onShareAppMessage(res) {}
 })