Commit 9ea93921 by guanzhenshan

完善资产负债表

parent 12f20539
......@@ -1502,11 +1502,14 @@
//如果是月或者周,不显示文本框
if (type == 2 || type == 3) {
$('#' + key).hide();
$('#' + key).parent().addClass(key);
$('#' + key+'_1').show().html(obj[key]);
$('#' + key).parent();
$('#' + key).addClass(key);
$('#' + key + '_1').show();
$('#' + key + '_1').html(obj[key]);
}
else {
$('#' + key).show().val(obj[key]);
$('#' + key).val(obj[key]);
$('#' + key).show();
$('#' + key + '_1').hide();
$('#' + key).parent().removeClass(key);
}
......
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 to comment