diff --git a/ruoyi-admin/src/main/resources/templates/manage/delivery/delivery.html b/ruoyi-admin/src/main/resources/templates/manage/delivery/delivery.html
index 7052ba81..0305f3e3 100644
--- a/ruoyi-admin/src/main/resources/templates/manage/delivery/delivery.html
+++ b/ruoyi-admin/src/main/resources/templates/manage/delivery/delivery.html
@@ -84,7 +84,6 @@
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
- importUrl: prefix + "/import",
modalName: "发货记录",
columns: [{
checkbox: true
@@ -125,7 +124,7 @@
align: 'center',
formatter: function(value, row, index) {
var actions = [];
- actions.push('发货清单 ');
+ actions.push('发货清单 ');
actions.push('编辑 ');
actions.push('删除');
return actions.join('');
@@ -134,6 +133,9 @@
};
$.table.init(options);
});
+ function openList(id){
+ $.modal.open('发货清单', prefix + `/import/${id}`)
+ }