diff --git a/ruoyi-admin/src/main/resources/templates/busi/order/order.html b/ruoyi-admin/src/main/resources/templates/busi/order/order.html
index 5037a0103..14cba8c1c 100644
--- a/ruoyi-admin/src/main/resources/templates/busi/order/order.html
+++ b/ruoyi-admin/src/main/resources/templates/busi/order/order.html
@@ -130,6 +130,7 @@
var actions = [];
actions.push('编辑 ');
actions.push('删除');
+ actions.push('新增 ');
return actions.join('');
}
}]
@@ -155,6 +156,11 @@
$.modal.close(index);
$.table.search();
}
+
+ function addProduct(id,name){
+ var addUrl = ctx + "busi/productRequire/add"
+ $.modal.open( name + ",添加产品需求", addUrl);
+ }