You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Demo1.js 662 B

12345678910111213141516171819202122
  1. var bootstrap = function ($, learun) {
  2. "use strict";
  3. var page = {
  4. init: function () {
  5. page.bind();
  6. },
  7. bind: function () {
  8. // 打印
  9. $('.node').on('click', function () {
  10. var stockArea = $(this).attr("data-value");
  11. learun.layerForm({
  12. id: 'form',
  13. title:'A'+ stockArea+'仓位库存信息',
  14. url: top.$.rootUrl + '/LR_CodeDemo/StockDemo/Stock?stockArea=' + stockArea,
  15. width: 600,
  16. height: 400
  17. });
  18. });
  19. }
  20. };
  21. page.init();
  22. }