发货清单关闭bug修改

master
wangjiuyun 2025-05-22 17:02:38 +08:00
parent c8def41c4a
commit 44e9a360f3
3 changed files with 15 additions and 3 deletions

View File

@ -172,7 +172,7 @@
var options = {
title: "选择合同",
url: prefix + '/selectOrder',
skin: 'layui-layer-gray',
// skin: 'layui-layer-gray',
maxmin: false,
full: false,
index:1000,

View File

@ -145,7 +145,19 @@
$.table.init(options);
});
function openList(id){
$.modal.open('发货清单', prefix + `/import/${id}`)
var options = {
title: "发货清单",
url: prefix + `/import/${id}`,
// skin: 'layui-layer-gray',
maxmin: false,
full: false,
index:1000,
callBack: doClose
};
$.modal.openOptions(options)
}
function doClose(index){
$.modal.close(index);
}
</script>
</body>

View File

@ -174,7 +174,7 @@
var options = {
title: "选择合同",
url: prefix + '/selectOrder',
skin: 'layui-layer-gray',
// skin: 'layui-layer-gray',
maxmin: false,
full: false,
index:1000,