Browse Source

合同公开 字段对应关系

rongxin_dev
张泽亮 1 month ago
parent
commit
a1c77d7b11
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      infoport/static/js/project/discussionsDetail_02.js

+ 3
- 1
infoport/static/js/project/discussionsDetail_02.js View File

@@ -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);


Loading…
Cancel
Save