Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
施宇
/
icsales
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6dbd5f69
authored
Nov 21, 2019
by
施宇
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'sy_xbyh_191113'
parents
37f512a2
3d3521aa
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
7 deletions
Application/Home/View/RobOrder/index.html
Application/Home/View/Search/index.html
dist/js/roborder/index.js
dist/js/search/index.js
Application/Home/View/RobOrder/index.html
View file @
6dbd5f69
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
<script
type=
"text/html"
id=
"zqTpl"
>
<script
type=
"text/html"
id=
"zqTpl"
>
<
div
class
=
"my_xj_list clr "
>
<
div
class
=
"my_xj_list clr "
>
{{
#
layui
.
each
(
d
,
function
(
index
,
item
){
}}
{{
#
layui
.
each
(
d
,
function
(
index
,
item
){
}}
<
div
class
=
"my_xj_item fl boxsiz"
style
=
"cursor:pointer"
userid
=
"{{item.inquiry_items
_id}}"
>
<
div
class
=
"my_xj_item fl boxsiz"
style
=
"cursor:pointer"
inquiryid
=
"{{item.inquiry_items_id}}"
userid
=
"{{item.user
_id}}"
>
<
div
class
=
"item_top clr"
>
<
div
class
=
"item_top clr"
>
<
div
class
=
"fl num ellipsis"
>
{{
item
.
goods_name
}}
<
/div
>
<
div
class
=
"fl num ellipsis"
>
{{
item
.
goods_name
}}
<
/div
>
<
/div
>
<
/div
>
...
...
Application/Home/View/Search/index.html
View file @
6dbd5f69
...
@@ -125,7 +125,7 @@
...
@@ -125,7 +125,7 @@
<script
type=
"text/html"
id=
"xjhtml"
>
<script
type=
"text/html"
id=
"xjhtml"
>
<
div
class
=
"my_xj_list clr "
>
<
div
class
=
"my_xj_list clr "
>
{{
#
layui
.
each
(
d
,
function
(
index
,
item
){
}}
{{
#
layui
.
each
(
d
,
function
(
index
,
item
){
}}
<
div
class
=
"my_xj_item fl boxsiz xj_item"
style
=
"cursor:pointer"
userid
=
"{{item.inquiry_items
_id}}"
>
<
div
class
=
"my_xj_item fl boxsiz xj_item"
style
=
"cursor:pointer"
inquiryid
=
"{{item.inquiry_items_id}}"
userid
=
"{{item.user
_id}}"
>
<
div
class
=
"item_top clr"
>
<
div
class
=
"item_top clr"
>
<
div
class
=
"fl num ellipsis"
>
{{
item
.
goods_name
}}
<
/div
>
<
div
class
=
"fl num ellipsis"
>
{{
item
.
goods_name
}}
<
/div
>
<
/div
>
<
/div
>
...
...
dist/js/roborder/index.js
View file @
6dbd5f69
...
@@ -58,8 +58,15 @@ $(function () {
...
@@ -58,8 +58,15 @@ $(function () {
self
.
getData
(
index
,
1
)
self
.
getData
(
index
,
1
)
});
});
$
(
'.roborder_content'
).
on
(
'click'
,
'.my_xj_item'
,
function
(){
$
(
'.roborder_content'
).
on
(
'click'
,
'.my_xj_item'
,
function
(){
var
inquiryid
=
$
(
this
).
attr
(
'inquiryid'
);
var
userid
=
$
(
this
).
attr
(
'userid'
);
var
userid
=
$
(
this
).
attr
(
'userid'
);
window
.
location
.
href
=
"/quotedetail?id="
+
userid
var
cookieUserId
=
Util
.
getCookie
(
'user_id'
)
||
''
;
if
(
userid
==
cookieUserId
)
{
//自己查看自己的
window
.
location
.
href
=
"/inquirydetail?id="
+
inquiryid
}
else
{
window
.
location
.
href
=
"/quotedetail?id="
+
inquiryid
}
});
});
//编辑
//编辑
// $('.edit_div').click(function () {
// $('.edit_div').click(function () {
...
...
dist/js/search/index.js
View file @
6dbd5f69
...
@@ -129,20 +129,27 @@ $(function () {
...
@@ -129,20 +129,27 @@ $(function () {
}
}
});
});
$
(
'.goods_data_list'
).
on
(
'click'
,
'.xj_item'
,
function
()
{
$
(
'.goods_data_list'
).
on
(
'click'
,
'.xj_item'
,
function
()
{
var
inquiryid
=
$
(
this
).
attr
(
'inquiryid'
);
var
userid
=
$
(
this
).
attr
(
'userid'
);
var
userid
=
$
(
this
).
attr
(
'userid'
);
window
.
location
.
href
=
"/quotedetail?id="
+
userid
var
cookieUserId
=
Util
.
getCookie
(
'user_id'
)
||
''
;
if
(
userid
==
cookieUserId
)
{
//自己查看自己的
window
.
location
.
href
=
"/inquirydetail?id="
+
inquiryid
}
else
{
window
.
location
.
href
=
"/quotedetail?id="
+
inquiryid
}
});
});
$
(
'.goods_data_list'
).
on
(
'click'
,
'.sp_item'
,
function
()
{
$
(
'.goods_data_list'
).
on
(
'click'
,
'.sp_item'
,
function
()
{
var
goodid
=
$
(
this
).
attr
(
'goodid'
);
var
goodid
=
$
(
this
).
attr
(
'goodid'
);
var
eleuserid
=
$
(
this
).
attr
(
'userid'
);
var
eleuserid
=
$
(
this
).
attr
(
'userid'
);
var
userid
=
Util
.
getCookie
(
'user_id'
)
||
""
;
var
userid
=
Util
.
getCookie
(
'user_id'
)
||
""
;
var
type
;
var
type
;
if
(
userid
===
eleuserid
)
{
if
(
userid
===
eleuserid
)
{
type
=
1
type
=
1
}
else
{
}
else
{
type
=
2
type
=
2
}
}
window
.
location
.
href
=
"/gooddetail?type="
+
type
+
"&id="
+
goodid
window
.
location
.
href
=
"/gooddetail?type="
+
type
+
"&id="
+
goodid
});
});
$
(
'.goods_data_list'
).
on
(
'click'
,
'.lx_cus'
,
function
()
{
$
(
'.goods_data_list'
).
on
(
'click'
,
'.lx_cus'
,
function
()
{
Util
.
setCookie
(
'customer'
,
Util
.
getRequest
(
'key'
)
||
""
,
1
,
cookieHostname
)
Util
.
setCookie
(
'customer'
,
Util
.
getRequest
(
'key'
)
||
""
,
1
,
cookieHostname
)
...
...
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