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
887fec4635b4503ba198860e899876982257463c
1 parent
e2f54e7a
2.商品库存信息—库存详情,希望优化可以跳出二级页面。新建标签页
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
web/src/main/webapp/html/commodityManage/commodityPoolManage/commodityPoolManage.html
web/src/main/webapp/html/goods/storageLineShops/storageLineShopsList.html
web/src/main/webapp/html/merchantManage/margin/marginList.html
web/src/main/webapp/html/commodityManage/commodityPoolManage/commodityPoolManage.html
View file @
887fec4
...
...
@@ -279,7 +279,8 @@
function
productPoolDetails
(
poolId
)
{
//window.self.paramObject.poolId = poolId;
//console.log(window.self.paramObject.poolId);
this
.
location
.
href
=
contextPath
+
"/html/commodityManage/commodityPoolManage/commodityPoolDetail.html?poolId="
+
poolId
+
'&time_version='
+
new
Date
().
getTime
();
window
.
open
(
contextPath
+
"/html/commodityManage/commodityPoolManage/commodityPoolDetail.html?poolId="
+
poolId
+
'&time_version='
+
new
Date
().
getTime
());
//this.location.href = contextPath + "/html/commodityManage/commodityPoolManage/commodityPoolDetail.html?poolId=" + poolId + '&time_version=' + new Date().getTime();
}
...
...
web/src/main/webapp/html/goods/storageLineShops/storageLineShopsList.html
View file @
887fec4
...
...
@@ -331,11 +331,13 @@
// 跳转编辑页
function
detailStorage
(
id
,
midSortId
)
{
this
.
location
.
href
=
contextPath
var
hrefArr
=
contextPath
+
"/html/goods/storageLineShops/storageLineShopsDetail.html?productId="
+
id
+
"&midSortId="
+
midSortId
+
"&time_version="
+
new
Date
().
getTime
()
+
"&sellerUid="
+
paramSellerUid
;
window
.
open
(
hrefArr
);
}
}())
...
...
web/src/main/webapp/html/merchantManage/margin/marginList.html
View file @
887fec4
...
...
@@ -101,7 +101,8 @@
onClick
:
function
()
{
var
id
=
$
(
this
).
attr
(
"dataId"
);
var
userName
=
$
(
this
).
attr
(
"dataName"
);
window
.
location
.
href
=
contextPath
+
"/html/merchantManage/margin/marginDetailList.html?"
+
id
+
"&"
+
userName
+
"&"
+
new
Date
().
getTime
();
window
.
open
(
contextPath
+
"/html/merchantManage/margin/marginDetailList.html?"
+
id
+
"&"
+
userName
+
"&"
+
new
Date
().
getTime
());
//window.location.href = contextPath + "/html/merchantManage/margin/marginDetailList.html?" + id+"&"+userName+"&" + new Date().getTime();
}
});
}
...
...
Please
register
or
login
to post a comment