Commit b7a2d47c by 杨树贤

优化特殊权限的天眼查逻辑

parent 01414079
...@@ -48,8 +48,6 @@ ...@@ -48,8 +48,6 @@
dataType: 'json', dataType: 'json',
timeout: 20000, timeout: 20000,
success: function (res) { success: function (res) {
console.log(supplier_name);
console.log(tax_number);
if (supplier_name !== '' || tax_number !== '') { if (supplier_name !== '' || tax_number !== '') {
if (res.err_code !== 0) { if (res.err_code !== 0) {
//当code=-2的时候,是公司信息校验有问题,但是如果有跳过检查权限,那么就什么都不处理 //当code=-2的时候,是公司信息校验有问题,但是如果有跳过检查权限,那么就什么都不处理
...@@ -67,8 +65,11 @@ ...@@ -67,8 +65,11 @@
"<p style='color: red;'>" + res.err_msg + "</p></div>"); "<p style='color: red;'>" + res.err_msg + "</p></div>");
$('#supplier_name').prop('disabled', false); $('#supplier_name').prop('disabled', false);
} }
if (!ignoreCompanyCheck) {
//监听是不是供应商名称变化 //监听是不是供应商名称变化
resetCompanyInfo(self.attr('id') === 'supplier_name'); resetCompanyInfo(self.attr('id') === 'supplier_name');
}
} else if (res.err_code === 0) { } else if (res.err_code === 0) {
//如果供应商没有问题,就要去自动填补部分资料 //如果供应商没有问题,就要去自动填补部分资料
let companyInfo = res.data; let companyInfo = res.data;
...@@ -78,12 +79,15 @@ ...@@ -78,12 +79,15 @@
$('#supplier_address').val(companyInfo.supplier_address); $('#supplier_address').val(companyInfo.supplier_address);
$('#registered_capital').val(companyInfo.registered_capital); $('#registered_capital').val(companyInfo.registered_capital);
layer.msg('校验公司信息通过,自动补全相关数据', {icon: 6}) layer.msg('校验公司信息通过,自动补全相关数据', {icon: 6})
if (!ignoreCompanyCheck) {
if (self.attr('id') === 'supplier_name') { if (self.attr('id') === 'supplier_name') {
$('#tax_number').attr('disabled', true); $('#tax_number').attr('disabled', true);
} else { } else {
$('#supplier_name').attr('disabled', true); $('#supplier_name').attr('disabled', true);
} }
} }
}
} }
...@@ -307,7 +311,7 @@ ...@@ -307,7 +311,7 @@
layer.msg('验证成功,校验公司信息通过,自动补全相关数据', {icon: 6}) layer.msg('验证成功,校验公司信息通过,自动补全相关数据', {icon: 6})
} else { } else {
if (ignoreCompanyCheck) { if (ignoreCompanyCheck) {
layer.msg('公司未进行工商注册', {icon: 5})
} else { } else {
$('#supplier_name').after("<div id='supplier_check_tip' style='margin-top: 5px'>" + $('#supplier_name').after("<div id='supplier_check_tip' style='margin-top: 5px'>" +
"<p style='color: red;'>公司未进行工商注册,请修改后重新提交</p></div>"); "<p style='color: red;'>公司未进行工商注册,请修改后重新提交</p></div>");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment