Browse Source

产权交易公告问题修改

RongCheng
庞东旭 1 year ago
parent
commit
9f1b81d9dc
2 changed files with 11 additions and 2 deletions
  1. +1
    -1
      static/js/project/announcementList/inviteTendersDetail.js
  2. +10
    -1
      static/js/project/announcementList/winTheBiddingDetail.js

+ 1
- 1
static/js/project/announcementList/inviteTendersDetail.js View File

@@ -105,7 +105,7 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio
}
tools.doGet(attachmentQuery, query, module.attachmentQuery,true);
//竞价方式字典
tools.doGet(Dictionaries+'/bidding_type', {}, module.biddingTypeDictionaries,true);
tools.doGet(Dictionaries+'/tenderbid_type', {}, module.biddingTypeDictionaries,true);
}
}



+ 10
- 1
static/js/project/announcementList/winTheBiddingDetail.js View File

@@ -105,8 +105,17 @@ define(['jquery', "template", "Tools", "announApi", "paging", 'swiper'], functio
tableId:content.id
}
tools.doGet(attachmentQuery, query, module.attachmentQuery,true);

tools.doGet(tenderDetail+'/'+content.tenderId, {}, module.tenderQuery,true);
}
}

module.tenderQuery = function (data) {
if (data.code == 200) {
var content = data.data;
module.data.announcementInformationDetail.biddingType = content.biddingType;
//竞价方式字典
tools.doGet(Dictionaries+'/bidding_type', {}, module.biddingTypeDictionaries,true);
tools.doGet(Dictionaries+'/tenderbid_type', {}, module.biddingTypeDictionaries,true);
}
}



Loading…
Cancel
Save