diff --git a/infoport/static/js/project/discussionsDetail_02.js b/infoport/static/js/project/discussionsDetail_02.js index 0286952..6c60c5e 100644 --- a/infoport/static/js/project/discussionsDetail_02.js +++ b/infoport/static/js/project/discussionsDetail_02.js @@ -18,6 +18,7 @@ define(['jquery', "template", "Tools"], function ($, template, Tools) { //新闻详情 tools.doGet(contractionList, { code:getQueryVariable('id'), + translate_dict: '1', bookId: JSON.parse(tools.getCookie('user')).bookId, deptId: JSON.parse(tools.getCookie('user')).deptId }, module.newsDetail , true); @@ -27,6 +28,7 @@ define(['jquery', "template", "Tools"], function ($, template, Tools) { pageSize:10, orderByColumn: 'buildingTime', isAsc: 'desc', + translate_dict: '1', bookId: JSON.parse(tools.getCookie('user')).bookId, deptId: JSON.parse(tools.getCookie('user')).deptId }, module.newsList , true); @@ -59,7 +61,7 @@ define(['jquery', "template", "Tools"], function ($, template, Tools) { var content = data.rows[0]; $('#name').html(content.name); $('#code').html('合同编码:' + content.code); - $('#biddingType').html('合同类型:'+content.biddingType); + $('#biddingType').html('合同类型:'+content.assetType); $('#secondParty').html('合同乙方:'+content.secondParty); $('#settleType').html('结款方式:'+content.settleType); $('#totalAmount').html('合同金额:'+content.totalAmount);