Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
da5a0eb2
Commit
da5a0eb2
authored
Feb 15, 2019
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
7cf26c6e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
4 deletions
+21
-4
user_genjing_modal.html
application/index/view/member/user_genjing_modal.html
+12
-2
getCollection.js
public/resource/js/getCollection.js
+1
-1
user_genjing_modal.js
public/resource/js/user_genjing_modal.js
+8
-1
No files found.
application/index/view/member/user_genjing_modal.html
View file @
da5a0eb2
...
...
@@ -462,6 +462,12 @@
background-image
:
linear-gradient
(
-146deg
,
#FFDC0F
0%
,
#FF750E
91%
);
border-radius
:
3px
;
}
.btn-info-rent
{
}
.btn-default-rent
{
}
</style>
<div>
...
...
@@ -658,8 +664,12 @@
<textarea
class=
"form-control"
rows=
"2"
id=
"genj_text"
placeholder=
"请输入客户跟进信息(必填)"
></textarea>
</div>
<div
class=
"col-sm-12"
>
<label
class=
"control-label"
>
已租
</label><input
type=
"radio"
name=
"user_status"
value=
"1"
>
<label
class=
"control-label"
>
求租
</label><input
type=
"radio"
name=
"user_status"
value=
"0"
>
<!--<label class="control-label">已租</label><input type="radio" name="user_status" value="1">
<label class="control-label">求租</label><input type="radio" name="user_status" value="0">-->
<span
class=
"modal-rent-genjing-con"
>
<span
data-value=
'1'
>
已租
</span>
<span
data-value=
'0'
>
求租
</span>
</span>
</div>
<!--跟进保存-->
...
...
public/resource/js/getCollection.js
View file @
da5a0eb2
...
...
@@ -111,7 +111,7 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
formData
.
append
(
'image'
,
_this
[
0
].
files
[
0
]);
$
.
ajax
({
type
:
'post'
,
url
:
'/index/uploadImg'
,
url
:
ServerHostImageLiu
+
'/index/uploadImg'
,
data
:
formData
,
dataType
:
'json'
,
contentType
:
false
,
...
...
public/resource/js/user_genjing_modal.js
View file @
da5a0eb2
...
...
@@ -637,7 +637,14 @@ define(['doT', 'css!style/home.css', 'ckfinder', 'ckfinderStart', 'bootstrapJs']
user
.
getGenjincon
()
//获取客户动态
}
});
//客户跟进列表 求租 已租
_doc
.
on
(
'click'
,
'.modal-rent-genjing-con>span'
,
function
(
e
){
e
.
preventDefault
();
e
.
stopPropagation
();
var
_this
=
$
(
this
);
_this
.
removeClass
(
'btn-default-rent'
).
addClass
(
'btn-info-rent'
).
siblings
().
removeClass
(
'btn-info-rent'
).
addClass
(
'btn-default-rent'
);
// user.detailTabIndexFollowRent = _this.index();
});
//拨打电话相关
//跟进模态框,列表标签的点击事件
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment