|
@@ -129,31 +129,53 @@ Register.enterpriseUserRegister = function () {
|
|
|
live: 'enabled',
|
|
|
message: '该字段不能为空'
|
|
|
});
|
|
|
- if (special == "qiye") {
|
|
|
- $("#tab-3 .form-control").removeAttr("disabled");
|
|
|
- $("#tab-4 .form-control").attr("disabled", "disabled");
|
|
|
- $('#ep_form').bootstrapValidator("addField", "idCard", {validators: {notEmpty: {message: '统一社会信用代码不能为空'}}});
|
|
|
- $('#ep_form').bootstrapValidator("addField", "legal", {validators: {notEmpty: {message: '法人代表不能为空'}, regexp: {regexp: /^[\u4e00-\u9fa5]{1,50}$/, message: "法人代表只允许中文"}}});
|
|
|
- $('#ep_form').bootstrapValidator("addField", "bankCard", {validators: {notEmpty: {message: '开户银行账号不能为空'}}});
|
|
|
- $('#ep_form').bootstrapValidator("addField", "bankNetwork", {validators: {notEmpty: {message: '开户银行网点不能为空'},
|
|
|
- regexp: {
|
|
|
- regexp: /^[\u4e00-\u9fa5]*银行[\u4e00-\u9fa5]*$/,
|
|
|
- message: "开户银行网点格式不正确"
|
|
|
- }}});
|
|
|
- $('#ep_form').bootstrapValidator("addField", "bank", {validators: {notEmpty: {message: '开户银行不能为空'}, regexp: {
|
|
|
- regexp: /^[\u4e00-\u9fa5]*$/,
|
|
|
- message: "开户银行必须为中文"
|
|
|
- }}});
|
|
|
- var prefix = '企业';
|
|
|
- } else {
|
|
|
- $("#tab-4 .form-control").removeAttr("disabled");
|
|
|
- $("#tab-3 .form-control").attr("disabled", "disabled");
|
|
|
- $('#ep_form').bootstrapValidator("removeField", "idCard");
|
|
|
- $('#ep_form').bootstrapValidator("removeField", "legal");
|
|
|
- $('#ep_form').bootstrapValidator("removeField", "bankCard");
|
|
|
- $('#ep_form').bootstrapValidator("removeField", "bankNetwork");
|
|
|
- $('#ep_form').bootstrapValidator("removeField", "bank");
|
|
|
- var prefix = '单位';
|
|
|
+ switch (special) {
|
|
|
+ case 'qiye':
|
|
|
+ $("#tab-3 .form-control").removeAttr("disabled");
|
|
|
+ $("#tab-4 .form-control").attr("disabled", "disabled");
|
|
|
+ $("#tab-5 .form-control").attr("disabled", "disabled");
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "idCard", {validators: {notEmpty: {message: '统一社会信用代码不能为空'}}});
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "legal", {validators: {notEmpty: {message: '法人代表不能为空'}, regexp: {regexp: /^[\u4e00-\u9fa5]{1,50}$/, message: "法人代表只允许中文"}}});
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "bankCard", {validators: {notEmpty: {message: '开户银行账号不能为空'}}});
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "bankNetwork", {validators: {notEmpty: {message: '开户银行网点不能为空'},
|
|
|
+ regexp: {
|
|
|
+ regexp: /^[\u4e00-\u9fa5]*银行[\u4e00-\u9fa5]*$/,
|
|
|
+ message: "开户银行网点格式不正确"
|
|
|
+ }}});
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "bank", {validators: {notEmpty: {message: '开户银行不能为空'}, regexp: {
|
|
|
+ regexp: /^[\u4e00-\u9fa5]*$/,
|
|
|
+ message: "开户银行必须为中文"
|
|
|
+ }}});
|
|
|
+ var prefix = '企业';
|
|
|
+ break;
|
|
|
+ case 'minfei':
|
|
|
+ $("#tab-5 .form-control").removeAttr("disabled");
|
|
|
+ $("#tab-4 .form-control").attr("disabled", "disabled");
|
|
|
+ $("#tab-3 .form-control").attr("disabled", "disabled");
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "idCard", {validators: {notEmpty: {message: '统一社会信用代码不能为空'}}});
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "legal", {validators: {notEmpty: {message: '法人代表不能为空'}, regexp: {regexp: /^[\u4e00-\u9fa5]{1,50}$/, message: "法人代表只允许中文"}}});
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "bankCard", {validators: {notEmpty: {message: '开户银行账号不能为空'}}});
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "bankNetwork", {validators: {notEmpty: {message: '开户银行网点不能为空'},
|
|
|
+ regexp: {
|
|
|
+ regexp: /^[\u4e00-\u9fa5]*银行[\u4e00-\u9fa5]*$/,
|
|
|
+ message: "开户银行网点格式不正确"
|
|
|
+ }}});
|
|
|
+ $('#ep_form').bootstrapValidator("addField", "bank", {validators: {notEmpty: {message: '开户银行不能为空'}, regexp: {
|
|
|
+ regexp: /^[\u4e00-\u9fa5]*$/,
|
|
|
+ message: "开户银行必须为中文"
|
|
|
+ }}});
|
|
|
+ var prefix = '企业';
|
|
|
+ break;
|
|
|
+ case 'shiye':
|
|
|
+ $("#tab-4 .form-control").removeAttr("disabled");
|
|
|
+ $("#tab-3 .form-control").attr("disabled", "disabled");
|
|
|
+ $('#ep_form').bootstrapValidator("removeField", "idCard");
|
|
|
+ $('#ep_form').bootstrapValidator("removeField", "legal");
|
|
|
+ $('#ep_form').bootstrapValidator("removeField", "bankCard");
|
|
|
+ $('#ep_form').bootstrapValidator("removeField", "bankNetwork");
|
|
|
+ $('#ep_form').bootstrapValidator("removeField", "bank");
|
|
|
+ var prefix = '单位';
|
|
|
+ break;
|
|
|
}
|
|
|
|
|
|
|
|
@@ -165,24 +187,44 @@ Register.enterpriseUserRegister = function () {
|
|
|
|
|
|
isDis = $("#type").prop("disabled");
|
|
|
var source = $("#source").val();
|
|
|
- if (special == "qiye") {
|
|
|
- var username = $("#username").val();
|
|
|
- var password = $("#password").val();
|
|
|
- var rePassword = $("#re_password").val();
|
|
|
- var name = $("#name").val();
|
|
|
- var idCard = $("#idCard").val();
|
|
|
- var legal = $("#legal").val();
|
|
|
- var street = $("#street").val();
|
|
|
- var address = $("#address").val();
|
|
|
- var ephone = $("#ephone").val();
|
|
|
- } else {
|
|
|
- var username = $("#sy_username").val();
|
|
|
- var password = $("#sy_password").val();
|
|
|
- var rePassword = $("#sy_re_password").val();
|
|
|
- var name = $("#sy_name").val();
|
|
|
- var street = $("#sy_street").val();
|
|
|
- var address = $("#sy_address").val();
|
|
|
- var ephone = $("#sy_ephone").val();
|
|
|
+ switch (special) {
|
|
|
+ case 'qiye':
|
|
|
+ var username = $("#username").val();
|
|
|
+ var password = $("#password").val();
|
|
|
+ var rePassword = $("#re_password").val();
|
|
|
+ var name = $("#name").val();
|
|
|
+ var idCard = $("#idCard").val();
|
|
|
+ var legal = $("#legal").val();
|
|
|
+ var street = $("#street").val();
|
|
|
+ var address = $("#address").val();
|
|
|
+ var ephone = $("#ephone").val();
|
|
|
+ var bankCard = $("#bankCard").val();
|
|
|
+ var bank = $("#bank").val();
|
|
|
+ var bankNetwork = $("#bankNetwork").val();
|
|
|
+ break;
|
|
|
+ case 'minfei':
|
|
|
+ var username = $("#mf_username").val();
|
|
|
+ var password = $("#mf_password").val();
|
|
|
+ var rePassword = $("#mf_re_password").val();
|
|
|
+ var name = $("#mf_name").val();
|
|
|
+ var idCard = $("#mf_idCard").val();
|
|
|
+ var legal = $("#mf_legal").val();
|
|
|
+ var street = $("#mf_street").val();
|
|
|
+ var address = $("#mf_address").val();
|
|
|
+ var ephone = $("#mf_ephone").val();
|
|
|
+ var bankCard = $("#mf_bankCard").val();
|
|
|
+ var bank = $("#mf_bank").val();
|
|
|
+ var bankNetwork = $("#mf_bankNetwork").val();
|
|
|
+ break;
|
|
|
+ case 'shiye':
|
|
|
+ var username = $("#sy_username").val();
|
|
|
+ var password = $("#sy_password").val();
|
|
|
+ var rePassword = $("#sy_re_password").val();
|
|
|
+ var name = $("#sy_name").val();
|
|
|
+ var street = $("#sy_street").val();
|
|
|
+ var address = $("#sy_address").val();
|
|
|
+ var ephone = $("#sy_ephone").val();
|
|
|
+ break;
|
|
|
}
|
|
|
|
|
|
var agentName = $("#agentName").val();
|
|
@@ -199,9 +241,7 @@ Register.enterpriseUserRegister = function () {
|
|
|
var enterpriseType = $("#enterpriseType").val();
|
|
|
var industryFieldNew = $("#industryFieldNew").val();
|
|
|
var industryFieldOld = $("#industryFieldOld").val();
|
|
|
- var bankCard = $("#bankCard").val();
|
|
|
- var bank = $("#bank").val();
|
|
|
- var bankNetwork = $("#bankNetwork").val();
|
|
|
+
|
|
|
if (username == null || username == '') {
|
|
|
Feng.info("请填写账号!");
|
|
|
return;
|
|
@@ -255,122 +295,166 @@ Register.enterpriseUserRegister = function () {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (special == "qiye") {
|
|
|
- if ((idCard == null || idCard == '')) {
|
|
|
- Feng.info("请填写统一社会信用代码!");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (idCard.length > 40) {
|
|
|
- Feng.info("统一社会信用代码最多40个字符!");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (legal == null || legal == '') {
|
|
|
- Feng.info("请填写法人代表!");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (!/^[\u4e00-\u9fa5]{1,50}$/.test(legal)) {
|
|
|
- Feng.info("法人代表只能输入中文 !");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (bankCard == null || bankCard == '') {
|
|
|
- Feng.info("请填写企业银行账号!");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (bank == null || bank == '') {
|
|
|
- Feng.info("请填写企业开户银行!");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (bankNetwork == null || bankNetwork == '') {
|
|
|
- Feng.info("请填写企业开户银行网点");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var x = document.getElementById("imgurl").value;
|
|
|
- if (x == "") {
|
|
|
- Feng.info("请上传营业执照照片!");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (!Feng.chkFileInvalid(document.getElementById("imgurl").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "营业执照只允许上传PDF或图片")) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var xx = document.getElementById("bankImg").value;
|
|
|
- if (xx == "") {
|
|
|
- Feng.info("请上传开户银行许可证!");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (!Feng.chkFileInvalid(document.getElementById("bankImg").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "开户银行许可证只允许上传PDF或图片")) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (type == null || type == '') {
|
|
|
- Feng.info("请选择申报类型!");
|
|
|
- return;
|
|
|
- }
|
|
|
+ switch (special) {
|
|
|
+ case 'qiye':
|
|
|
+ if ((idCard == null || idCard == '')) {
|
|
|
+ Feng.info("请填写统一社会信用代码!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (idCard.length > 40) {
|
|
|
+ Feng.info("统一社会信用代码最多40个字符!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (legal == null || legal == '') {
|
|
|
+ Feng.info("请填写法人代表!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!/^[\u4e00-\u9fa5]{1,50}$/.test(legal)) {
|
|
|
+ Feng.info("法人代表只能输入中文 !");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (bankCard == null || bankCard == '') {
|
|
|
+ Feng.info("请填写企业银行账号!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (bank == null || bank == '') {
|
|
|
+ Feng.info("请填写企业开户银行!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (bankNetwork == null || bankNetwork == '') {
|
|
|
+ Feng.info("请填写企业开户银行网点");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var x = document.getElementById("imgurl").value;
|
|
|
+ if (x == "") {
|
|
|
+ Feng.info("请上传营业执照照片!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!Feng.chkFileInvalid(document.getElementById("imgurl").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "营业执照只允许上传PDF或图片")) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var xx = document.getElementById("bankImg").value;
|
|
|
+ if (xx == "") {
|
|
|
+ Feng.info("请上传开户银行许可证!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!Feng.chkFileInvalid(document.getElementById("bankImg").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "开户银行许可证只允许上传PDF或图片")) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- if (type == 1) {
|
|
|
- if (agencyType == null || agencyType == '') {
|
|
|
- Feng.info("请选择机构类型");
|
|
|
+ if (type == null || type == '') {
|
|
|
+ Feng.info("请选择申报类型!");
|
|
|
return;
|
|
|
}
|
|
|
- switch (agencyType) {
|
|
|
- case "1":
|
|
|
- if (industryFieldNew == null || industryFieldNew == '') {
|
|
|
- Feng.info("请选择产业领域");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (industryFieldOld == null || industryFieldOld == '') {
|
|
|
- Feng.info("请选择行业领域");
|
|
|
- return;
|
|
|
- }
|
|
|
- var xxx = document.getElementById("domainImg").value;
|
|
|
- if (xxx == "") {
|
|
|
- Feng.info("请上传行业领域佐证材料!");
|
|
|
+ if (type == 1) {
|
|
|
+ if (agencyType == null || agencyType == '') {
|
|
|
+ Feng.info("请选择机构类型");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ switch (agencyType) {
|
|
|
+ case "1":
|
|
|
+ if (industryFieldNew == null || industryFieldNew == '') {
|
|
|
+ Feng.info("请选择产业领域");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (industryFieldOld == null || industryFieldOld == '') {
|
|
|
+ Feng.info("请选择行业领域");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var xxx = document.getElementById("domainImg").value;
|
|
|
+ if (xxx == "") {
|
|
|
+ Feng.info("请上传行业领域佐证材料!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!Feng.chkFileInvalid(document.getElementById("domainImg").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "行业领域佐证材料只允许上传PDF或图片")) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case "2":
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ if (enterpriseTag == null || enterpriseTag == '') {
|
|
|
+ Feng.info("请选择企业标签!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (enterpriseType == null || enterpriseType == '') {
|
|
|
+ Feng.info("请选择企业类型!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var checkType = ["guishang", "gaoxinjishu", "zhuanjingtexin"];
|
|
|
+ if (checkType.indexOf(enterpriseType) > -1) {
|
|
|
+ var typeImg = document.getElementById("typeImg").value;
|
|
|
+ if (typeImg == "") {
|
|
|
+ Feng.info("规上、高新技术、专精特新企业需要上传佐证材料!");
|
|
|
return;
|
|
|
}
|
|
|
- if (!Feng.chkFileInvalid(document.getElementById("domainImg").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "行业领域佐证材料只允许上传PDF或图片")) {
|
|
|
+ if (!Feng.chkFileInvalid(document.getElementById("typeImg").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "规上、高新技术、专精特新企业佐证材料只允许上传PDF或图片")) {
|
|
|
return;
|
|
|
}
|
|
|
- break;
|
|
|
- case "2":
|
|
|
- break;
|
|
|
+ }
|
|
|
}
|
|
|
- if (enterpriseTag == null || enterpriseTag == '') {
|
|
|
- Feng.info("请选择企业标签!");
|
|
|
+ break;
|
|
|
+ case 'minfei':
|
|
|
+ if ((idCard == null || idCard == '')) {
|
|
|
+ Feng.info("请填写统一社会信用代码!");
|
|
|
return;
|
|
|
}
|
|
|
- if (enterpriseType == null || enterpriseType == '') {
|
|
|
- Feng.info("请选择企业类型!");
|
|
|
+ if (idCard.length > 40) {
|
|
|
+ Feng.info("统一社会信用代码最多40个字符!");
|
|
|
return;
|
|
|
}
|
|
|
- var checkType = ["guishang", "gaoxinjishu", "zhuanjingtexin"];
|
|
|
- if (checkType.indexOf(enterpriseType) > -1) {
|
|
|
- var typeImg = document.getElementById("typeImg").value;
|
|
|
- if (typeImg == "") {
|
|
|
- Feng.info("规上、高新技术、专精特新企业需要上传佐证材料!");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (!Feng.chkFileInvalid(document.getElementById("typeImg").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "规上、高新技术、专精特新企业佐证材料只允许上传PDF或图片")) {
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (legal == null || legal == '') {
|
|
|
+ Feng.info("请填写法人代表!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!/^[\u4e00-\u9fa5]{1,50}$/.test(legal)) {
|
|
|
+ Feng.info("法人代表只能输入中文 !");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (bankCard == null || bankCard == '') {
|
|
|
+ Feng.info("请填写机构银行账号!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (bank == null || bank == '') {
|
|
|
+ Feng.info("请填写机构开户银行!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (bankNetwork == null || bankNetwork == '') {
|
|
|
+ Feng.info("请填写机构开户银行网点");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var x = document.getElementById("mf_imgurl").value;
|
|
|
+ if (x == "") {
|
|
|
+ Feng.info("请上传营业执照照片!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!Feng.chkFileInvalid(document.getElementById("mf_imgurl").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "营业执照只允许上传PDF或图片")) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var xx = document.getElementById("mf_bankImg").value;
|
|
|
+ if (xx == "") {
|
|
|
+ Feng.info("请上传开户银行许可证!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!Feng.chkFileInvalid(document.getElementById("mf_bankImg").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "开户银行许可证只允许上传PDF或图片")) {
|
|
|
+ return;
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- } else {
|
|
|
- var x = document.getElementById("sy_imgurl").value;
|
|
|
- if (x == "") {
|
|
|
- Feng.info("请上传法人证或批文!");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (!Feng.chkFileInvalid(document.getElementById("sy_imgurl").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "法人证或批文只允许上传PDF或图片")) {
|
|
|
- return;
|
|
|
- }
|
|
|
+ break;
|
|
|
+ case 'shiye':
|
|
|
+ var x = document.getElementById("sy_imgurl").value;
|
|
|
+ if (x == "") {
|
|
|
+ Feng.info("请上传法人证或批文!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!Feng.chkFileInvalid(document.getElementById("sy_imgurl").files[0], 5, 10, ["image/jpeg", "image/gif", "image/png", "image/jpg", "application/pdf"], "法人证或批文只允许上传PDF或图片")) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ break;
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
if (agentName == null || agentName == '') {
|
|
|
Feng.info("请填写人才联络员!");
|
|
|
return;
|
|
@@ -688,12 +772,15 @@ $(function () {
|
|
|
var arr = [
|
|
|
{"name": "street", "code": "street"},
|
|
|
{"name": "enterpriseTag", "code": "enterprise_tag"},
|
|
|
+ {"name": "organizationTag", "code": "organization_tag"},
|
|
|
+ {"name": "institutionTag", "code": "institution_tag"},
|
|
|
{"name": "industryFieldNew", "code": "industry_field"},
|
|
|
{"name": "enterpriseType", "code": "enterprise_type"},
|
|
|
{"name": "sy_street", "code": "street"},
|
|
|
+ {"name": "mf_street", "code": "street"},
|
|
|
{"name": "agencyType", "code": "agency_type"}];
|
|
|
Feng.findChildDictBatch(JSON.stringify(arr));
|
|
|
- $("#imgurl,#sy_imgurl,#bankImg,#sy_bankImg,#beian,#domainImg,#typeImg").change(function (e) {
|
|
|
+ $("#imgurl,#sy_imgurl,#mf_imgurl,#bankImg,#mf_bankImg,#sy_bankImg,#beian,#domainImg,#typeImg").change(function (e) {
|
|
|
var that = this;
|
|
|
if (!Feng.chkFileInvalid(that.files[0], 5, 10)) {
|
|
|
return;
|