personal-dialog-form.js 496 B

1234567891011121314151617
  1. (function() {
  2. var personalDialogForm = {
  3. // 修改密码
  4. selectIndustry: function(industryid, directionid) {
  5. top.layer.open({
  6. type: 2,
  7. title: '<h3 class="mt15 bgc-f9f9f9">请选择行业<h3>',
  8. shadeClose: false,
  9. closeBtn: true, //显示关闭按钮
  10. area: ['620px', '455px'],
  11. content: "../../mine/html/select-industry.html?industryid=" + industryid + "&directionid=" + directionid, //iframe的url
  12. });
  13. },
  14. }
  15. window.personalDialogForm = personalDialogForm
  16. })()