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
7ad1d1a8
Commit
7ad1d1a8
authored
Apr 17, 2019
by
agping
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
6ccd48ae
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
footer_tpl.html
application/index/view/global/footer_tpl.html
+1
-1
RemarkFollowIndex.js
public/resource/js/RemarkFollowIndex.js
+1
-1
public.js
public/resource/js/public.js
+2
-1
No files found.
application/index/view/global/footer_tpl.html
View file @
7ad1d1a8
<script
src=
'/resource/lib/js/require.min.js'
data-main=
'/resource/js/main?version=20190688628
0
'
charset=
'utf-8'
></script>
<script
src=
'/resource/lib/js/require.min.js'
data-main=
'/resource/js/main?version=20190688628
6
'
charset=
'utf-8'
></script>
public/resource/js/RemarkFollowIndex.js
View file @
7ad1d1a8
...
...
@@ -389,7 +389,7 @@ define(['doT', 'text!temp/remark_follow_template_tpl.html', 'css!style/home.css'
//客户列表操作
$
(
document
).
delegate
(
".genj_ure"
,
"click"
,
function
()
{
//点击操作跟进详情
var
_$this
=
$
(
this
);
$
(
'#modal-record iframe'
).
attr
(
'src'
,
'/index/userModalList?data='
+
$
.
trim
(
_$this
.
next
().
html
())
+
'&idindex='
+
_$this
.
attr
(
'data-index'
)
+
'&id='
+
_$this
.
attr
(
'data-id'
));
$
(
'#modal-record iframe'
).
attr
(
'src'
,
'/index/userModalList?data='
+
$
.
trim
(
_$this
.
next
().
html
()
.
replace
(
/
[
&
\|\\\*
^%$#@
\-]
/g
,
""
)
)
+
'&idindex='
+
_$this
.
attr
(
'data-index'
)
+
'&id='
+
_$this
.
attr
(
'data-id'
));
});
//查看弹出框里的tab点击事件,客户动态 带看动态
...
...
public/resource/js/public.js
View file @
7ad1d1a8
...
...
@@ -165,7 +165,8 @@ if(~ServerHost.indexOf('api.tonglianjituan.com')){
};
function
getUrlParam
(
name
)
{
var
reg
=
new
RegExp
(
"(^|&)"
+
name
+
"=([^&]*)(&|$)"
);
var
r
=
decodeURI
(
window
.
location
.
search
).
substr
(
1
).
match
(
reg
);
// var r = decodeURI(window.location.search).substr(1).match(reg);
var
r
=
decodeURI
((
window
.
location
.
search
).
replace
(
/%/g
,
'%25'
)).
substr
(
1
).
match
(
reg
);
if
(
r
!=
null
)
return
unescape
(
r
[
2
]);
return
null
;
}
...
...
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