提交 6c67d5d2 编写于 作者: doc_wei's avatar doc_wei

feat: ERP商品条形码复制修改

上级 cf40eb92
......@@ -56,7 +56,7 @@ layui.config({
let params = {
materialId: $("#materialId").val(),
normsId: $("#normsId").val(),
inDepot: dataShowType.getData('inDepot'),
inDepot: isNull(dataShowType.getData('inDepot')) ? '' : dataShowType.getData('inDepot'),
number: $("#number").val(),
limit: $("#number").val(),
depotId: $("#depotId").val(),
......
......@@ -63,7 +63,7 @@ layui.config({
AjaxPostUtil.request({url: reqBasePath + "querySysRoleById", params: {id: id}, type: 'json', method: "GET", callback: function (json) {
$("#name").text(json.bean.name);
$("#remark").text(json.bean.remark);
checkeRows = json.bean.appMenuIds;
checkeRows = isNull(json.bean.appMenuIds) ? [] : json.bean.appMenuIds;
tree = fsTree.render({
id: "treeDemo",
......
......@@ -45,7 +45,7 @@ layui.config({
AjaxPostUtil.request({url: reqBasePath + "querySysRoleById", params: {id: id}, type: 'json', method: "GET", callback: function (json) {
$("#name").text(json.bean.name);
$("#remark").text(json.bean.remark);
checkeRows = json.bean.menuIds;
checkeRows = isNull(json.bean.menuIds) ? [] : json.bean.menuIds;
tree = fsTree.render({
id: "treeDemo",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册