Commit 6ff9b6fe by zhangleyuan

feat:UI样式优化

parent 1a754a5a
......@@ -290,7 +290,6 @@ class ChooseMembersModal extends React.Component {
onSearch={this.handleSearch}
onChange={this.handleChangeSearchKey}
className='search search-input'
enterButton={<span className="icon iconfont">&#xe832;</span>}
/>
<div className='container-left-body-table'>
......
.expired-course-list{
margin:8px 10px 16px;
margin:8px 10px 0px;
.course-item{
display:flex;
padding:16px 0;
......@@ -7,6 +7,7 @@
justify-content: space-between;
&:last-child{
border-bottom:none;
padding-bottom:0px;
}
.course-left{
display:flex;
......
......@@ -107,7 +107,12 @@ class SelectOperatorModal extends React.Component {
closeIcon={<span className="icon iconfont modal-close-icon">&#xe6ef;</span>}
>
<div className="search-container">
<Search placeholder="搜索运营师/手机号" style={{ width: 200 }} onChange={(e) => { this.handleChangNickname(e.target.value)}} onSearch={ () => { this.handleFetchDataList()}} />
<Search placeholder="搜索运营师/手机号"
enterButton={<span className="icon iconfont">&#xe832;</span>}
style={{ width: 200 }}
onChange={(e) => { this.handleChangNickname(e.target.value)}}
onSearch={ () => { this.handleFetchDataList()}}
/>
</div>
<div>
<Table
......@@ -115,6 +120,7 @@ class SelectOperatorModal extends React.Component {
dataSource={dataSource}
columns={this.parseColumns()}
pagination={false}
bordered
rowSelection={{
type: 'checkbox',
selectedRowKeys: _.pluck(selectOperatorList, 'id'),
......@@ -135,6 +141,7 @@ class SelectOperatorModal extends React.Component {
{dataSource.length >0 &&
<div className="box-footer">
<PageControl
size="small"
current={query.current - 1}
pageSize={size}
total={totalCount}
......
......@@ -78,7 +78,7 @@ class UserLearnDetailModal extends React.Component {
coverUrl:coverUrl || defaultCover
}
this.setState({
storeCustomerName,
storeCustomerName,
storeCustomerPhone,
planDataSource,
taskDataSource:taskCustomerVOList
......
......@@ -182,6 +182,7 @@
height: 49px;
display: flex;
position: relative;
align-items: center;
.store-name {
font-size: 14px;
color: #666;
......@@ -191,16 +192,13 @@
text-overflow: ellipsis;
overflow: hidden;
max-width: 230px;
margin-right: 32px;
margin-right: 16px;
}
.line {
width: 1px;
height: 16px;
background-color: #f4f4f4;
position: absolute;
left: 122px;
top: 50%;
transform: translateY(-50%);
margin-right:16px;
}
.link-to-store {
display: flex;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment