define(['jquery', 'toastr', 'form', 'template'], function ($, toastr, Form, Template) { var Controller = { mounted: function () { var that = this; that._render(); that._bind(); }, _render: function () { //v2.1.3 适配fa.1.3.4增加手机号码调整 // window.csmadmincfg.data.mobile = undefined; // var mobile = window.csmadmincfg.data==null?'':window.csmadmincfg.data.mobile; // mobile = mobile?mobile:''; // $("#email").parent().parent().after('\ //
\ // \ //
\ // \ //
\ //
\ // '); if(window.csmadmincfg.data.canadmindepratmng=='Y'){ //如果是部门管理,则去掉角色授权字段 //v1.2.1 修复了在fa1.2.0.20210401版本下,出现父组织越权的问题 //$(".form-group").first().remove(); $(".form-group").first().css("display","hidden"); //\ $(".form-group").first().before('\
\ \
\ \
\
\ '); $("#csmadmindepartname").val(window.csmadmincfg.data.departnames); } }, _bind: function () { } }; return Controller; });