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