From a1c77d7b11186740f495154a6f9e2db0f836d309 Mon Sep 17 00:00:00 2001 From: zzl <961867786@qq.com> Date: Sun, 27 Apr 2025 10:06:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=90=8C=E5=85=AC=E5=BC=80=20?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E5=AF=B9=E5=BA=94=E5=85=B3=E7=B3=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- infoport/static/js/project/discussionsDetail_02.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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);