dev01 2 年之前
父節點
當前提交
aa59d79bfc

+ 38 - 1
js/component/dataDic.js

@@ -1413,9 +1413,46 @@ module.exports = {
       value: "1",
       key: "已签单客户",
     },
+    // {
+    //   value: "2",
+    //   key: "外联客户",
+    // },
+  ],
+  //销售类型
+  ssalesType:[
+    {
+      value: "0",
+      key: "电话新开发",
+    },
+    {
+      value: "1",
+      key: "电话自带资源",
+    },
     {
       value: "2",
-      key: "外联客户",
+      key: "网络",
+    },
+    {
+      value: "3",
+      key: "渠道",
+    },
+    {
+      value: "4",
+      key: "转介绍",
+    },
+    {
+      value: "5",
+      key: "其他",
+    },
+  ],
+  qsalesType:[
+    {
+      value: "6",
+      key: "高新复购",
+    },
+    {
+      value: "7",
+      key: "其他复购",
     },
   ],
   //性别

+ 2 - 3
js/component/manageCenter/channelList/channelunit/index.jsx

@@ -599,11 +599,11 @@ class ChannelUnit extends Component {
     return (
       <div className="user-content">
         <div className="content-title" style={{ marginBottom: 10 }}>
-          <span style={{ fontWeight: 900, fontSize: 16 }}>渠道单位</span>
+          <span style={{ fontWeight: 900, fontSize: 16 }}>私有渠道列表</span>
         </div>
         <Tabs defaultActiveKey="1">
           <TabPane tab="搜索" key="1">
-            <div style={{ padding: "10px 0" }}>
+            <div>
               <Form layout="inline">
                 <FormItem>
                   <Input
@@ -764,7 +764,6 @@ class ChannelUnit extends Component {
             <div
               style={{
                 marginLeft: 10,
-                marginTop: 10,
                 paddingBottom: 10,
                 display: "flex",
               }}

+ 14 - 15
js/component/manageCenter/channelList/channelunit/publist.jsx

@@ -69,11 +69,11 @@ class ChannelUnit extends Component {
           dataIndex: "createTime",
           key: "createTime",
         },
-        {
-          title: "跟进人",
-          dataIndex: "aName",
-          key: "aName",
-        },
+        // {
+        //   title: "跟进人",
+        //   dataIndex: "aName",
+        //   key: "aName",
+        // },
         {
           title: "操作",
           dataIndex: "op",
@@ -619,11 +619,11 @@ class ChannelUnit extends Component {
     return (
       <div className="user-content">
         <div className="content-title" style={{ marginBottom: 10 }}>
-          <span style={{ fontWeight: 900, fontSize: 16 }}>渠道单位</span>
+          <span style={{ fontWeight: 900, fontSize: 16 }}>公共渠道列表</span>
         </div>
-        <Tabs defaultActiveKey="1">
+        <Tabs defaultActiveKey="1" >
           <TabPane tab="搜索" key="1">
-            <div style={{ padding: "10px 0" }}>
+            <div>
               <Form layout="inline">
                 <FormItem>
                   <Input
@@ -710,7 +710,7 @@ class ChannelUnit extends Component {
                     ))}
                   </Select>
                 </FormItem>
-                <FormItem>
+                {/* <FormItem>
                   <AutoComplete
                     className="certain-category-search"
                     dropdownClassName="certain-category-search-dropdown"
@@ -725,7 +725,7 @@ class ChannelUnit extends Component {
                   >
                     <Input />
                   </AutoComplete>
-                </FormItem>
+                </FormItem> */}
                 <FormItem>
                   <Select
                     placeholder={"渠道类型"}
@@ -784,7 +784,6 @@ class ChannelUnit extends Component {
             <div
               style={{
                 marginLeft: 10,
-                marginTop: 10,
                 paddingBottom: 10,
                 display: "flex",
               }}
@@ -826,14 +825,14 @@ class ChannelUnit extends Component {
                 >
                   渠道日志
                 </Button>
-                <Button
+                {/* <Button
                   type="primary"
                   onClick={this.remove.bind(this)}
                   style={{ marginLeft: "10px" }}
                   disabled={!hasSelected}
                 >
                   移出渠道
-                </Button>
+                </Button> */}
                 <Button
                   type="primary"
                   onClick={() => {
@@ -847,13 +846,13 @@ class ChannelUnit extends Component {
                   更改日志
                 </Button>
               </div>
-              <Button
+              {/* <Button
                 type="primary"
                 onClick={this.addClick.bind(this)}
                 style={{ marginLeft: "10px" }}
               >
                 新增渠道
-              </Button>
+              </Button> */}
             </div>
           </TabPane>
           <TabPane tab="更改表格显示数据" key="3">

文件差異過大導致無法顯示
+ 367 - 241
js/component/manageCenter/order/orderNew/addService.jsx