Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
ufo-platform
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
mali
5 years ago
Commit
3d91401309d3c697e88c24514b5647223dc1bbd2
1 parent
f326bce7
2.商品库存信息—库存详情,希望优化可以跳出二级页面。新建标签页
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
web/src/main/webapp/html/goods/storage/storageList.html
web/src/main/webapp/html/goods/storage/storageList.html
View file @
3d91401
...
...
@@ -316,7 +316,8 @@
var
str
=
''
;
if
(
typeof
(
rowData
.
bidStorePrice
)
!=
'undefined'
&&
typeof
(
rowData
.
bidStorePrice
.
bidTotal
)
!=
'undefined'
&&
rowData
.
bidStorePrice
.
bidTotal
>
0
)
{
str
+=
"<a role='cancel' href="
+
contextPath
+
"/html/goods/storage/bidDetail.html?productId="
+
rowData
.
id
+
"&midSortId="
+
rowData
.
midSortId
+
"&time_version="
+
new
Date
().
getTime
()
+
">求购详情</a>"
;
//str += "<a role='cancel' href=" + contextPath + "/html/goods/storage/bidDetail.html?productId=" + rowData.id + "&midSortId=" + rowData.midSortId + "&time_version=" + new Date().getTime() + ">求购详情</a>";
str
+=
"<a role='edit' dataId='"
+
rowData
.
id
+
"' sortId = '"
+
rowData
.
midSortId
+
"'>求购详情</a>"
;
}
str
+=
"<a role='edit' dataId='"
+
rowData
.
id
+
"' sortId = '"
+
rowData
.
midSortId
+
"'>库存详情</a>"
;
return
str
;
...
...
@@ -343,7 +344,7 @@
onClick
:
function
()
{
var
id
=
$
(
this
).
attr
(
"dataId"
);
var
midSortId
=
$
(
this
).
attr
(
"sortId"
);
detail
Storage
(
id
,
midSortId
);
detailBid
Storage
(
id
,
midSortId
);
}
});
}
...
...
@@ -526,6 +527,11 @@
window
.
open
(
contextPath
+
"/html/goods/storage/storageDetail.html?productId="
+
id
+
"&midSortId="
+
midSortId
+
"&time_version="
+
new
Date
().
getTime
());
}
function
detailBidStorage
(
id
,
midSortId
)
{
//this.location.href = contextPath + "/html/goods/storage/storageDetail.html?productId=" + id + "&midSortId=" + midSortId + "&time_version=" + new Date().getTime();
window
.
open
(
contextPath
+
"/html/goods/storage/bidDetail.html?productId="
+
id
+
"&midSortId="
+
midSortId
+
"&time_version="
+
new
Date
().
getTime
());
}
// 上传EXCEL
function
uploadExcel
()
{
...
...
Please
register
or
login
to post a comment