Commit 072aa8b85590de65b35cdfddfed635973337d905

Authored by 舒述军
1 parent 4e10f6e0

样式修改

src/pages/crm_new/Settings/index.tsx
... ... @@ -112,7 +112,7 @@ export default function Settings() {
112 112 {/* 龚昆修改整合:集客跟进,潜客跟进到一个新的页面 */}
113 113 <div style={{ width: '100%', height: 40 }} />
114 114 <List.Item actions={[<a onClick={() => history.push('/crm/closeClue')}>查看</a>]}>
115   - <List.Item.Meta title="暂停区域线索站岗分配资格" />
  115 + <List.Item.Meta title="暂停区域线索站岗分配资格设置" />
116 116 </List.Item>
117 117 <List.Item actions={[<a onClick={() => history.push('/crm/followUpSettings')}>查看</a>]}>
118 118 <List.Item.Meta title="跟进设置" />
... ...
src/pages/crm_new/Settings/subpages/CloseClue/index.tsx
... ... @@ -66,11 +66,11 @@ export default function CollectionFollowSetting() {
66 66 return (
67 67 <PageHeaderWrapper title="暂停区域线索站岗分配资格">
68 68 <ConfigProvider locale={zhCN}>
69   - <Card bordered={false} loading={loading}>
  69 + <Card style={{paddingLeft: "60px", justifyContent: 'center'}} bordered={false} loading={loading}>
70 70 {/* <Spin> */}
71 71 <Form
72   - labelCol={{ span: 8 }}
73   - wrapperCol={{ span: 16 }}
  72 + labelCol={{ span: 2 }}
  73 + wrapperCol={{ span: 18 }}
74 74 form={form}
75 75 >
76 76 <Form.Item label="判断标准" name="exclusiveClueConvertRate" labelAlign="right" rules={[{ required: true, message: '请输入' }]}>
... ... @@ -86,7 +86,7 @@ export default function CollectionFollowSetting() {
86 86 />
87 87 </Form.Item>
88 88  
89   - <Form.Item label=" " name="stageMinAssignCount" colon={false} labelAlign="right">
  89 + <Form.Item labelCol={{span: 2}} label=" " name="stageMinAssignCount" colon={false} labelAlign="right">
90 90 <span>{`(1)每阶段滚动判定,低于"判断标准",下一阶段线索每日仅分配`}</span>
91 91 <InputNumber
92 92 controls={false}
... ... @@ -98,11 +98,11 @@ export default function CollectionFollowSetting() {
98 98 precision={0}
99 99 parser={value => value?.replace('个', '')}
100 100 />
101   - <span>(最低要求);</span>
102   - <span>阶段:1~10号;11~20号;21~月末</span>
  101 + <br />
  102 + <span style={{color: "#F4333C"}}>(最低要求);阶段:1~10号;11~20号;21~月末</span>
103 103 </Form.Item>
104 104  
105   - <Form.Item className="feewee-settings-form-closeClue" label=" " colon={false}>
  105 + <Form.Item labelCol={{span: 2}} className="feewee-settings-form-closeClue" label=" " colon={false}>
106 106 <Form.Item colon={false} name="dailyMinAssignCount">
107 107 <span>(2)从</span>
108 108 <InputNumber
... ... @@ -115,9 +115,9 @@ export default function CollectionFollowSetting() {
115 115 precision={0}
116 116 parser={value => value?.replace('个', '')}
117 117 />
  118 + <span>线索起,当天区域站岗分配线索跟进数每增加</span>
118 119 </Form.Item>
119 120 <Form.Item colon={false} name="increaseCount">
120   - <span>线索起,当天区域站岗分配线索跟进数每增加</span>
121 121 <InputNumber
122 122 controls={false}
123 123 min={0}
... ... @@ -131,7 +131,7 @@ export default function CollectionFollowSetting() {
131 131 <span>低于{`"判断标准"`},暂停当天资格;</span>
132 132 </Form.Item>
133 133 </Form.Item>
134   - <Form.Item label="网销门店是否参与区域线索站岗分配" name="onlineSaleShopAssignClue" labelAlign="right">
  134 + <Form.Item labelCol={{offset: 0}} label="网销门店是否参与区域线索站岗分配" name="onlineSaleShopAssignClue" labelAlign="right">
135 135 <Switch
136 136 disabled={!edit}
137 137 checked={checked}
... ...